@font-face {
    font-family: 'Inter Variable';
    src: url('/fonts/InterVariable-Regular.woff2') format('woff2');
    
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Inter Variable', sans-serif;
}
.table-container { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }

:root {
    --primary: #016AD3;
    --primary-dark: #004a94;
    --accent: #ff7e5f;
    --text-main: #1d1d1f;
    --text-sub: #636366;
    --bg: #f5f5f7;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --radius: 16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg); color: var(--text-main); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; font-weight: 500; }
main ul { list-style-type: disc; padding-left: 20px; }
main ul li { margin-bottom: 8px; font-size: 1rem; line-height: 1.6; }

h1 { margin: 20px 0; font-size: clamp(1.6rem, 5vw, 2.4rem); line-height: 1.7; font-weight: 600; }
h2 { margin: 20px 0; font-size: clamp(1.3rem, 4vw, 1.8rem); line-height: 1.5; font-weight: 600; }
h3 { margin: 15px 0; font-size: clamp(1.1rem, 3vw, 1.4rem); line-height: 1.5; font-weight: 400; }
h4 { margin: 15px 0; font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.5; font-weight: 300; }

/* --- NAVIGATION --- */
nav { background: var(--white); height: 80px; display: flex; align-items: center; position: sticky; top: 0; z-index: 2000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 48px; width: auto; }

.nav-menu { display: flex; gap: 20px; }
.nav-item { position: relative; height: 80px; display: flex; align-items: center; }
.nav-link { font-weight: 600; font-size: 15px; cursor: pointer; color: var(--text-main); }
.nav-link:hover { color: var(--primary); }

.dropdown {
    position: absolute; top: 100%; left: calc(50% - 10px); transform: translateX(-50%); background: var(--white); width: 260px;
    box-shadow: var(--shadow); border-radius: 0 0 var(--radius) var(--radius);
    padding: 15px 0; opacity: 0; visibility: hidden; transition: 0.3s; border-top: 3px solid var(--primary);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; }
.dropdown a { display: block; padding: 10px 25px; font-size: 14px; font-weight: 500; }
.dropdown a:hover { background: #f0f7ff; color: var(--primary); }
.dropdown-title { padding: 5px 25px 10px; font-size: 11px; text-transform: uppercase; color: var(--primary); font-weight: 800; letter-spacing: 0.5px; }
.dropdown a.active { background-color: #e7f1ff; color: #0056b3; }
.nav-item.open .dropdown { display: block; }
.nav-item.open > .nav-link { color: #007bff; }

/* --- HERO --- */
.hero { 
    position: relative;
    background: linear-gradient(135deg, rgba(1, 106, 211, 0.95), rgba(0, 210, 255, 0.85)), var(--hero-bg);
    background-size: cover; background-position: center; 
    padding: 100px 20px 160px; text-align: center; color: var(--white);
    clip-path: ellipse(150% 100% at 50% 0%);
}
/* Hero & Breadcrumb Reset */
.hero nav.zweitemenu {
    background: none !important; border: none !important; box-shadow: none !important;
    position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
    z-index: 5; display: flex !important; width: 100% !important; max-width: 1200px; padding: 0 20px;
}
.hero nav.zweitemenu p { margin: 0; font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); }
.hero nav.zweitemenu a { color: rgba(255, 255, 255, 0.8) !important; text-decoration: none; }
.hero nav.zweitemenu a:hover { color: #fff !important; text-decoration: underline; }
.hero nav.zweitemenu > div { flex-wrap: wrap; }
.hero-h1 { font-size: clamp(1.6rem, 5vw, 2.6rem); font-weight: 600; padding: 20px 10px; margin: 0 auto 20px auto; letter-spacing: -1.5px; text-align: center; max-width: 1000px; word-wrap: break-word; }
.hero-p { font-size: 1.25rem; opacity: 0.95; max-width: 800px; margin: 0 auto; }

/* --- CARDS GRID --- */
.main-grid { max-width: 1200px; margin: -80px auto 60px; padding: 0 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; position: relative; z-index: 10; }
.card { 
    background: var(--white); border-radius: var(--radius); padding: 45px 30px; text-align: center; 
    box-shadow: var(--shadow); transition: 0.3s ease; border: 1px solid rgba(0,0,0,0.02);
}
.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.card img { width: 80px; height: 80px; margin-bottom: 25px; }
.card h2 { margin-bottom: 15px; font-size: 1.4rem; }
.btn { display: inline-block; background: var(--primary); color: white; padding: 16px 35px; border-radius: 50px; font-weight: 700; margin-top: 20px; border: none; cursor: pointer; }
.btn:hover { background: var(--primary-dark); transform: scale(1.05); }

/* --- SEO SECTION --- */
.content-section { max-width: 900px; margin: 40px auto; padding: 0 20px; text-align: center; }
.content-section h2 { font-size: clamp(1.4rem, 4vw, 2.2rem); margin-bottom: 25px; color: var(--primary-dark); }
.content-section h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); margin-bottom: 20px; }
.content-section p { font-size: 1.1rem; color: var(--text-sub); margin-bottom: 20px; text-align: left; }

/* --- FOOTER --- */
footer { background: #001a33; color: #fff; padding: 80px 0 40px; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer-col h4 { margin-bottom: 25px; font-size: 18px; position: relative; }
.footer-col h4::after { content: ''; width: 30px; height: 2px; background: var(--primary); position: absolute; left: 0; bottom: -8px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { opacity: 0.7; font-size: 14px; }
.footer-col ul li a:hover { opacity: 1; color: var(--primary); }
.footer-bottom { text-align: center; margin-top: 60px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; opacity: 0.5; }

/* --- COOKIE MODAL --- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.55); z-index: 9999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(2px); }
.modal-content { background: white; padding: 40px; border-radius: var(--radius); max-width: 500px; width: 90%; text-align: center; }
.modal-content > div { flex-wrap: wrap; }
.cookie-setting { display: flex; justify-content: space-between; align-items: center; text-align: left; margin: 15px 0; padding: 18px; background: #f8fbff; border-radius: 12px; }
.toggle-switch { position: relative; width: 46px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #cbd5e0; transition: .4s; border-radius: 24px; }
.slider:before { position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: var(--primary); }
input:checked + .slider:before { transform: translateX(22px); }
input:disabled + .slider { background-color: var(--primary); opacity: 0.5; cursor: not-allowed; }

/* --- MOBILE NAV --- */
.mobile-btn { display: none; font-size: 30px; cursor: pointer; color: var(--primary); }
#myBtn { display: none; position: fixed; bottom: 30px; right: 30px; z-index: 99; background: var(--primary); color: white; border: none; width: 50px; height: 50px; border-radius: 50%; cursor: pointer; font-size: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
.home-icon { width: 1.1em; height: 1.1em; vertical-align: -0.2em; fill: currentColor; margin-right: 4px; }

.zagi-section { background: #fff; padding: 60px 20px; border-top: 1px solid #f1f5f9; }
.container { max-width: 1100px; margin: 0 auto; }
.zagi-title { text-align: center; margin-bottom: 40px; font-size: 24px; color: #1e293b; }
.zagi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.zagi-card { text-align: center; padding: 30px; text-decoration: none; color: inherit; border-radius: 12px; background: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease;  box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
.zagi-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.zagi-card-icon { font-size: 40px; margin-bottom: 15px; }
.zagi-card-title { margin-bottom: 10px; color: #016ad3; font-size: 20px; }
.zagi-card-desc { font-size: 14px; color: #64748b; line-height: 1.5; margin: 0; }
.zagi-cta-container { margin-top: 50px; background: #1e293b; padding: 40px; border-radius: 20px; color: #fff; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.zagi-cta-text { flex: 1; min-width: 220px; text-align: left; }
.zagi-cta-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
.zagi-cta-header span { font-size: 30px; }
.zagi-cta-header h3 { margin: 0; font-size: 22px; font-weight: 700; }
.zagi-cta-text p { margin: 0; opacity: 0.8; font-size: 16px; line-height: 1.5; }
.zagi-cta-button-wrapper { text-align: right; flex: 1; min-width: 200px; }
.zagi-cta-button { display: inline-block; background: #016ad3; color: #fff; text-decoration: none; padding: 15px 20px; border-radius: 12px; font-weight: 600; white-space: nowrap; transition: 0.3s; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.zagi-cta-button:hover { background: #0055a5; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0,0,0,0.25); }

.kassen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); place-items: center; gap: 15px;  margin: 50px 30px; }
.versicherung-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 15px; margin-top: 30px; }
.kasse-card { text-decoration: none; background: white; border-radius: 16px; padding: 30px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid #eee; display: flex; flex-direction: column; align-items: center; inherit; display: block; }
.kasse-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); border-color: #016ad3; }
.kasse-card h3 { font-size: 1.3rem; margin: 15px 0 10px; color: #333; }
.kasse-card p { font-size: 0.95rem; color: #666; margin-bottom: 20px; flex-grow: 1; }
.kasse-item { background: #fff; border: 1px solid #e2e8f0; padding: 15px; border-radius: 12px; text-align: center; transition: 0.3s; text-decoration: none; color: #334155; }
.kasse-item:hover { border-color: #016ad3; box-shadow: 0 4px 12px rgba(1,106,211,0.1); }
.kasse-item img { margin-bottom: 8px; filter: grayscale(10%); }

.info-flex { display: flex; background: #fff; align-items: center; justify-content: space-between; gap: 30px; margin: 10px; border-radius: 16px; padding: 30px; }
.info-content { flex: 1; padding: 20px; }
.info-image { flex: 1; display: flex; justify-content: center; max-width: 420px; }
.info-image img { width: 100%; max-width: 420px; height: auto; border-radius: 16px; }

.btn-check { text-decoration: none; display: inline-block; padding: 10px 20px; background: #f8f9fa; border: 1px solid #016ad3; border-radius: 8px; font-size: 0.9rem; color: #016ad3; font-weight: 600; transition: 0.3s; }
.btn-check:hover { background: #016ad3; color: white; }


.faq-section { margin-top: 40px; padding: 60px 0; background-color: #ffffff; border-radius: 12px; }
.faq-container-style { max-width: 1000px; margin: 0 auto; padding: 0 15px; }
.faq-title-style { font-size: 24px; font-weight: 700; margin-bottom: 30px; color: #333; }
.faq-grid { display: flex; flex-direction: column; gap: 0; }
.faq-details-item { border-bottom: 1px solid #eaeaea; background-color: transparent; transition: background-color 0.2s ease; }
.faq-details-item:first-child { border-top: 1px solid #eaeaea; }
.faq-details-item:hover { background-color: #f9f9f9; }
.faq-summary-style { padding: 20px 10px; font-size: 1.1rem; font-weight: 600; color: #016ad3; display: flex; justify-content: space-between; align-items: center; position: relative; }
.faq-summary-style::after { content: '+'; font-size: 1.4rem; color: #999; font-weight: 300; transition: transform 0.3s ease; }
.faq-details-item.is-active { background-color: #fcfcfc; }
.faq-details-item.is-active .faq-summary-style::after { content: '−'; transform: rotate(180deg); }
.faq-answer-wrapper { display: none; overflow: hidden; transition: height 0.35s ease-in-out; }
.faq-answer-style { padding: 0 10px 20px 10px; margin: 0; line-height: 1.6; color: #555; font-size: 1rem; }

.card-white { padding: 25px; border-radius: 20px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.flex-align-center { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; }
.price-section-bg { background: #f8fafc; padding: 60px 0; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.price-card-box { background: #fff; border-radius: 20px; padding: 25px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.price-header-row { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; border-bottom: 2px solid #f1f5f9; padding-bottom: 15px; }
.price-info-line { padding: 15px 0; border-bottom: 1px solid #f1f5f9; }
.price-info-line:last-of-type { border-bottom: none; }
.price-flex-between { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.company-name-text { font-weight: 700; color: #016ad3; font-size: 14px; }
.accident-label { color: #94a3b8; font-size: 11px; font-weight: 600; text-transform: uppercase; }
.price-values-row { display: flex; align-items: baseline; gap: 10px; }
.netto-val { font-size: 20px; font-weight: 800; color: #1e293b; }
.brutto-val { font-size: 14px; color: #94a3b8; text-decoration: line-through; }
.discount-badge { background: #fee2e2; color: #ef4444; padding: 2px 8px; border-radius: 6px; font-size: 12px; font-weight: 700; }
.kanton-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; margin: 30px 0; }
.btn-kanton { background: #fff; border: 1px solid #e2e8f0; padding: 12px; border-radius: 10px; text-align: center; font-weight: 600; font-size: 14px; transition: 0.3s; color: #334155; text-decoration: none; }
.btn-kanton:hover { border-color: #016ad3; color: #016ad3; background: #f0f7ff; transform: translateY(-2px); }
.seo-box { max-width: 1100px; margin: 40px auto; padding: 35px; background: white; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.02); }
.seo-box-text { margin-bottom: 20px; }
.seo-box-text:last-child { margin-bottom: 0; }

.kanton-check-list { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 30px; font-size: 13px; color: #059669; font-weight: 600; }
.price-card { background: #fff; border-radius: 16px; border: 1px solid #eef2f6; padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.3s; margin-bottom: 25px; }
.price-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.price-bg-alt { background: #f8fafc; max-width: 100%; padding: 60px 0; }
.price-inner-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.price-grid-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.price-link-sparen { margin-left: auto; color: #016ad3; font-weight: 700; text-decoration: none; }
.card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; border-bottom: 2px solid #f8fafc; padding-bottom: 12px; }
.price-details { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.price-item { background: #f8fafc; padding: 12px; border-radius: 12px; }
.badge-discount { background: #dcfce7; color: #166534; font-size: 11px; padding: 2px 6px; border-radius: 5px; font-weight: 700; margin-left: 5px; vertical-align: middle; }
.price-brutto { text-decoration: line-through; color: #94a3b8; font-size: 13px; }
.price-netto { display: block; font-size: 19px; font-weight: 800; color: #01478E; }
.model-info { flex: 1; margin-top: 15px; font-size: 14px; color: #475569; display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.cities-section-layout { max-width: 1100px; padding: 20px; margin: 0 auto; }
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; margin: 30px 0; }
.pagination-flex { display: flex; justify-content: center; gap: 15px; margin-top: 40px; }
.btn-pag-prev { background: #fff !important; color: #333 !important; border: 1px solid #ccc !important; }
.card-ort-wrapper { padding: 30px 10px; border-radius: 20px; }
.card-ort-wrapper h2 { text-align: center; margin-bottom: 30px; }
.price-comparison-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.badge-saving { background: #dcfce7; color: #166534; font-size: 11px; padding: 4px 10px; border-radius: 20px; font-weight: 800; display: inline-block; margin-bottom: 10px; }
.price-box-light { background: #f8fafc; padding: 15px; border-radius: 12px; border: 1px solid #f1f5f9; }
.price-calc { font-size: 13px; color: #94a3b8; text-decoration: line-through; margin-bottom: 2px; }
.vers-info { font-size: 14px; font-weight: 700; color: #1e293b; margin: 10px 0; }
.btn-save { display: block; background: #22c55e; color: #fff; text-align: center; padding: 12px; border-radius: 8px; text-decoration: none; font-weight: 700; margin-top: 15px; }
.kassen-container { max-width: 1100px; margin: 40px auto; padding: 40px 20px; }
.kassen-title { text-align: center; }
.kassen-subtitle { text-align: center; color: #64748b; margin-bottom: 30px; }

.main-grid-layout { max-width: 1200px; margin: -120px auto 60px; padding: 0 5px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.premium-card-item { background: #fff; border: 1px solid #eee; border-radius: 10px; margin-bottom: 15px; overflow: hidden; }
.franchise-header { background: #fcfcfc; padding: 12px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; cursor: pointer; padding-right: 85px!important; }
.model-row { padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #f9f9f9; }
.price-tag { color: #0056b3; font-size: 1.2rem; font-weight: 800; }
.price-container { display: flex; gap: 15px; margin-bottom: 10px; justify-content: flex-end; }
.price-box { text-align: center; }
.price-label { display: block; font-size: 0.65rem; color: #666; text-transform: uppercase; margin-bottom: 2px; }
.price-value { font-size: 1.1rem; font-weight: 700; color: #333; }
.price-value.bold { color: #0056b3; }
@keyframes shine { 0% { left: -60%; } 20% { left: 120%; } 100% { left: 120%; } }
.badge-type { background: #eef4ff; color: #0056b3; padding: 2px 8px; border-radius: 4px; font-size: 0.7rem; text-transform: uppercase; }
.kk-details-container { max-width: 1000px; margin: 40px auto; padding: 0 15px; font-family: sans-serif; }
.kk-premium-card { background: #fff; border-radius: 15px; padding: 25px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); display: flex; gap: 25px; align-items: center; margin-bottom: 30px; }
.kk-logo-box { flex: 0 0 150px; text-align: center; }
.kk-logo-box img { max-width: 100%; height: auto; }
.kk-text-box { flex: 1; }
.kk-text-box a:link { color: #1a0dab; text-decoration: none; }
.kk-text-box a:visited { color: #1a0dab; }
.kk-text-box a:hover { color: #0056b3; text-decoration: underline; }
.kk-text-box a:active { color: #d93025; }
.kk-tab-content { animation: fadeIn 1.5s; }
.kk-age-tabs { display: flex; justify-content: center; gap: 10px; list-style: none; padding: 0; margin-top: 80px; margin-bottom: 30px; }
.kk-tab-btn { padding: 10px 20px; border: 1px solid #0056b3; background: #fff; color: #0056b3; border-radius: 30px; cursor: pointer; font-weight: 600; transition: 0.3s; }
.kk-tab-btn.active { background: #0056b3; color: #fff; }
.model-row-flex { padding-right: 85px!important; }

.kk-text-h2 { margin-top: 0; font-size: clamp(1.2rem, 3vw, 1.5rem); margin-bottom: 15px; color: #333; }
.kk-text-p { color: #666; line-height: 1.6; margin-bottom: 10px; }
.kk-text-small { color: #0056b3; font-weight: bold; }
.no-data-alert { padding: 20px; text-align: center; background: #eef4ff; border-radius: 10px; color: #0056b3; }
.franchise-header-row { font-weight: 600; }
.table-row-flex { padding: 15px 20px; border-bottom: 1px solid #f9f9f9; display: flex; justify-content: space-between; align-items: center; }
.model-info-box { flex: 1; }
.model-title-bold { font-weight: bold; margin-top: 5px; color: #333; font-size: 0.95rem; }
.mehr-body { display: none; overflow: hidden; transition: height 0.35s ease-in-out; }

.calc-wrapper { max-width: 1200px; margin: -80px auto 60px; background: white; padding: 40px; border-radius: 15px; box-shadow: var(--shadow); position: relative; z-index: 5; text-align: center; }
#myForm { max-width: 600px; margin: 0 auto; }
.flex-row { display: flex; gap: 10px; align-items: flex-end; justify-content: center; }
.plz { width: 100%; padding: 15px 20px 15px 40px; margin-top: 10px; box-sizing: border-box; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2); background: url('https://www.zagi.ch/images/standort.svg') no-repeat 10px center; background-color: #fff; background-size: 20px 20px; }
#suggestions { position: absolute; top: 100%; left: 0; right: 0; background: white; border: 1px solid #ccc; border-top: none; max-height: 200px; overflow-y: auto; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); z-index: 1000; }
.suggestion-item { padding: 12px; cursor: pointer; border-bottom: 1px solid #eee; text-align: left; }
.suggestion-item:hover { background-color: #f0f0f0; }
button.btn-submit { background-color: #003F42; color: white; padding: 15px 25px; border: none; border-radius: 5px; cursor: pointer; font-size: 16px; font-weight: bold; height: 50px; transition: background 0.3s; white-space: nowrap;}
button.btn-submit:hover { background-color: #004A4F; }
.insurance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 40px 0; }
.cat-card { background: #f8f9fa; padding: 30px; border-radius: 12px; text-decoration: none; color: inherit; transition: 0.3s; border: 1px solid #eee; text-align: center;}
.cat-card:hover { background: white; box-shadow: var(--shadow); transform: translateY(-3px); }
.cat-card h3 { color: #0a51a8; margin: 15px 0 10px; }

.form-container{max-width:800px;margin:0 auto;background:#fff;padding:40px;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,0.05);}
.form-group{margin-bottom:20px;}
.form-group label{display:block;margin-bottom:8px;font-weight:600;color:#333;}
.form-group input,.form-group select{width:100%;padding:12px;border:1px solid #ddd;border-radius:6px;font-size:16px;}
.form-group input:focus{border-color:#016ad3;outline:none;}
.submit-button{background:#016ad3;color:#fff;border:none;padding:15px 30px;border-radius:50px;font-size:18px;font-weight:700;cursor:pointer;width:100%;transition:0.3s;}
.submit-button:hover{background:#0156aa;transform:translateY(-2px);}
textarea{width:100%;min-height:120px;padding:12px 14px;font-size:16px;font-family:inherit;color:#333;border:1px solid #ccc;border-radius:10px;outline:none;resize:vertical;transition:all 0.2s ease-in-out;background-color:#fafafa;}
textarea:focus{border-color:#4f46e5;background-color:#fff;box-shadow:0 0 0 3px rgba(79,70,229,0.15);}
textarea::placeholder{color:#999;font-style:italic;}

.plz-container{position:relative;width:100%;}
#suggestions{position:absolute;top:100%;left:0;right:0;z-index:999;background:#fff;border:1px solid #ddd;border-top:none;border-radius:0 0 6px 6px;max-height:200px;overflow-y:auto;box-shadow:0 4px 12px rgba(0,0,0,0.1);}
.suggestion-item{padding:12px;cursor:pointer;border-bottom:1px solid #eee;font-size:14px;color:#333;}
.suggestion-item:last-child{border-bottom:none;}
.suggestion-item:hover{background:#f1f7ff;color:#016ad3;}

.form-section-title{color:#016ad3;margin-bottom:20px;font-size:1.4rem;border-left:4px solid #016ad3;padding-left:15px;}

@media (max-width: 992px) {
.kassen-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); place-items: center; gap: 15px; margin: 10px; 30px }
    .mobile-btn { display: block; }
    .nav-menu { position: fixed; top: 80px; left: -100%; width: 100%; height: calc(100vh - 80px); background: white; flex-direction: column; transition: 0.4s; overflow-y: auto; }
    .nav-menu.active { left: 0; }
    .nav-item { width: 100%; height: auto; border-bottom: 1px solid #eee; display: block; }
    .nav-link { padding: 20px; justify-content: space-between; width: 100%; }
    .dropdown { position: static; width: 100%; transform: none; opacity: 1; visibility: visible; display: none; box-shadow: none; border: none; background: #fafafa; padding: 10px 0 10px 20px; }
    .nav-item.active-item .dropdown { display: block; }
    .nav-item:last-child .dropdown { right: 0; left: auto; }
    .content-section { margin: 40px auto; padding: 0 20px; }
    .info-flex { flex-direction: column; text-align: left; gap: 30px; padding: 10px; }
}
@media (max-width: 768px) {
    .zagi-cta-container { text-align: center !important; justify-content: center !important; }
    .zagi-cta-text { text-align: center !important; }
    .zagi-cta-header { justify-content: center !important; }
    .zagi-cta-button-wrapper { text-align: center !important; width: 100%; }
.model-row-flex,.franchise-header{padding-right:85px!important}
.model-row-flex{flex-direction:column!important;align-items:flex-start!important;padding:15px!important}
.model-info{width:100%;margin-bottom:15px}
.price-actions{width:100%!important;text-align:left!important}
.price-container{display:grid!important;grid-template-columns:1fr 1fr;gap:10px!important;width:100%!important;background:#f8f9fa;padding:12px;border-radius:8px;margin-bottom:12px;box-sizing:border-box}
.price-box{text-align:center!important;border-right:1px solid #dee2e6}
.price-box:last-child{border-right:none}
.price-label{font-size:0.6rem!important}
.price-value{font-size:1rem!important}
.kk-premium-card{flex-direction:column;text-align:center;padding:10px}
.kk-logo-box{flex:0 0 auto}
.kk-age-tabs{flex-wrap:wrap}
.price-details { grid-template-columns: 1fr; }
.main-grid .card { padding: 20px !important; }
.price-netto { font-size: 22px; }
    .calc-wrapper { margin: -50px 15px 40px; padding: 25px; } 
    .flex-row { flex-direction: column; align-items: stretch; }
    button.btn-submit { width: 100%; margin-top: 10px; }
.hide-mobile { display: none; } .info-flex { text-align: center; flex-direction: column; } .info-subtext { display: block; margin-top: 5px; }
}
