/* ===== Frosted Holdings Mobilität | style.css ===== */

/* ==== CSS RESET & NORMALIZE ==== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F0F4F8;
  color: #1A2138;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: #1A2138;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #69B23F;
  outline: none;
}

/* ==== TYPOGRAPHY & FONT-FAMILY ==== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Roboto:wght@400;700&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  color: #1A2138;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.5px;
  margin-bottom: .8em;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, li, span, label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #1A2138;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 700;
  color: #1A2138;
}
.text-section > ul,
.content-wrapper > ul {
  padding-left: 1.1em;
  margin-bottom: 16px;
}
.text-section ul li,
.content-wrapper ul li {
  padding-left: 0.4em;
  margin-bottom: 10px;
  position: relative;
}
.text-section ul li:before,
.content-wrapper ul li:before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #69B23F;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

/* ==== CONTAINER & SECTION SPACING ==== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==== HEADER ==== */
header {
  background: #fff;
  box-shadow: 0 4px 18px rgba(26,33,56,0.04);
  position: relative;
  z-index: 13;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 0;
}
.logo img {
  max-height: 52px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-left: 32px;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #1A2138;
  padding: 2px 6px;
  transition: color .15s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.main-nav a:after {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background: #69B23F;
  border-radius: 2px;
  transition: width 0.2s;
  margin-top: 4px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.cta.primary,
.cta.secondary {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 13px 32px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-align: center;
  transition: background .18s, color .18s, box-shadow .19s;
  margin-left: 18px;
  outline: none;
  box-shadow: 0 2px 16px rgba(26,33,56,0.08);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cta.primary {
  background: #69B23F;
  color: #fff;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #1A2138;
  color: #fff;
  box-shadow: 0 6px 28px 0 rgba(26,33,56,0.13);
}
.cta.secondary {
  background: #fff;
  color: #69B23F;
  border: 2px solid #69B23F;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #69B23F;
  color: #fff;
  border-color: #1A2138;
  box-shadow: 0 6px 28px 0 rgba(26,33,56,0.08);
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  background: #fff;
  color: #1A2138;
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  position: fixed;
  top: 24px;
  right: 20px;
  z-index: 15;
  display: none;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(26,33,56,0.07);
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 3px solid #69B23F;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 30;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.33,1,.68,1);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #1A2138;
  font-size: 2rem;
  position: absolute;
  top: 22px;
  right: 24px;
  cursor: pointer;
  z-index: 32;
  padding: 4px 10px 4px 4px;
  border-radius: 8px;
  transition: background 0.14s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #F0F4F8;
  color: #69B23F;
}
.mobile-nav {
  margin: 86px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding: 44px 36px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #1A2138;
  padding: 10px 2px;
  width: 100%;
  border-radius: 3px;
  transition: background 0.13s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F0F4F8;
  color: #69B23F;
}

/* ==== HERO BLOCK ==== */
.hero {
  background: #1A2138;
  color: #fff;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 8px 34px 0 rgba(26,33,56,.10);
  padding: 56px 0 48px 0;
  margin-bottom: 48px;
}
.hero .container {
  align-items: stretch;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1,
.hero h2,
.hero h3 {
  color: #fff;
  text-shadow: 0 3px 18px rgba(26,33,56,.07);
}
.hero p {
  color: #F0F4F8;
  margin-bottom: 24px;
  font-size: 1.18rem;
  font-weight: 400;
}
.hero .cta.primary, .hero .cta.secondary {
  margin-left: 0;
}

/* ==== FLEX LAYOUT PATTERNS & CRITICAL CLASSES ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(26,33,56,0.07);
  margin-bottom: 20px;
  padding: 32px 24px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .19s, box-shadow .19s;
}
.card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 6px 36px 0 rgba(26,33,56,0.16);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/**** Feature, Service, List Blocks ****/
.feature-grid,
.feature-highlights,
.service-list,
.service-detail-list,
.feature-list,
.leasing-benefits,
.feature-icons,
.management-steps,
.consulting-steps,
.case-studies {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px 32px;
  margin: 38px 0 20px 0;
  align-items: stretch;
}
.feature-grid li, .feature-highlights li, .feature-icons li,
.service-list > div, .service-detail-list li, .feature-list li, .case-studies li{
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 14px rgba(26,33,56,0.10);
  flex: 1 1 240px;
  min-width: 220px;
  padding: 28px 22px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .16s;
}
.feature-grid li:hover, .feature-icons li:hover, .service-list>div:hover, .service-detail-list li:hover, .feature-list li:hover, .case-studies li:hover {
  box-shadow: 0 6px 34px 0 rgba(26,33,56,0.13);
  transform: translateY(-4px) scale(1.01);
}
.feature-grid li img, .feature-icons li img {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: #F0F4F8;
  padding: 7px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-list,
.service-detail-list {
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 32px 0;
}
.service-list > div, .service-detail-list li {
  min-width: 240px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  border-left: 4px solid #69B23F;
}
.service-list > div span, .service-detail-list li span {
  color: #69B23F;
  font-size: 1.13rem;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 6px;
}
.service-list > div a, .service-detail-list li a {
  margin-top: 11px;
  font-size: 1rem;
  color: #69B23F;
  text-decoration: underline;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .14s;
}
.service-list > div a:hover, .service-detail-list li a:hover { color: #1A2138; }

/**** List markers for ol steps ****/
.management-steps,
.consulting-steps {
  counter-reset: steps;
  flex-direction: column;
  align-items: flex-start;
}
.management-steps li, .consulting-steps li {
  position: relative;
  padding-left: 46px;
  margin-bottom: 12px;
}
.management-steps li:before, .consulting-steps li:before {
  counter-increment: steps;
  content: counter(steps);
  background: #69B23F;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}

/**** PRICING BOX for leasing, etc. ****/
.leasing-pricing {
  background: #E6F8E0;
  color: #1A2138;
  border-radius: 13px;
  padding: 16px 24px;
  margin: 22px 0 11px 0;
  font-weight: 500;
  font-size: 1.05rem;
}

/**** CONTACT DETAILS ****/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 26px 0;
  font-size: 1.1rem;
}
.contact-details a {
  color: #69B23F;
  text-decoration: underline;
}
.contact-details strong {
  color: #1A2138;
}

/* ==== TESTIMONIALS ==== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 8px 0;
}
.testimonial-card {
  background: #fff;
  color: #1A2138;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(26,33,56,0.10);
  padding: 20px 30px 18px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  max-width: 440px;
  flex: 1 1 320px;
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #1A2138;
  font-size: 1.06rem;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: #69B23F;
  font-weight: bold;
}
.testimonial-card div:last-child {
  color: #69B23F;
  font-size: 1.15rem;
  font-family: 'Oswald', sans-serif;
}

/* ==== FOOTER ==== */
footer {
  background: #1A2138;
  color: #fff;
  padding: 32px 0 0 0;
  margin-top: 64px;
  border-radius: 44px 44px 0 0;
  box-shadow: 0 -4px 28px rgba(26,33,56,.10);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 0px;
}
.footer-nav a {
  color: #fff;
  text-decoration: underline;
  transition: color .13s;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
}
.footer-nav a:hover { color: #69B23F; }
.footer-contact {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F0F4F8;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact strong {
  color: #fff;
}
footer img {
  max-width: 55px;
  margin-bottom: 9px;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #1A2138;
  border-top: 3px solid #69B23F;
  box-shadow: 0 -2px 16px rgba(26,33,56,0.09);
  z-index: 98;
  padding: 22px 28px 18px 32px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: cookieSlideIn 0.58s cubic-bezier(.33,1,.68,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 22px;
  padding: 9px 24px;
  border: none;
  margin-left: 0;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(26,33,56,0.10);
  transition: background .17s, color .14s;
  text-transform: uppercase;
}
.cookie-banner .btn-accept {
  background: #69B23F;
  color: #fff;
}
.cookie-banner .btn-accept:hover,
.cookie-banner .btn-accept:focus {
  background: #1A2138;
  color: #fff;
}
.cookie-banner .btn-reject {
  background: #fff;
  color: #1A2138;
  border: 2px solid #1A2138;
}
.cookie-banner .btn-reject:hover,
.cookie-banner .btn-reject:focus {
  background: #1A2138;
  color: #fff;
}
.cookie-banner .btn-settings {
  background: #fff;
  color: #69B23F;
  border: 2px solid #69B23F;
}
.cookie-banner .btn-settings:hover,
.cookie-banner .btn-settings:focus {
  background: #69B23F;
  color: #fff;
  border-color: #1A2138;
}

/* ==== Cookie Modal ==== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 110;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,33,56,0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalFadeIn .35s cubic-bezier(.33,1,.68,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1A2138;
  border-radius: 20px;
  box-shadow: 0 8px 36px rgba(26,33,56,0.15);
  width: 96vw;
  max-width: 410px;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  animation: modalZoomIn .27s cubic-bezier(.33,1,.68,1);
}
@keyframes modalZoomIn {
  from { transform: scale(0.92); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 17px;
  background: none;
  border: none;
  font-size: 1.48rem;
  color: #1A2138;
  cursor: pointer;
  border-radius: 6px;
  padding: 3px 8px 5px 5px;
  transition: background .13s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #F0F4F8;
  color: #69B23F;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.cookie-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  font-size: 1.02rem;
}
.cookie-option input[type="checkbox"] {
  accent-color: #69B23F;
  width: 23px;
  height: 23px;
}
.cookie-option.essential input[type="checkbox"] {
  accent-color: #ccc;
}
.cookie-option.essential label {
  color: #aaa;
  font-size: 0.99rem;
}

.cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-modal-actions button {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
}

/**** SPECIAL PAGES (privacy, legal, thanks) ****/
.text-section {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 14px rgba(26,33,56,0.07);
  padding: 38px 28px;
  margin-bottom: 34px;
  width: 100%;
}
.text-section h1,
.text-section h2,
.text-section h3 {
  color: #1A2138;
}

/**** BACKGROUND GEOMETRIC DECORATIONS ****/
section {
  position: relative;
  z-index: 1;
}
/* Add subtle triangles, circles for bold modernist vibe */
section:before {
  content: '';
  position: absolute;
  left: -48px;
  top: -48px;
  width: 88px;
  height: 88px;
  background: rgba(105,178,63,0.06);
  border-radius: 48px 0 45px 88px;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.5px);
}
section:after {
  content: '';
  position: absolute;
  right: -44px;
  bottom: -47px;
  width: 66px;
  height: 66px;
  background: rgba(26,33,56,0.09);
  border-radius: 0 66px 33px 44px;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.5px);
}

/**** SHADOWS & HOVER EFFECTS ****/
.card, .text-section, .testimonial-card, .feature-grid li, .service-list > div, .service-detail-list li, .feature-icons li {
  transition: box-shadow .18s, transform .16s;
}
.card:hover, .feature-grid li:hover, .service-list>div:hover, .testimonial-card:hover, .feature-icons li:hover {
  box-shadow: 0 6px 34px 0 rgba(26,33,56,0.13);
  transform: translateY(-4px) scale(1.01);
}

/**** TRANSITIONS ****/
button, a.cta, .card, .feature-grid li, .feature-icons li {
  transition: box-shadow .18s, transform .16s, background .13s, color .13s;
}

/**** RESPONSIVE DESIGN ==== */
@media (max-width: 1140px) {
  .container {
    max-width: 96vw;
  }
  .main-nav { gap: 20px; }
}
@media (max-width: 900px) {
  header > .container { flex-direction: row; height: auto; flex-wrap: wrap; }
  .main-nav { gap: 12px; font-size: 1rem; }
}
@media (max-width: 768px) {
  .container { padding: 0 11px; }
  header > .container {
    flex-direction: row;
    flex-wrap: wrap;
    height: 68px;
    padding-top: 8px;
  }
  .main-nav {
    display: none !important;
  }
  .cta.primary,
  .cta.secondary {
    font-size: 1rem;
    padding: 11px 18px;
    margin-left: 8px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
  .feature-grid,
  .feature-highlights,
  .feature-icons,
  .service-list,
  .service-detail-list,
  .feature-list,
  .leasing-benefits,
  .case-studies {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li,
  .feature-highlights li,
  .feature-icons li,
  .service-list > div,
  .service-detail-list li,
  .feature-list li, .case-studies li {
    min-width: 0;
    padding: 20px 12px;
  }
  .card-container {
    gap: 14px;
    flex-direction: column;
  }
  .hero {
    padding: 42px 0 31px 0;
    border-radius: 0 0 33px 33px;
    margin-bottom: 24px;
  }
  .section {
    margin-bottom: 36px;
    padding: 30px 0.5em;
  }
  .content-wrapper {
    gap: 9px;
  }
  .testimonial-slider, .testimonial-card {
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
    padding: 17px 9px;
  }
  .testimonial-card {
    padding: 15px 10px 10px 15px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 6px;
  }
  footer .container {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 15px 9px 10px 9px;
  }
}
@media (max-width: 510px) {
  h1 {font-size: 1.6rem;}
  h2 {font-size: 1.1rem;}
  .hero .container, .container { padding: 0 4px; }
  .cookie-modal { padding: 13px 7px 17px 7px; }
}

/* ==== ACCESSIBILITY ==== */
:focus {
  outline: 2px solid #69B23F;
  outline-offset: 2px;
}

/* ==== Z-INDEX LAYERING ==== */
header, .mobile-menu, .mobile-menu-toggle,
.cookie-banner, .cookie-modal-overlay {
  z-index: 98;
}

/* ==== UTILITIES ==== */
.hidden { display: none !important; }

/* ==== END OF style.css ==== */
