/* Stadtwerke Lindenfels – Hauptwebsite */
/* Stil angelehnt an Variante 3 (ca. 2014–2016, frühes Flat Design) */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background: #f5f5f2;
  line-height: 1.55;
}

a {
  color: #1a7a3a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #0f5528;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 56px 0;
}

.section-gray {
  background: #f0f0ec;
  border-top: 1px solid #e0e0da;
  border-bottom: 1px solid #e0e0da;
}

/* ========================
   HEADER
======================== */

#site-header {
  background: #fff;
  border-bottom: 3px solid #1a7a3a;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 5px rgba(0,0,0,0.09);
}

.header-flex {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 16px;
}

.logo-wrap {
  flex-shrink: 0;
  text-decoration: none !important;
}

/* Navigation */

#main-nav {
  flex: 1;
}

#main-nav ul {
  list-style: none;
  display: flex;
}

#main-nav ul li {
  position: relative;
}

#main-nav ul li a {
  display: block;
  padding: 9px 15px;
  color: #444;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.15px;
  line-height: 1.2;
}

#main-nav ul li a:hover,
#main-nav ul li a.nav-active {
  color: #1a7a3a;
  text-decoration: none;
}

#main-nav ul li a.nav-active {
  border-bottom: 2px solid #1a7a3a;
}

/* Dropdown */

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #d8e8d8;
  border-top: 2px solid #1a7a3a;
  min-width: 200px;
  z-index: 300;
  box-shadow: 0 4px 14px rgba(0,0,0,0.11);
}

.has-drop:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 10px 16px;
  color: #333;
  font-size: 13px;
  border-bottom: 1px solid #f0f5f0;
  font-weight: 400;
}

.dropdown a:hover {
  background: #f5fbf5;
  color: #1a7a3a;
  text-decoration: none;
}

.dropdown a:last-child {
  border-bottom: none;
}

/* Header actions */

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-portal-header {
  background: #1a7a3a;
  color: #fff !important;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 2px;
  text-decoration: none !important;
  white-space: nowrap;
  letter-spacing: 0.1px;
}

.btn-portal-header:hover {
  background: #125a2a;
}

/* Burger */

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid #ccc;
  padding: 7px 9px;
  cursor: pointer;
  border-radius: 2px;
  width: 38px;
  height: 38px;
}

.burger span {
  display: block;
  height: 2px;
  background: #555;
  border-radius: 1px;
  transition: background 0.15s;
}

.burger:hover span {
  background: #1a7a3a;
}

/* ========================
   HERO
======================== */

#hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d3d1a 0%, #1a6030 40%, #2d8a3a 75%, #4db848 100%);
  z-index: 0;
}

.hero-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 48px;
}

.hero-text {
  max-width: 600px;
}

.hero-label {
  display: inline-block;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: #b8ecc8;
  font-size: 12px;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 18px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.hero-sub {
  font-size: 15px;
  color: #aae0ba;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #e8a000;
  color: #1a0800 !important;
  padding: 12px 26px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 2px;
  text-decoration: none !important;
  letter-spacing: 0.1px;
}

.btn-primary:hover {
  background: #d09000;
}

.btn-secondary {
  background: rgba(255,255,255,0.10);
  color: #fff !important;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.35);
  text-decoration: none !important;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.18);
}

/* Hero claim bar */

.hero-claim-bar {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.22);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.claim-items {
  display: flex;
  align-items: center;
  padding: 18px 24px;
}

.claim-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.claim-num {
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.claim-label {
  font-size: 10.5px;
  color: #90d8a0;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.claim-divider {
  width: 1px;
  height: 34px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

/* ========================
   SCHNELLZUGRIFF
======================== */

#quick-bar {
  background: #fff;
  border-bottom: 2px solid #e0e8e0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.qbar-inner {
  display: flex;
  align-items: stretch;
}

.qbar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 12px;
  color: #444;
  font-size: 13px;
  font-weight: 600;
  border-right: 1px solid #eaeeea;
  text-decoration: none !important;
  flex: 1;
  transition: background 0.12s, color 0.12s;
}

.qbar-item:hover {
  background: #f5fbf5;
  color: #1a7a3a;
}

.qbar-item:last-child {
  border-right: none;
}

.qbar-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.qbar-highlight {
  background: #1a7a3a;
  color: #fff !important;
}

.qbar-highlight .qbar-icon {
  stroke: #fff;
}

.qbar-highlight:hover {
  background: #125a2a;
  color: #fff !important;
}

/* ========================
   LEISTUNGEN / KARTEN
======================== */

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header h2 {
  font-size: 26px;
  color: #1a3a2a;
  margin-bottom: 8px;
  font-weight: 700;
}

.section-sub {
  color: #666;
  font-size: 14px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: #fff;
  border: 1px solid #d4e4d4;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
}

.service-card:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.11);
}

.card-stripe {
  height: 4px;
  flex-shrink: 0;
}

.stripe-strom  { background: #e8a000; }
.stripe-gas    { background: #c85000; }
.stripe-waerme { background: #dc2020; }
.stripe-wasser { background: #1070c8; }

.card-body {
  padding: 22px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
}

.card-body h3 {
  font-size: 17px;
  color: #1a3a2a;
  margin-bottom: 8px;
  font-weight: 700;
}

.card-body p {
  font-size: 12.5px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 14px;
}

.card-list {
  list-style: none;
  margin-bottom: 16px;
  flex: 1;
}

.card-list li {
  font-size: 12px;
  color: #555;
  padding: 4px 0;
  border-bottom: 1px dashed #dce8dc;
  padding-left: 14px;
  position: relative;
}

.card-list li::before {
  content: '▸';
  color: #1a7a3a;
  position: absolute;
  left: 0;
}

.card-list li:last-child {
  border-bottom: none;
}

.card-link {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: #1a7a3a;
  margin-top: auto;
}

.card-link:hover {
  color: #0f5528;
}

/* ========================
   KUNDENPORTAL TEASER
======================== */

.portal-wrap {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.portal-intro {
  width: 280px;
  flex-shrink: 0;
}

.portal-intro h2 {
  font-size: 22px;
  color: #1a3a2a;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.portal-intro p {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 20px;
}

.btn-portal-big {
  display: inline-block;
  background: #1a7a3a;
  color: #fff !important;
  padding: 11px 22px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 2px;
  text-decoration: none !important;
}

.btn-portal-big:hover {
  background: #125a2a;
}

/* Portal Features Grid */

.portal-features {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: #d8e8d8;
  border: 1px solid #d8e8d8;
  border-radius: 2px;
  overflow: hidden;
}

.pf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  text-decoration: none !important;
  transition: background 0.12s;
}

.pf-item:hover {
  background: #f5fbf5;
}

.pf-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #1a7a3a;
}

.pf-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.pf-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pf-text strong {
  font-size: 13px;
  color: #1a3a2a;
  font-weight: 600;
}

.pf-text span {
  font-size: 11.5px;
  color: #777;
}

.pf-arrow {
  color: #aaa;
  font-size: 16px;
  flex-shrink: 0;
}

.pf-item:hover .pf-arrow {
  color: #1a7a3a;
}

/* ========================
   NACHHALTIGKEIT
======================== */

.section-green {
  background: linear-gradient(135deg, #1a5a2a 0%, #2d7a3a 100%);
}

.nachhaltig-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nach-text {
  flex: 1;
}

.nach-label {
  display: inline-block;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: #90d8a0;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.nach-text h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 700;
}

.nach-text p {
  font-size: 14px;
  color: #a8ddb8;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 540px;
}

.btn-white {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.45);
  color: #fff !important;
  padding: 10px 26px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 2px;
  text-decoration: none !important;
}

.btn-white:hover {
  background: rgba(255,255,255,0.22);
}

.nach-deco {
  flex-shrink: 0;
  opacity: 0.65;
}

/* ========================
   KONTAKT-LEISTE
======================== */

.kontakt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.kk-item {
  background: #fff;
  border: 1px solid #d4e4d4;
  border-top: 3px solid #1a7a3a;
  padding: 22px 18px;
  border-radius: 0 0 2px 2px;
}

.kk-item.kk-stoerung {
  border-top-color: #c02020;
}

.kk-icon {
  width: 28px;
  height: 28px;
  color: #1a7a3a;
  margin-bottom: 12px;
}

.kk-stoerung .kk-icon {
  color: #c02020;
}

.kk-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}

.kk-item h3 {
  font-size: 15px;
  color: #1a3a2a;
  margin-bottom: 8px;
  font-weight: 700;
}

.kk-item p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 4px;
}

.kk-sub {
  font-size: 11.5px !important;
  color: #888 !important;
  margin-top: 6px !important;
}

.kk-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #1a7a3a;
}

.kk-link-alert {
  color: #c02020;
}

.kk-link:hover {
  text-decoration: underline;
}

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

#site-footer {
  background: #182a18;
  margin-top: 0;
}

.footer-top {
  padding: 44px 0;
}

.footer-cols {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.fc {
  flex: 1;
  padding: 0 22px 0 0;
  margin-right: 22px;
  border-right: 1px solid #243824;
}

.fc:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.fc-brand {
  flex: 1.3;
}

.fc-logo {
  margin-bottom: 8px;
}

.fc-tagline {
  font-size: 12px;
  color: #4db848;
  font-style: italic;
  margin-bottom: 14px;
}

.fc-addr {
  font-size: 12px;
  color: #688868;
  line-height: 1.75;
  font-style: normal;
}

.fc-addr a {
  color: #688868;
}

.fc-addr a:hover {
  color: #c8e8c8;
  text-decoration: none;
}

.fc h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #4db848;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 1px solid #243824;
  font-weight: 700;
}

.fc ul {
  list-style: none;
}

.fc ul li {
  margin-bottom: 7px;
}

.fc ul li a {
  color: #688868;
  font-size: 12.5px;
}

.fc ul li a:hover {
  color: #c8e8c8;
  text-decoration: none;
}

.fc-portal-link {
  margin-top: 18px;
}

.btn-portal-footer {
  display: inline-block;
  background: rgba(77,184,72,0.15);
  border: 1px solid #4db848;
  color: #4db848 !important;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
  text-decoration: none !important;
}

.btn-portal-footer:hover {
  background: rgba(77,184,72,0.25);
  color: #7de878 !important;
}

.footer-bottom {
  background: #0e1e0e;
  border-top: 1px solid #243824;
  padding: 12px 0;
}

.fbot-inner {
  display: flex;
  justify-content: space-between;
  color: #486848;
  font-size: 11px;
  flex-wrap: wrap;
  gap: 6px;
}

.fbot-inner a {
  color: #486848;
  font-size: 11px;
}

.fbot-inner a:hover {
  color: #90c090;
  text-decoration: none;
}

/* ========================
   E-MAIL SCHUTZ
======================== */

.e-guard {
  display: none;
  font-size: 0;
  width: 0;
  height: 0;
  overflow: hidden;
  position: absolute;
}

/* ========================
   UNTERSEITEN – PAGE HERO
======================== */

.page-hero {
  background: linear-gradient(135deg, #0d3d1a 0%, #2d7a3a 100%);
  padding: 38px 0 32px;
  border-bottom: 3px solid #1a7a3a;
}

.page-hero h1 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb li {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.breadcrumb li + li::before {
  content: '/';
  margin-right: 6px;
  color: rgba(255,255,255,0.3);
}

.breadcrumb a {
  color: rgba(255,255,255,0.65);
}

.breadcrumb a:hover {
  color: #fff;
  text-decoration: none;
}

/* ========================
   UNTERSEITEN – LAYOUT
======================== */

.sub-layout {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.sub-main {
  flex: 1;
  min-width: 0;
}

.sub-sidebar {
  width: 268px;
  flex-shrink: 0;
}

/* ========================
   CONTENT SEKTIONEN
======================== */

.content-section {
  background: #fff;
  border: 1px solid #d4e4d4;
  border-radius: 2px;
  padding: 28px 30px;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.content-section h2 {
  font-size: 20px;
  color: #1a3a2a;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8ede8;
  font-weight: 700;
}

.content-section h3 {
  font-size: 15px;
  color: #1a3a2a;
  margin: 18px 0 8px;
  font-weight: 700;
}

.content-section p {
  font-size: 13.5px;
  color: #444;
  line-height: 1.65;
  margin-bottom: 12px;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.content-section ul,
.content-section ol {
  margin: 8px 0 14px 20px;
  font-size: 13.5px;
  color: #444;
  line-height: 1.7;
}

.content-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin: 12px 0;
}

.content-section th {
  background: #f0f5f0;
  color: #1a3a2a;
  text-align: left;
  padding: 8px 12px;
  border: 1px solid #d4e4d4;
  font-weight: 700;
  font-size: 12px;
}

.content-section td {
  padding: 8px 12px;
  border: 1px solid #e0eae0;
  color: #444;
  vertical-align: top;
}

.content-section tr:nth-child(even) td {
  background: #f8fbf8;
}

/* Info-Box */
.info-box {
  background: #eaf5ea;
  border: 1px solid #b8d8b8;
  border-left: 4px solid #1a7a3a;
  padding: 14px 16px;
  margin: 14px 0;
  border-radius: 0 2px 2px 0;
}

.info-box p {
  font-size: 13px !important;
  color: #1a3a2a !important;
  margin-bottom: 0 !important;
  line-height: 1.55 !important;
}

/* Hinweis-Box */
.hint-box {
  background: #fff8e8;
  border: 1px solid #e8d8a0;
  border-left: 4px solid #e8a000;
  padding: 14px 16px;
  margin: 14px 0;
  border-radius: 0 2px 2px 0;
}

.hint-box p {
  font-size: 13px !important;
  color: #5a4000 !important;
  margin-bottom: 0 !important;
  line-height: 1.55 !important;
}

/* ========================
   SIDEBAR WIDGETS
======================== */

.sidebar-widget {
  background: #fff;
  border: 1px solid #d4e4d4;
  border-radius: 2px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.sw-header {
  background: #1a7a3a;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sw-header-amber {
  background: #b87800;
}

.sw-body {
  padding: 14px;
  font-size: 13px;
  color: #444;
  line-height: 1.55;
}

.sw-body p {
  margin-bottom: 10px;
}

.sw-body p:last-child {
  margin-bottom: 0;
}

.sw-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sw-body ul li {
  padding: 6px 0;
  border-bottom: 1px dashed #e0e8e0;
  font-size: 12.5px;
}

.sw-body ul li:last-child {
  border-bottom: none;
}

.sw-body ul li a {
  color: #1a7a3a;
}

.btn-portal-widget {
  display: block;
  background: #1a7a3a;
  color: #fff !important;
  text-align: center;
  padding: 9px 12px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 2px;
  text-decoration: none !important;
  margin-top: 10px;
}

.btn-portal-widget:hover {
  background: #125a2a;
}

.btn-portal-widget-amber {
  background: #c88000;
}

.btn-portal-widget-amber:hover {
  background: #a06000;
}

/* ========================
   PRESSE / NEWS
======================== */

.press-entry {
  background: #fff;
  border: 1px solid #d4e4d4;
  border-radius: 2px;
  padding: 22px 24px;
  margin-bottom: 14px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.press-meta {
  font-size: 11.5px;
  color: #888;
  margin-bottom: 6px;
}

.press-entry h2 {
  font-size: 16px;
  color: #1a3a2a;
  margin-bottom: 8px;
  font-weight: 700;
}

.press-entry p {
  font-size: 13.5px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}

.press-entry p:last-child {
  margin-bottom: 0;
}

/* ========================
   KONTAKT
======================== */

.kontakt-map-placeholder {
  background: #e8f0e8;
  border: 1px solid #c8d8c8;
  border-radius: 2px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a9a6a;
  font-size: 13px;
  margin-bottom: 0;
}

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

@media (max-width: 1024px) {
  .portal-wrap {
    gap: 32px;
  }
  .portal-intro {
    width: 240px;
  }
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kontakt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portal-wrap {
    flex-direction: column;
  }
  .portal-intro {
    width: 100%;
  }
  .portal-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .nachhaltig-inner {
    gap: 28px;
  }
  .qbar-item span:not(.qbar-icon) {
    display: none;
  }
  .qbar-item {
    padding: 15px 8px;
  }
  .burger {
    display: flex;
  }
  #main-nav {
    display: none;
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid #1a7a3a;
    z-index: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  #main-nav.nav-open {
    display: block;
  }
  #main-nav ul {
    flex-direction: column;
  }
  #main-nav ul li a {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f5f0;
  }
  #main-nav ul li a.nav-active {
    border-bottom: 1px solid #f0f5f0;
    color: #1a7a3a;
  }
  .dropdown {
    position: static;
    display: block;
    border: none;
    border-top: none;
    box-shadow: none;
    background: #f8fbf8;
  }
  .dropdown a {
    padding-left: 32px;
  }
  .footer-cols {
    flex-wrap: wrap;
    gap: 24px;
  }
  .fc {
    flex: 1 1 40%;
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    border-bottom: 1px solid #243824;
    padding-bottom: 20px;
  }
  .fc:last-child {
    border-bottom: none;
  }
}

@media (max-width: 620px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .kontakt-grid {
    grid-template-columns: 1fr;
  }
  .portal-features {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 30px;
  }
  .claim-items {
    flex-wrap: wrap;
    gap: 12px;
  }
  .claim-divider {
    display: none;
  }
  .claim-item {
    flex: 0 0 45%;
  }
  .nachhaltig-inner {
    flex-direction: column;
  }
  .nach-deco {
    display: none;
  }
  .fc {
    flex: 1 1 100%;
  }
}
