/* ========================================================
   AutoWahl München – INDUSTRIAL MODERN – Global Styles
   ======================================================== */
/* CSS RESET & NORMALIZE */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #181e26;
  color: #f5f5f5;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #238B5B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,a:focus {
  color: #ECEBFF;
  text-decoration: underline;
}
ul,ol {
  padding-left: 1.25em;
  margin-bottom: 20px;
}
strong,b {
  font-weight: 700;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th,td {
  padding: 14px 16px;
  border-bottom: 1px solid #303b49;
}
th {
  background: #22314C;
  color: #f5f5f5;
  font-weight: 600;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #ECEBFF;
  margin-bottom: 12px;
}
h1 { font-size: 2.5rem; margin-bottom: 22px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; color: #E0E5F0; }
h4 { font-size: 1.15rem; }
.subheadline {
  font-size: 1.2rem;
  color: #C6CED8;
  margin-bottom: 18px;
}

/* =======================
   BRAND COLOR SCHEME
   ======================= */
:root {
  --brand-primary: #22314C;
  --brand-secondary: #238B5B;
  --brand-accent: #F5F5F5;
  --brand-bg: #181e26;
  --brand-surface: #232C3B;
  --brand-card: #222936;
  --brand-border: #2f3948;
  --brand-text: #ECEBFF;
  --brand-muted: #C6CED8;
  --brand-shadow: rgba(30,35,40,0.14);
  --brand-metal: #BFC9D2;
}

/* ========================
   CONTAINER & LAYOUT
   ======================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-bg);
}

/* FLEX UTILITY CLASSES – Only Flex, No Grid! */
.card-container, .features-grid, .usp-grid, .service-list, .step-timeline, .faq-list, .content-grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container {
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-card);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--brand-shadow);
  border: 1.5px solid var(--brand-border);
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F5F5F5;
  color: #1A202A !important;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(34,45,54,0.08);
  margin-bottom: 28px;
  min-width: 250px;
  border-left: 4px solid var(--brand-secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========= RESPONSIVE FLEX ADJUSTMENTS ========== */
@media (max-width: 1100px) {
  .container { max-width: 100%; }
}
@media (max-width: 900px){
  .features-grid,
  .usp-grid,
  .service-list,
  .step-timeline,
  .faq-list,
  .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .features-grid,
  .usp-grid,
  .service-list,
  .step-timeline,
  .faq-list,
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper, .section {
    padding: 28px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}

/* ==========================
   HEADER & NAVIGATION
   ========================== */
header {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--brand-surface);
  box-shadow: 0 3px 16px var(--brand-shadow);
  z-index: 50;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  min-height: 80px;
  padding: 12px 20px;
}
header img {
  height: 42px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #F5F5F5;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 8px;
  transition: color 0.15s;
}
nav a:hover, nav a:focus {
  color: var(--brand-secondary);
}
.cta-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: linear-gradient(95deg,#22314C 80%,#238B5B 100%);
  color: #fff !important;
  border: none;
  border-radius: 6px;
  padding: 11px 26px;
  font-size: 1.05rem;
  margin-left: 16px;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(15,25,35,0.16);
  box-shadow: 0 2px 10px 0 rgba(28,35,42,0.08);
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
  outline: none;
  cursor: pointer;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(115deg,#238B5B 70%,#22314C 100%);
  box-shadow: 0 4px 20px 0 rgba(34,49,76,0.13);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* =========================
   MOBILE NAVIGATION
   ========================= */
.mobile-menu-toggle {
  display: none;
  position: relative;
  background: var(--brand-primary);
  color: #fff;
  font-size: 2.1rem;
  border-radius: 7px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  z-index: 101;
  border: 1px solid #2f3948;
  box-shadow: 0 2px 10px rgba(34,49,76,0.17);
  transition: background 0.17s;
}
.mobile-menu-toggle:active {
  background: var(--brand-secondary);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #232C3B;
  z-index: 200;
  padding-top: 58px;
  transition: transform 0.4s cubic-bezier(0.83,0.13,0.13,0.93);
  transform: translateX(-100%);
  box-shadow: 0 6px 28px 0 rgba(34,49,76,0.23);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  animation: slideInMenu 0.39s cubic-bezier(.78,.08,.14,.98) 1;
}
@keyframes slideInMenu {
  0%   { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0);     opacity: 1; }
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 26px;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  z-index: 201;
  border: none;
  border-radius: 100px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 18px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: var(--brand-accent);
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 12px 0;
  transition: color 0.15s, background 0.13s;
  border-radius: 6px;
  width: 100%;
  outline: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--brand-secondary);
  color: #fff;
}
@media (max-width: 970px) {
  header .container nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 970px) {
  .mobile-menu {
    display: flex;
    transform: translateX(-100%);
  }
  .mobile-menu.active {
    transform: translateX(0);
    display: flex;
  }
}

/* ===============================
   HERO / PRIMARY SECTIONS
   =============================== */
.section:first-of-type {
  margin-top: 12px;
  border-bottom: 1.5px solid #2f3948;
  box-shadow: 0px 6px 22px 0 rgba(20,25,32,0.12);
}

/* ========================
   CARDS & FEATURES
   ======================== */
.features-grid > div, .usp-grid > div, .service-list > div {
  background: var(--brand-card);
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(44,58,78,0.13);
  border: 1.5px solid var(--brand-border);
  min-width: 220px;
  padding: 26px 18px 23px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 220px;
  position: relative;
  transition: box-shadow 0.18s, border 0.14s, transform 0.15s;
}
.features-grid > div:hover, .usp-grid > div:hover, .service-list > div:hover {
  box-shadow: 0 8px 36px 0 rgba(44,58,78,0.23);
  border-color: var(--brand-secondary);
  transform: translateY(-4px) scale(1.02);
}
.features-grid img, .service-list img, .usp-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  filter: grayscale(85%) brightness(1.25);
}
.service-price {
  display: block;
  align-self: flex-end;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-secondary);
  background: #11161e;
  border-radius: 6px;
  padding: 2px 10px;
  margin-top: 4px;
}

/* ========= TESTIMONIALS ========= */
.testimonial-card {
  background: #F5F5F5;
  color: #1A202A !important;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(34,45,54,0.08);
  margin-bottom: 28px;
  min-width: 250px;
  border-left: 4px solid var(--brand-secondary);
  padding: 30px 26px 26px 23px;
  font-size: 1.1rem;
  position: relative;
}
.testimonial-card strong {
  color: #22314C;
  font-weight: 700;
  margin-top: 10px;
}
.stars {
  color: #FBC70B;
  letter-spacing: 2px;
  font-size: 1.2rem;
  margin-top: 6px;
  text-shadow: 0 1px 1px #dab4024e;
}

/* ========= FAQ (process.html) ========= */
.faq-list > div {
  background: #20283e;
  border-radius: 9px;
  border: 1.5px solid #283145;
  padding: 24px 18px;
  margin-bottom: 16px;
  color: #ECEBFF;
  font-size: 1.02rem;
  box-shadow: 0 3px 12px 0 rgba(34,49,76,0.09);
  transition: border 0.13s;
}
.faq-list > div:hover {
  border-color: #238B5B;
}

/* ============= TIMELINE (process) ============= */
.step-timeline {
  gap: 30px;
}
.step-timeline > div {
  flex: 1 1 240px;
  background: #242e3a;
  border-radius: 9px;
  border-left: 4px solid var(--brand-secondary);
  padding: 28px 18px;
  box-shadow: 0 3px 18px 0 rgba(34,49,76,0.08);
  transition: border 0.16s;
  margin-bottom: 10px;
}

/* =============== PRICING TABLE =============== */
.price-table {
  border-radius: 11px;
  background: var(--brand-card);
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: 0 3px 18px 0 rgba(34,49,76,0.10);
}
.price-table th, .price-table td {
  font-size: 1rem;
  color: #E3E9F0;
  background: transparent;
  border-bottom: 1px solid #273244;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table th {
  background: #22314C;
  color: #fff;
  font-weight: 700;
}

.no-hidden-costs {
  background: #16321d;
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--brand-accent);
  border: 2px solid #238B5B;
  font-size: 1.05rem;
  margin-top: 14px;
}

/* ========== CONTACT DETAILS ========== */
.contact-details, .contact-short-info {
  background: #222936;
  color: var(--brand-accent);
  padding: 18px 13px 14px 18px;
  border-radius: 7px;
  margin-top: 12px;
  font-size: 1.08rem;
  border: 1.5px solid #293644;
  box-shadow: 0 2px 9px rgba(34,49,76,0.11);
}
.contact-details a {
  color: var(--brand-secondary);
}

/* ================ FOOTER ================ */
footer {
  background: #232c3b;
  color: var(--brand-metal);
  padding: 32px 0 18px 0;
  font-size: 0.98rem;
  margin-top: 60px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}
.footer-wrapper img {
  height: 44px;
  margin-bottom: 9px;
}
.footer-menu {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: #C6CED8;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.13s;
}
.footer-menu a:hover {
  color: var(--brand-secondary);
}
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}
.social-icons img {
  height: 24px;
  filter: grayscale(60%) opacity(0.7);
  transition: filter 0.15s;
}
.social-icons img:hover {
  filter: grayscale(0%) opacity(1) drop-shadow(0 2px 7px #238B5B33);
}
@media (max-width: 700px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* =============== MEDIA QUERIES =============== */
@media (max-width: 600px) {
  .section { padding: 20px 0; }
  .container { padding: 0 10px; }
  .price-table th, .price-table td { font-size: 0.97rem; }
  .testimonial-card { padding: 22px 13px; font-size: 1rem; }
  .features-grid > div, .usp-grid > div, .service-list > div, .step-timeline > div {
    min-width: 0;
    width: 100%;
    padding: 18px 7px;
  }
}

/* ============================
   COOKIE CONSENT BANNER
   ============================ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 8000;
  background: #222936;
  color: #F5F5F5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 19px 14px 16px 14px;
  box-shadow: 0 -3px 18px 0 rgba(25,35,48,0.17);
  border-top: 2.5px solid #238B5B;
  animation: fadeInCookie 0.96s ease 1;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(100%);} 
  to   { opacity: 1; transform: translateY(0);}
}
.cookie-consent-banner p {
  color: #ECEBFF;
  font-size: 1rem;
  margin-bottom: 9px;
  text-align: center;
}
.cookie-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 6px;
}
.cookie-btn {
  background: linear-gradient(98deg,#238B5B 70%,#22314C 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.19s, transform 0.16s;
  box-shadow: 0 1px 4px 0 rgba(34,49,76,0.13);
}
.cookie-btn.settings {
  background: #2f3948;
  color: #F5F5F5;
  border: 1.5px solid #238B5B;
  padding: 8px 18px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: linear-gradient(115deg,#22314C 70%,#238B5B 100%);
  color: #fff;
  transform: translateY(-1px) scale(1.03);
}
@media (max-width: 600px){
  .cookie-consent-banner .cookie-buttons { flex-direction: column; gap: 8px; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,25,28,0.46);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.35s cubic-bezier(.53,.09,.41,.96) 1;
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #222936;
  color: #fff;
  border-radius: 15px;
  padding: 34px 28px 26px 28px;
  max-width: 400px;
  width: 90vw;
  box-shadow: 0 7px 36px 0 rgba(34,49,76,0.23);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: cookieModalEnter 0.33s cubic-bezier(.68,.13,.28,.87);
  position: relative;
}
@keyframes cookieModalEnter {
  0% { transform: translateY(55px) scale(0.92); opacity:0; }
  100% { transform: none; opacity:1; }
}
.cookie-modal h3 {
  margin-bottom: 16px;
  color: #F5F5F5;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #283145;
  border-radius: 8px;
  padding: 11px 16px;
  color: #E0E5F0;
  font-size: 1.01rem;
}
.cookie-category.essential label { font-weight: 600; }
.cookie-category input[type=checkbox] {
  accent-color: #238B5B;
  width: 20px;
  height: 20px;
}
.cookie-modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 12px;
  background: transparent;
  color: #FFF;
  font-size: 1.6rem;
  border: none;
  border-radius: 35px;
  z-index: 9022;
  width: 36px; height: 36px;
  display: flex;align-items: center;justify-content: center;
  transition: background 0.13s;
}
.cookie-modal-close:hover,.cookie-modal-close:focus {
  background: #238B5B;
  color: #fff;
}

/* ============ ACCESSIBILITY ============ */
:focus {
  outline: 2px solid var(--brand-secondary);
  outline-offset: 2px;
}
[aria-current], [data-active] > a {
  position: relative;
  color: var(--brand-secondary) !important;
}
[aria-current]:after, [data-active] > a:after {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  background: var(--brand-secondary);
  border-radius: 8px;
  position: absolute;
  left: 0; bottom: -2px;
  z-index: 1;
}

/* =============== ANIMATIONS =============== */
.card, .features-grid > div, .testimonial-card, .usp-grid > div, .service-list > div, .step-timeline > div {
  transition: box-shadow 0.19s, border 0.14s, transform 0.14s;
  will-change: transform, box-shadow;
}
.card:hover,.features-grid > div:hover,.service-list > div:hover,.usp-grid > div:hover {
  box-shadow: 0 8px 34px 0 rgba(20,38,54,0.16);
  border-color: var(--brand-secondary);
  transform: translateY(-4px) scale(1.014);
}

/* ============= UTILITY CLASSES ============= */
.text-center {
  text-align: center;
}
@media (max-width: 480px){
  h1{font-size:1.33rem;}
  h2{font-size:1.08rem;}
}


/* =============== SCROLLBAR STYLING =============== */
::-webkit-scrollbar { width: 11px; background: #232c3b; }
::-webkit-scrollbar-thumb {
  background: #283145;
  border-radius: 13px;
  border: 2px solid #22314C;
}
::-webkit-scrollbar-thumb:hover {
  background: #238B5B;
}

/* ================= BRAND FONTS LOAD Fallback ========= */
@font-face{
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Montserrat Bold'),local('Montserrat-Bold'),url('https://fonts.gstatic.com/s/montserrat/v25/JTUQjIg1_i6t8kCHKm45xW4.woff2') format('woff2');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Roboto'),url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5Q.ttf') format('truetype');
}


/* ========== OVERRIDE HTML TABLES FOR MOBILE ============== */
@media (max-width: 600px) {
  .price-table, .price-table thead, .price-table tbody, .price-table tr, .price-table th, .price-table td {
    display: block;
    width: 100%;
  }
  .price-table thead { display: none; }
  .price-table tr {
    margin-bottom: 18px;
    border-radius: 10px;
    background: #2d3748;
    box-shadow: 0 2px 10px 0 rgba(30,36,47,0.08);
    padding: 10px 0;
  }
  .price-table td {
    padding: 8px 12px;
    border-bottom: none;
    font-size: 1rem;
    color: #ecebff;
    border: none;
    position: relative;
  }
  .price-table td::before {
    content: attr(data-label) ": ";
    color: #C6CED8;
    font-weight: bold;
    display: block;
    font-size: 0.95rem;
    margin-bottom: 3px;
  }
}

/* ====== PRINT ADJUSTMENTS ====== */
@media print {
  *, *:before, *:after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a, a:visited { text-decoration: underline;}
  .footer-wrapper, .header, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay {display: none !important;}
}

/* ======================== END ======================== */