/* FellFreunde CSS – Monochrome Sophisticated Style */
/* CSS Reset/Nomalize */
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, 
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 {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #181818;
  background: #fff;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
/* Typography: Sophisticated, Dramatic Contrast */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #121212;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
p, ul, ol, li {
  font-size: 1rem;
  color: #212121;
  margin-bottom: 12px;
}
strong, b {
  color: #151515;
  font-weight: 700;
}
a {
  color: #121212;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  background: #121212;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

/* Layout Containers */
.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  background: #fff;
  padding: 22px 0;
  border-bottom: 1px solid #e3e3e3;
  position: relative;
  z-index: 12;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #121212;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 4px;
  position: relative;
  transition: background 0.18s, color 0.18s;
  display: flex;
  align-items: center;
  gap: 7px;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #121212;
  color: #fff;
}
.main-nav .primary-cta {
  margin-left: auto;
  background: #121212;
  color: #fff;
  padding: 10px 22px;
  font-size: 1.07rem;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  text-decoration: none;
  transition: background 0.22s, box-shadow 0.22s;
  box-shadow: 0 3px 24px 0 rgba(20,20,20,0.09);
}
.main-nav .primary-cta:hover,
.main-nav .primary-cta:focus {
  background: #fff;
  color: #121212;
  border: 1px solid #111;
  box-shadow: 0 6px 18px rgba(30,30,30,0.13);
}
.main-nav img {
  width: 40px; height: 40px;
  object-fit: contain;
  margin-right: 10px;
}

/* Hamburger/Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #161616;
  cursor: pointer;
  z-index: 200;
  margin-left: auto;
  padding: 12px 12px;
  border-radius: 6px;
  transition: background 0.22s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #eee;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,22,22, 0.985);
  z-index: 2100;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  padding: 18px 22px 10px 22px;
  cursor: pointer;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 32px 30px 0 30px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 0;
  text-decoration: none;
  border-bottom: 1px solid #343434;
  text-align: left;
  transition: background 0.16s, color 0.16s;
  border-radius: 6px;
  margin-bottom: 2px;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #fff;
  color: #121212;
}

/* Hero Section */
.hero {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0 50px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  max-width: 680px;
}
.hero h1 {
  color: #121212;
  font-size: 2.5rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.hero p {
  color: #222;
  font-size: 1.15rem;
  margin-bottom: 28px;
}

/* Features Section/List */
.features {
  background: #fafafa;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.features .content-wrapper {
  gap: 18px;
}
.features ul {
  margin-left: 2.1em;
  margin-bottom: 0;
  color: #181818;
}
.features ul li {
  font-size: 1.05rem;
  padding-left: 0.1em;
  margin-bottom: 12px;
}

/* Services/Service List */
.services-overview, .services-grid {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-list > div {
  flex: 1 1 min(260px, 100%);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 22px 0 rgba(20,20,20,0.06);
  padding: 30px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  border: 1px solid #ececec;
  transition: box-shadow 0.19s, border 0.19s, transform 0.17s;
}
.service-list > div:hover {
  border: 1px solid #121212;
  box-shadow: 0 8px 26px 0 rgba(0,0,0,0.13);
  transform: translateY(-2px) scale(1.01);
}
.service-list h3 {
  margin-bottom: 8px;
  color: #121212;
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-list p {
  color: #262626;
  margin-bottom: 4px;
}
.service-list .service-price {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #181818;
  margin-top: 6px;
  background: #ededed;
  border-radius: 8px;
  padding: 4px 10px;
  align-self: flex-start;
}
.secondary-cta {
  display: inline-block;
  background: transparent;
  color: #121212;
  border: 1.5px solid #121212;
  padding: 10px 26px;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.19s, color 0.19s;
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #121212;
  color: #fff;
}

/* Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #f8f8f8;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(30,30,30,0.07);
  padding: 24px 18px;
}

/* Blog preview/posts */
.blog-preview .content-wrapper,
.blog-post-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-post-card {
  background: #fff;
  border: 1px solid #ebeaea;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(20,20,20,0.07);
  padding: 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow 0.16s, border 0.16s;
}
.blog-post-card:hover {
  box-shadow: 0 7px 22px 0 rgba(12,12,12,0.11);
  border: 1px solid #121212;
}
.blog-post-card .category {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  color: #fff;
  background: #121212;
  padding: 2px 12px;
  border-radius: 8px;
  align-self: flex-start;
  margin-top: 6px;
}

/* Testimonials */
.testimonials {
  background: #fafafb;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: #fff;
  border-left: 5px solid #121212;
  padding: 22px 24px;
  border-radius: 13px;
  box-shadow: 0 2px 18px 0 rgba(30,30,30,0.09);
  margin-bottom: 20px;
  max-width: 600px;
  color: #1c1c1c;
}
.testimonial-card p {
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #161616;
}
.testimonial-card span {
  color: #767676;
  font-size: 0.98rem;
  margin-top: 6px;
}

/* Team Cards */
.team-member-card {
  display: flex;
  flex-direction: column;
  gap: 9px;
  background: #fafbfc;
  border: 1.5px solid #d6d6d6;
  border-radius: 15px;
  padding: 28px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  box-shadow: 0 2px 12px rgba(18,18,18,0.09);
  transition: box-shadow 0.18s, border 0.18s, transform 0.14s;
}
.team-member-card:hover {
  border: 2px solid #121212;
  box-shadow: 0 7px 22px 0 rgba(30,30,30,0.12);
  transform: translateY(-2px) scale(1.008);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.faq-accordion h3 {
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #121212;
  background: #f3f3f3;
  border-radius: 7px;
  padding: 12px 16px;
  cursor: pointer;
  margin-bottom: 4px;
  transition: background 0.15s;
}
.faq-accordion h3:hover, .faq-accordion h3:focus {
  background: #e0e0e0;
}
.faq-accordion div {
  background: #fff;
  border-radius: 7px;
  padding: 14px 18px;
  margin-bottom: 4px;
  color: #141414;
  font-size: 1rem;
  display: none;
}
.faq-accordion h3.active + div {
  display: block;
  animation: fadeIn 0.22s;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

/* Contact Info */
.contact-info .content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 34px;
  align-items: stretch;
  flex-wrap: wrap;
}
.contact-info .text-section {
  flex: 1 1 min(260px, 100%);
  background: #fafbfc;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(30,30,30,0.05);
  padding: 24px 18px;
  margin-bottom: 20px;
  min-width: 220px;
}
.contact-info h2 {
  color: #121212;
}
.contact-info a.primary-cta {
  margin-top: 8px;
}

/* CTA (Call to Action) */
.cta {
  margin-bottom: 60px;
  background: #121212;
  padding: 44px 0 44px 0;
  border-radius: 22px;
  box-shadow: 0 7px 20px 0 rgba(20,20,20,0.10);
}
.cta .content-wrapper {
  text-align: left;
  align-items: flex-start;
  gap: 14px;
}
.cta h2 {
  color: #fff;
  margin-bottom: 8px;
}
.cta p {
  color: #e9e9e9;
}
.cta .primary-cta {
  background: #fff;
  color: #121212;
  border: 1.5px solid #fff;
}
.cta .primary-cta:hover,
.cta .primary-cta:focus {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}

/* Buttons & CTAs */
.primary-cta {
  display: inline-block;
  background: #121212;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 0.9em 2em;
  border-radius: 24px;
  border: none;
  box-shadow: 0 3px 18px 0 rgba(30,30,30,0.07);
  text-decoration: none;
  transition: background 0.21s, color 0.21s, transform 0.13s;
  cursor: pointer;
}
.primary-cta:hover, .primary-cta:focus {
  background: #fff;
  color: #121212;
  outline: 1.5px solid #121212;
  transform: translateY(-2px) scale(1.03);
}

.secondary-cta {
  border: 1.5px solid #121212;
  color: #121212;
  background: #fff;
  transition: all 0.18s;
}
.secondary-cta:hover, .secondary-cta:focus {
  color: #fff;
  background: #121212;
}

/* Footer */
footer {
  background: #141414;
  color: #fff;
  padding: 40px 0 28px 0;
  border-top: 2.5px solid #232323;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
footer nav.footer-nav {
  display: flex;
  gap: 10px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
footer nav.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.92;
  transition: opacity 0.17s, color 0.17s;
}
footer nav.footer-nav a:hover,
footer nav.footer-nav a:focus {
  opacity: 1;
  color: #bababa;
}
footer .tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #ededed;
  font-size: 1.03rem;
}
footer img {
  width: 38px;
  margin-bottom: 5px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #232323;
  color: #fff;
  z-index: 4000;
  padding: 18px 20px 20px 20px;
  box-shadow: 0 -2px 26px 0 rgba(0,0,0,0.15);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(32px);
  transition: opacity 0.34s, transform 0.34s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
  flex: 1 1 auto;
}
.cookie-action-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 22px;
  cursor: pointer;
  padding: 7px 22px;
  font-size: 1rem;
  transition: background 0.19s, color 0.19s, box-shadow 0.2s;
}
.cookie-banner .accept {
  background: #fff;
  color: #121212;
  border: 1.5px solid #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #666;
  color: #fff;
}
.cookie-banner .reject {
  background: #232323;
  border: 1.5px solid #fff;
  color: #fff;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #fff;
  color: #121212;
}
.cookie-banner .settings {
  background: transparent;
  border: 1.5px solid #bababa;
  color: #bababa;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #fff;
  color: #121212;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 4200;
  background: rgba(25,25,25, 0.89);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-inner {
  background: #fff;
  color: #212121;
  border-radius: 20px;
  padding: 38px 28px 30px 28px;
  box-shadow: 0 2px 36px rgba(0,0,0,0.19);
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 280px;
  max-width: 100vw;
  margin: 18px;
}
.cookie-modal .close-modal {
  font-size: 1.6rem;
  align-self: flex-end;
  background: none;
  border: none;
  color: #121212;
  cursor: pointer;
}
.cookie-modal h2 {
  color: #121212;
  margin-bottom: 6px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #181818;
  font-family: 'Montserrat', Arial, sans-serif;
  display: flex;
  gap: 8px;
  align-items: center;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #121212;
  width: 18px;
  height: 18px;
}
.cookie-modal .essential {
  color: #bababa;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 8px;
}
.cookie-modal .modal-actions button {
  padding: 8px 26px;
}

/* Misc Utility */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 230px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Legal Section */
.legal {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
.legal .content-wrapper {
  gap: 12px;
}
.legal h1, .legal h2 {
  color: #121212;
  margin-bottom: 8px;
}
.legal ul {
  margin-left: 2em;
}
.legal ul li {
  margin-bottom: 10px;
}

/* Inputs */
input[type="search"], input[type="text"], textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 7px;
  border: 1.5px solid #d7d7d7;
  padding: 12px 14px;
  font-size: 1rem;
  transition: border 0.15s;
  background: #fafbfc;
  color: #181818;
  margin-bottom: 6px;
}
input[type="search"]:focus, input[type="text"]:focus, textarea:focus {
  outline: none;
  border: 1.5px solid #121212;
}

/* Animations/Micro-interactions */
.card, .service-list > div, .blog-post-card, .team-member-card, .content-wrapper, .testimonial-card {
  transition: box-shadow 0.18s, border 0.18s, transform 0.15s, background 0.18s;
}

/* ----------- RESPONSIVE DESIGN ----------- */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav {
    flex-direction: column;
    gap: 7px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.25rem; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero, .features, .services-overview, .services-grid, .cta, .testimonials, .legal {
    padding: 32px 0;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 8px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .blog-post-card, .team-member-card, .card, .service-list > div {
    padding: 18px 10px;
  }
  .service-list, .card-container, .content-grid {
    gap: 12px;
  }
  .service-list > div,
  .team-member-card,
  .testimonial-card,
  .contact-info .text-section {
    min-width: unset;
    width: 100%;
  }
  .text-image-section, .contact-info .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .cookie-modal-inner { padding: 16px 6vw; }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 14px 8px 14px 8px;
  }
  .cta, .section, .hero, .features {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Accessibility: Focus Indicators */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid #121212;
  outline-offset: 2px;
}

/* Hide scroll when modal/mobile menu is open */
body.modal-open, body.mobile-menu-open {
  overflow: hidden;
}

/* Remove spinner input number */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
