/* =====================================================
   FolienProfis Rhein-Main — GlasDesign Pro Style
   ===================================================== */

/* 1. VARIABLES */
:root {
  --navy:        #0F2240;
  --navy-mid:    #1B3A6B;
  --teal:        #0B7A6E;
  --teal-light:  #0D9488;
  --orange:      #F5821A;
  --orange-dark: #E06F0C;
  --green-wa:    #25D366;
  --green-wa-dk: #1DAD56;
  --white:       #FFFFFF;
  --bg-light:    #F4F6F9;
  --bg-gray:     #EEF1F5;
  --text-dark:   #1A1A2E;
  --text-gray:   #5A6575;
  --text-light:  #8A94A6;
  --border:      #E2E8F0;
  --shadow-sm:   0 2px 8px rgba(15,34,64,0.07);
  --shadow-md:   0 6px 24px rgba(15,34,64,0.11);
  --shadow-lg:   0 12px 40px rgba(15,34,64,0.16);
  --radius:      10px;
  --radius-sm:   6px;
  --container:   1200px;
  --font:        'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-dark); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* 3. LAYOUT */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.text-center { text-align: center; }

/* 4. TYPOGRAPHY */
.section-label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; display: block; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 14px; }
.section-subtitle { font-size: 1rem; color: var(--text-gray); max-width: 600px; line-height: 1.7; }
.text-center .section-subtitle { margin: 0 auto; }
.prose p { color: var(--text-gray); line-height: 1.85; margin-bottom: 16px; font-size: 0.97rem; }
.prose h2 { font-size: 1.45rem; font-weight: 700; color: var(--navy); margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose ul { display: flex; flex-direction: column; gap: 8px; margin: 14px 0 20px; padding-left: 4px; }
.prose ul li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-gray); font-size: 0.95rem; }
.prose ul li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* 5. BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 50px; font-family: var(--font); font-size: 0.92rem; font-weight: 600; cursor: pointer; transition: all 0.25s ease; border: 2px solid transparent; white-space: nowrap; }
.btn-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,130,26,0.35); }
.btn-wa { background: var(--green-wa); color: var(--white); border-color: var(--green-wa); }
.btn-wa:hover { background: var(--green-wa-dk); border-color: var(--green-wa-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.cta-button { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: 50px; font-family: var(--font); font-size: 0.92rem; font-weight: 600; cursor: pointer; transition: all 0.25s ease; border: 2px solid transparent; white-space: nowrap; background: var(--orange); color: var(--white); border-color: var(--orange); }
.cta-button:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,130,26,0.35); }
.bg-whatsapp { background: var(--green-wa) !important; border-color: var(--green-wa) !important; }
.bg-whatsapp:hover { background: var(--green-wa-dk) !important; box-shadow: 0 6px 20px rgba(37,211,102,0.35) !important; }

/* 6. HEADER */
header { background: var(--white); box-shadow: 0 1px 0 var(--border), var(--shadow-sm); position: sticky; top: 0; z-index: 1000; min-height: 70px; }
nav { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo { font-size: 1.18rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.logo span { color: var(--teal); }
.logo-tagline { font-size: 0.6rem; font-weight: 400; color: var(--text-light); display: block; letter-spacing: 0.04em; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links > a { padding: 8px 14px; font-size: 0.88rem; font-weight: 500; color: var(--text-dark); border-radius: var(--radius-sm); transition: all 0.2s; position: relative; }
.nav-links > a:hover { color: var(--navy); background: var(--bg-light); }
.nav-links > a.active { color: var(--teal); font-weight: 600; }
.nav-links > a.active::after { content: ''; position: absolute; bottom: 2px; left: 14px; right: 14px; height: 2px; background: var(--teal); border-radius: 2px; }
.nav-cta { background: var(--orange) !important; color: var(--white) !important; border-radius: 50px !important; padding: 10px 22px !important; font-weight: 600 !important; margin-left: 14px !important; }
.nav-cta:hover { background: var(--orange-dark) !important; box-shadow: 0 4px 14px rgba(245,130,26,0.3) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }
.dropdown { position: relative; display: flex; align-items: center; }
.dropbtn { background: none; border: none; font-family: var(--font); font-size: 0.88rem; font-weight: 500; color: var(--text-dark); cursor: pointer; padding: 8px 14px; border-radius: var(--radius-sm); display: flex; align-items: center; gap: 5px; transition: all 0.2s; }
.dropbtn:hover, .dropbtn.active { color: var(--navy); background: var(--bg-light); }
.dropbtn.active { color: var(--teal); font-weight: 600; }
.dropdown-content { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 240px; box-shadow: var(--shadow-md); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; flex-direction: column; z-index: 200; padding-top: 8px; margin-top: 0; }
.dropdown-content::before { content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px; }
.dropdown-content a { padding: 11px 18px; font-size: 0.87rem; color: var(--text-dark); border-bottom: 1px solid var(--bg-light); transition: all 0.2s; display: flex; align-items: center; gap: 8px; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background: var(--bg-light); color: var(--teal); padding-left: 22px; }
@media (min-width: 769px) { .dropdown:hover .dropdown-content { display: flex; } }
.menu-toggle { display: none; cursor: pointer; color: var(--navy); padding: 6px; }

/* 7. HERO */
.hero {
  background-color: #E8EEF5;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(232,240,250,0.6) 60%, rgba(220,232,245,0.4) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(15,34,64,0.025) 80px, rgba(15,34,64,0.025) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(15,34,64,0.025) 80px, rgba(15,34,64,0.025) 81px);
  min-height: 72vh;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(11,122,110,0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -20%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(27,58,107,0.05) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; color: var(--navy); line-height: 1.18; margin-bottom: 18px; letter-spacing: -0.02em; }
.hero h1 span { color: var(--teal); }
.hero-sub { font-size: 1.05rem; color: var(--text-gray); margin-bottom: 34px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* 8. TRUST BAR */
.trust-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 16px 0; }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; font-weight: 500; color: var(--text-gray); }
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* 9. LEISTUNGEN CARDS */
.services-section { padding: 80px 0; background: var(--white); text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; text-align: left; }
.service-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all 0.25s ease; background: var(--white); }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(11,122,110,0.25); }
.service-card-img { width: 100%; height: 190px; object-fit: cover; display: block; background: var(--bg-gray); }
.service-card-img-placeholder { width: 100%; height: 190px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%); }
.service-card-body { padding: 22px 22px 20px; }
.service-card-title { font-size: 1.05rem; font-weight: 700; color: var(--teal); margin-bottom: 10px; }
.service-card-text { font-size: 0.88rem; color: var(--text-gray); line-height: 1.65; margin-bottom: 14px; }
.service-card-link { font-size: 0.87rem; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.service-card:hover .service-card-link { gap: 9px; }

/* 10. WARUM */
.warum-section { padding: 80px 0; background: var(--bg-light); text-align: center; }
.warum-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.warum-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow-sm); transition: all 0.25s; text-align: center; }
.warum-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.warum-icon-box { width: 52px; height: 52px; background: var(--navy-mid); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.warum-icon-box svg { width: 26px; height: 26px; stroke: var(--white); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.warum-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.warum-card p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.7; }

/* 11. USP BAR (home) */
.usp-section { padding: 60px 0; background: var(--bg-light); text-align: center; }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.usp-item { background: var(--white); padding: 28px 24px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.icon-usp { font-size: 1.6rem; margin-bottom: 12px; }

/* 12. PROCESS */
.process-section { padding: 80px 0; background: var(--white); text-align: center; }
.process-steps { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; margin-top: 48px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 38px; left: 10%; right: 10%; height: 2px; background: var(--border); z-index: 0; }
.process-step { flex: 1; min-width: 200px; max-width: 280px; padding: 0 16px; position: relative; z-index: 1; }
.step-number { width: 76px; height: 76px; background: var(--white); border: 2px solid var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.5rem; font-weight: 800; color: var(--teal); }
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.86rem; color: var(--text-gray); line-height: 1.65; }

/* 13. CTA BAND */
.cta-band { background: var(--navy); padding: 60px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--white); margin-bottom: 8px; }
.cta-band-text p { font-size: 0.97rem; color: rgba(255,255,255,0.72); max-width: 480px; line-height: 1.65; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* 14. SERVICEGEBIET */
.servicegebiet-section { padding: 80px 0; background: var(--white); }
.city-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.city-item { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 16px; text-align: center; transition: all 0.2s; }
.city-item:hover, .city-item.main { border-color: var(--teal); background: rgba(11,122,110,0.05); }
.city-item a { color: var(--text-dark); font-size: 0.92rem; font-weight: 600; }
.city-item.main a { color: var(--teal); }
.city-meta { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }
.seo-geo-text { background: var(--bg-light); border-radius: var(--radius); padding: 24px 28px; margin-top: 36px; font-size: 0.88rem; color: var(--text-gray); line-height: 1.8; }

/* 15. FOOTER */
footer { background: var(--white); border-top: 1px solid var(--border); }
.footer-main { padding: 48px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo { font-size: 1.1rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.86rem; color: var(--text-gray); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.87rem; color: var(--text-gray); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-col ul li { font-size: 0.87rem; color: var(--text-gray); display: flex; align-items: flex-start; gap: 7px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 16px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.8rem; color: var(--text-light); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8rem; color: var(--text-light); transition: color 0.2s; }
.footer-legal a:hover { color: var(--teal); }
.footer-seo-text { font-size: 0.82rem; color: var(--text-light); line-height: 1.75; padding: 16px 0 8px; border-top: 1px solid var(--border); text-align: center; }

/* 16. PAGE HERO (inner pages) */
.page-header-section { background: linear-gradient(135deg, #EEF2F7 0%, #F5F8FB 100%); padding: 48px 0 52px; text-align: center; border-bottom: 1px solid var(--border); }
.page-header-section h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.01em; }
.page-header-description { font-size: 1rem; color: var(--text-gray); max-width: 680px; margin: 0 auto; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.82rem; color: var(--text-light); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-gray); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: var(--teal); font-weight: 600; }

/* 17. CONTENT LAYOUT */
.content-padding { padding: 60px 20px; }
.content-grid-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }
.main-content { min-width: 0; }
.sidebar { display: flex; flex-direction: column; gap: 20px; }

/* 18. SIDEBAR */
.cta-box-sidebar { background: var(--navy); color: var(--white); padding: 28px 24px; border-radius: var(--radius); text-align: center; }
.cta-box-sidebar h3 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.cta-box-sidebar p { font-size: 0.88rem; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 18px; }
.btn-block-mt { display: block; width: 100%; text-align: center; margin-top: 10px; justify-content: center; }
.sidebar-box { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.sidebar-box h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.sidebar-box ul { display: flex; flex-direction: column; gap: 7px; }
.sidebar-box ul li a { font-size: 0.87rem; color: var(--text-gray); display: flex; align-items: center; gap: 7px; transition: color 0.2s; }
.sidebar-box ul li a:hover { color: var(--teal); }
.sidebar-city-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.sidebar-city-tags a { font-size: 0.78rem; background: var(--white); border: 1px solid var(--border); color: var(--text-gray); padding: 5px 12px; border-radius: 100px; transition: all 0.2s; }
.sidebar-city-tags a:hover { border-color: var(--teal); color: var(--teal); }

/* 19. FAQ */
.faq-section { margin-top: 40px; }
.faq-section h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: var(--teal); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; cursor: pointer; font-weight: 600; color: var(--navy); font-size: 0.93rem; gap: 12px; user-select: none; width: 100%; background: none; border: none; text-align: left; }
.faq-question .faq-arrow { flex-shrink: 0; transition: transform 0.25s; color: var(--teal); font-size: 1.1rem; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 16px; color: var(--text-gray); font-size: 0.9rem; line-height: 1.78; }
.faq-item.open .faq-answer { display: block; }

/* 20. PORTFOLIO/GALLERY */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin-bottom: 28px; }
.portfolio-img, .portfolio-img-lg { width: 100%; border-radius: var(--radius-sm); object-fit: cover; display: block; background: var(--bg-gray); }
.portfolio-img { height: 150px; aspect-ratio: 4/3; }
.portfolio-img-lg { height: 200px; aspect-ratio: 4/3; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.portfolio-item-wrapper { border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-sm); transition: all 0.3s ease; background: var(--bg-light); aspect-ratio: 4/3; }
.portfolio-item-wrapper:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-img { width: 100%; height: 240px; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform 0.4s ease; }
.portfolio-item-wrapper:hover .gallery-img { transform: scale(1.04); }

/* 21. CONTACT FORM */
.contact-form-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 15px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.9rem; color: var(--text-dark); background: var(--white); transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(11,122,110,0.08); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; background: #f0fdf4; border: 1px solid #bbf7d0; border-radius: var(--radius-sm); padding: 14px 18px; color: #16a34a; font-size: 0.9rem; margin-top: 14px; }

/* 22. STICKY BUTTONS */
.sticky-buttons-container { position: fixed; bottom: 22px; right: 22px; display: flex; flex-direction: column; gap: 12px; z-index: 9999; }
.sticky-button { width: 56px; height: 56px; border-radius: 50%; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; transition: transform 0.25s; will-change: transform; }
.sticky-button:hover { transform: scale(1.1); }
.sticky-button.whatsapp { background: var(--green-wa); }
.sticky-button.phone { background: var(--orange); }

/* 23. FEATURE BOX */
.feature-box { background: var(--bg-light); border: 1px solid var(--border); padding: 20px; border-radius: var(--radius); margin-top: 20px; }
.feature-box h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

/* 24. BENEFITS GRID */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; }
.benefit-item { background: var(--bg-light); border-radius: var(--radius-sm); padding: 22px 18px; text-align: center; }
.benefit-icon { font-size: 1.7rem; margin-bottom: 10px; }
.benefit-title { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.benefit-text { font-size: 0.82rem; color: var(--text-gray); line-height: 1.5; }

/* 25. TYPES GRID */
.types-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 20px 0; }
.type-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; transition: all 0.2s; overflow: hidden; }
.type-card:hover { border-color: rgba(11,122,110,0.35); box-shadow: var(--shadow-sm); }
.type-card-name { font-weight: 700; color: var(--navy); font-size: 0.93rem; margin-bottom: 6px; }
.type-card-desc { font-size: 0.83rem; color: var(--text-gray); line-height: 1.55; }
.type-card-photo { width: calc(100% + 36px); margin: -18px -18px 14px; height: 180px; object-fit: cover; display: block; }
.photo-gallery-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; border-radius: var(--radius); overflow: hidden; }
.photo-gallery-2col img { width: 100%; height: 220px; object-fit: cover; display: block; }
@media (max-width: 600px) { .photo-gallery-2col { grid-template-columns: 1fr; } .photo-gallery-2col img { height: 200px; } }

/* Wirkungsweise image */
.wirkung-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin: 28px 0; }
.wirkung-split img { width: 100%; border-radius: var(--radius); object-fit: cover; max-height: 320px; }
@media (max-width: 768px) { .wirkung-split { grid-template-columns: 1fr; } }

/* Image sector cards */
.sector-img-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 24px 0; }
.sector-img-card { position: relative; height: 260px; border-radius: var(--radius); overflow: hidden; }
.sector-img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.sector-img-card:hover img { transform: scale(1.06); }
.sector-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,34,64,0.88) 0%, transparent 55%); }
.sector-img-body { position: absolute; bottom: 18px; left: 18px; color: #fff; }
.sector-img-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.sector-img-body p { font-size: 0.78rem; opacity: 0.85; margin: 0; }
@media (max-width: 900px) { .sector-img-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .sector-img-grid { grid-template-columns: 1fr; .sector-img-card { height: 200px; } } }

/* Lösungen-Cards (grayscale hover reveal) */
.loesungen-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 28px 0; }
.loesungen-card { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius); cursor: pointer; }
.loesungen-card img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(100%); transition: filter 0.6s, transform 0.5s; }
.loesungen-card:hover img { filter: grayscale(0%); transform: scale(1.05); }
.loesungen-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,32,69,0.82) 0%, rgba(0,32,69,0.25) 55%, transparent 100%); transition: background 0.4s; }
.loesungen-card:hover .loesungen-card-overlay { background: linear-gradient(to top, rgba(0,32,69,0.65) 0%, rgba(0,32,69,0.1) 55%, transparent 100%); }
.loesungen-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; color: #fff; }
.loesungen-card-body h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.loesungen-card-body p { font-size: 0.82rem; opacity: 0; line-height: 1.5; margin: 0; transition: opacity 0.4s; }
.loesungen-card:hover .loesungen-card-body p { opacity: 0.9; }
@media (max-width: 768px) { .loesungen-grid { grid-template-columns: 1fr; } .loesungen-card { aspect-ratio: 16/9; } }

/* 26. ABOUT */
.about-section { padding: 60px 20px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--radius); }

/* 27. READ MORE */
.read-more-link { color: var(--teal); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; margin-top: 10px; font-size: 0.88rem; transition: gap 0.2s; }
.read-more-link:hover { gap: 9px; }

/* 28. RESPONSIVE */
@media (max-width: 968px) {
  .hamburger { display: flex; }

  /* Menü paneli */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    border-top: 3px solid var(--teal);
    box-shadow: 0 8px 32px rgba(11,34,64,0.13);
    padding: 8px 0 20px;
    z-index: 999;
  }
  .nav-links.active { display: flex; }

  /* Her li item */
  .nav-links > li {
    width: 100%;
    list-style: none;
    border-bottom: 1px solid var(--bg-light);
  }
  .nav-links > li:last-child { border-bottom: none; }

  /* Normal linkler */
  .nav-links > li > a {
    display: block;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
    border-radius: 0;
    transition: all 0.18s;
  }
  .nav-links > li > a:hover { background: var(--bg-light); color: var(--teal); }
  .nav-links > li > a.active { color: var(--teal); font-weight: 600; }

  /* Dropdown buton */
  .dropbtn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 0;
    justify-content: space-between;
    font-size: 0.95rem;
    border-bottom: none;
  }
  .dropdown { flex-direction: column; align-items: flex-start; }
  .dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    border-top: 1px solid var(--border);
    background: var(--bg-light);
    width: 100%;
    display: none;
    flex-direction: column;
    padding: 4px 0;
  }
  .dropdown-content.open { display: flex; }
  .dropdown-content a {
    padding: 11px 24px 11px 42px;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
  .dropdown-content a:last-child { border-bottom: none; }

  /* CTA butonu */
  .nav-cta {
    display: block;
    margin: 16px 20px 8px !important;
    width: calc(100% - 40px) !important;
    text-align: center !important;
    border-radius: 50px !important;
    border-bottom: none !important;
    padding: 13px 24px !important;
    margin-left: 20px !important;
  }

  header { position: sticky; }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .warum-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .city-list { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .section, .services-section, .warum-section, .process-section, .servicegebiet-section { padding: 56px 0; }
  .hero { min-height: auto; padding: 70px 20px 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .warum-grid { grid-template-columns: 1fr; }
  .content-grid-layout { grid-template-columns: 1fr; }
  .content-padding { padding: 40px 20px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .city-list { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-direction: column; align-items: center; gap: 32px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .types-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px 18px; }
}
@media (max-width: 480px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr 1fr; }
  .trust-items { gap: 16px; }
}

/* 29. HERO TWO-COLUMN */
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; max-width: var(--container); margin: 0 auto; position: relative; z-index: 1; }
.hero-content { text-align: left; }
.hero-content h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; color: var(--navy); line-height: 1.18; margin-bottom: 18px; letter-spacing: -0.02em; }
.hero-content .section-label { margin-bottom: 12px; }
.hero-sub { font-size: 1rem; color: var(--text-gray); margin-bottom: 34px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: 420px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.hero-visual img:hover { transform: scale(1.04); }
.hero-visual img:first-child { grid-row: span 2; }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 16px; }
.hero-stat { background: rgba(255,255,255,0.85); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px 12px; text-align: center; }
.hero-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--teal); line-height: 1.1; }
.hero-stat span { font-size: 0.75rem; color: var(--text-gray); font-weight: 500; }
/* Showcase strip */
.showcase-strip { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 12px; margin: 48px 0; border-radius: var(--radius); overflow: hidden; }
.showcase-strip-item { position: relative; overflow: hidden; }
.showcase-strip-item img { width: 100%; height: 280px; object-fit: cover; display: block; transition: transform 0.5s; }
.showcase-strip-item:hover img { transform: scale(1.05); }
.showcase-strip-label { position: absolute; bottom: 14px; left: 14px; background: rgba(0,32,69,0.82); color: #fff; font-size: 0.82rem; font-weight: 700; padding: 5px 12px; border-radius: 4px; }
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .showcase-strip { grid-template-columns: 1fr; }
  .showcase-strip-item img { height: 200px; }
}

/* 30. TRUST BAR */
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }

/* 31. SERVICE CARD FIXES */
.service-card { overflow: hidden; }
.service-card-img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform 0.4s ease; }
.service-card:hover .service-card-img { transform: scale(1.05); }
.service-card-img-placeholder { width: 100%; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%); }
.service-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--teal); margin-bottom: 10px; }
.service-card-body p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.65; margin-bottom: 14px; }
.card-link { font-size: 0.87rem; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.service-card:hover .card-link { gap: 9px; }

/* 32. WARUM ICON EMOJI */
.warum-icon { font-size: 2rem; margin-bottom: 14px; }

/* 33. PROCESS SECTION */
.section-process { padding: 80px 0; background: var(--bg-light); }
.process-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: start; gap: 0; margin-top: 48px; }
.process-arrow { font-size: 1.5rem; color: var(--border); align-self: center; padding: 0 8px; margin-top: -16px; }
.process-step { text-align: center; padding: 0 12px; }
@media (max-width: 860px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-arrow { display: none; }
}

/* 34. CITIES GRID */
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.city-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 20px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; transition: all 0.2s; color: var(--text-dark); }
.city-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.city-card-main { border-color: var(--teal); background: rgba(11,122,110,0.04); }
.city-card-main strong { color: var(--teal); }
.city-icon { font-size: 1.6rem; }
.city-card strong { font-size: 0.92rem; font-weight: 700; }
.city-card span { font-size: 0.78rem; color: var(--text-light); }
@media (max-width: 900px) { .cities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .cities-grid { grid-template-columns: repeat(2, 1fr); } }

/* 35. FOOTER UPDATED */
.footer-top { background: var(--white); border-top: 1px solid var(--border); padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-logo { font-size: 1.1rem; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 12px; }
.footer-logo span { color: var(--teal); }
.footer-brand p { font-size: 0.85rem; color: var(--text-gray); line-height: 1.7; margin-bottom: 20px; max-width: 240px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.87rem; color: var(--text-gray); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px !important; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: var(--text-gray); }
.footer-contact-list li svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list li a { color: var(--text-gray); transition: color 0.2s; }
.footer-contact-list li a:hover { color: var(--teal); }
.footer-bottom { background: var(--bg-light); border-top: 1px solid var(--border); padding: 16px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom-inner p { font-size: 0.8rem; color: var(--text-light); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: var(--text-light); transition: color 0.2s; }
.footer-legal a:hover { color: var(--teal); }
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; } .footer-brand { grid-column: 1/-1; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-bottom-inner { flex-direction: column; text-align: center; } }

/* 36. FLOAT BUTTONS */
.float-buttons { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 9999; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); transition: transform 0.2s; color: var(--white); }
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: var(--green-wa); }
.float-phone { background: var(--orange); }

/* 37. SCROLL TOP */
#scroll-top { display: none; position: fixed; bottom: 24px; left: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white); border: none; cursor: pointer; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: all 0.2s; z-index: 9999; }
#scroll-top:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* 38. HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
@media (max-width: 968px) { .hamburger { display: flex; } }

/* 39. COMPARISON TABLE */
.comparison-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.88rem; }
.comparison-table th { background: var(--navy); color: var(--white); padding: 12px 16px; text-align: left; font-weight: 600; font-size: 0.83rem; }
.comparison-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text-gray); vertical-align: middle; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: var(--bg-light); }
.comparison-table td:first-child { font-weight: 600; color: var(--navy); }
.comparison-table .check { color: var(--teal); font-weight: 700; }
.comparison-table .partial { color: var(--orange); font-weight: 600; }
.comparison-table .no { color: var(--text-light); }

/* 40. BRAND GRID */
.brand-grid { display: flex; flex-wrap: wrap; gap: 14px; margin: 20px 0; }
.brand-badge { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 10px 20px; font-size: 0.88rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
.brand-badge:hover { border-color: var(--teal); color: var(--teal); }
.brand-badge span { font-size: 0.75rem; font-weight: 400; color: var(--text-gray); }

/* 41. INFO BOX */
.info-box { background: rgba(11,122,110,0.06); border-left: 4px solid var(--teal); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 22px; margin: 24px 0; }
.info-box p { color: var(--text-dark); font-size: 0.92rem; line-height: 1.7; margin: 0; }
.info-box strong { color: var(--teal); }
.warning-box { background: rgba(245,130,26,0.07); border-left: 4px solid var(--orange); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; padding: 18px 22px; margin: 24px 0; }
.warning-box p { color: var(--text-dark); font-size: 0.92rem; line-height: 1.7; margin: 0; }

/* 42. NUMBERED STEPS (prose) */
.steps-numbered { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.step-item { display: flex; gap: 18px; align-items: flex-start; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: var(--white); font-weight: 800; font-size: 0.88rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.step-body h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.step-body p { font-size: 0.88rem; color: var(--text-gray); line-height: 1.65; margin: 0; }

/* 43. CONTENT CITY GRID */
.content-cities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; }
.content-city { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 14px; text-align: center; font-size: 0.83rem; font-weight: 600; color: var(--text-dark); transition: all 0.2s; }
.content-city a { color: inherit; }
.content-city:hover { border-color: var(--teal); color: var(--teal); }
.content-city.main-city { border-color: var(--teal); color: var(--teal); background: rgba(11,122,110,0.05); }
@media (max-width: 600px) { .content-cities { grid-template-columns: repeat(2, 1fr); } }

/* 44. USAGE SECTORS */
.sectors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 20px 0; }
.sector-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 14px; display: flex; align-items: flex-start; gap: 12px; transition: all 0.2s; }
.sector-item:hover { border-color: rgba(11,122,110,0.3); box-shadow: var(--shadow-sm); }
.sector-icon { font-size: 1.5rem; flex-shrink: 0; }
.sector-body h4 { font-size: 0.87rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.sector-body p { font-size: 0.8rem; color: var(--text-gray); line-height: 1.5; margin: 0; }
@media (max-width: 700px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .sectors-grid { grid-template-columns: 1fr; } }

/* 45. PRICE TABLE */
.price-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.88rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table thead th { background: var(--navy); color: var(--white); padding: 14px 18px; text-align: left; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; }
.price-table tbody td { padding: 13px 18px; border-bottom: 1px solid var(--border); color: var(--text-gray); vertical-align: middle; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:nth-child(even) td { background: var(--bg-light); }
.price-table tbody td:first-child { font-weight: 600; color: var(--navy); }
.price-table .price-cell { font-weight: 700; color: var(--teal); white-space: nowrap; }
.price-table .price-note { font-size: 0.78rem; color: var(--text-light); display: block; margin-top: 2px; }

/* 46. PRICE BOX (sidebar/inline) */
.price-box { background: linear-gradient(135deg, rgba(11,122,110,0.06) 0%, rgba(15,34,64,0.04) 100%); border: 1.5px solid rgba(11,122,110,0.2); border-radius: var(--radius); padding: 22px 24px; margin: 28px 0; }
.price-box-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.price-box-amount { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-box-amount span { font-size: 1rem; font-weight: 500; color: var(--text-gray); margin-left: 4px; }
.price-box-desc { font-size: 0.85rem; color: var(--text-gray); margin-top: 8px; line-height: 1.6; }
.price-box-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; padding: 10px 20px; background: var(--orange); color: var(--white); border-radius: 50px; font-size: 0.88rem; font-weight: 600; transition: all 0.2s; }
.price-box-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* 47. PRICE OVERVIEW SECTION */
.price-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 32px 0; }
.price-overview-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-overview-card-header { background: var(--navy); color: var(--white); padding: 14px 20px; font-weight: 700; font-size: 0.95rem; }
.price-note-bar { background: rgba(11,122,110,0.06); border-top: 1px solid var(--border); padding: 12px 20px; font-size: 0.78rem; color: var(--text-gray); }
@media (max-width: 768px) { .price-overview-grid { grid-template-columns: 1fr; } }
