/* ===========================================================
   AURIX BASE MÖBELMANUFAKTUR – GRADIENT MODERN CSS THEME
   Author: Professional Senior CSS Developer
   Guidelines:
     - 'gradient_modern': Gradients, clean UI, modern fonts, smooth transitions
     - Brand Colors: #25313B (primary), #6D8B7B (secondary), #F3ECE7 (accent)
     - Fonts: Montserrat (display), Roboto (body)
     - Flexbox ONLY, never grid/columns
     - Mobile First Responsive
     - Accessibility and contrast: especially in testimonials and CTA
     - Consistent spacing, white space, professional feel
   ============================================================ */

/* =============================
   CSS RESET & BASELINE NORMALIZE
============================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: linear-gradient(135deg, #F3ECE7 0%, #e7edea 100%);
  color: #25313B;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
a {
  color: #25313B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6D8B7B;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #25313B;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.2rem; margin-bottom: 16px; }
p, li, span, strong {
  font-weight: 400;
  font-size: 1rem;
  color: #354553;
}
strong { font-weight: 500; color: #25313B; }

/* =========== GENERAL LAYOUT CONTAINERS =========== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

/* =========== SECTION & CARD SPACING =========== */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container,
.feature-grid,
.step-list,
.usp-list,
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(26,41,54,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.24s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(26,41,54,0.12);
  transform: translateY(-4px) scale(1.02);
}
.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;
}

/*****************
*** HEADER/NAV ***
*****************/
header {
  background: #fff;
  border-bottom: 1px solid #e7edea;
  width: 100%;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  flex-direction: row;
  align-items: center;
  min-height: 75px;
  justify-content: space-between;
  gap: 0;
}
header img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 7px 13px;
  border-radius: 8px;
  line-height: 1.6;
  color: #25313B;
  transition: background 0.18s, color 0.14s;
  position: relative;
}
.main-nav a.active, .main-nav a.btn-primary {
  background: linear-gradient(95deg, #6D8B7B 10%, #25313B 95%);
  color: #fff;
}
.main-nav a:hover, .main-nav a:focus {
  background: #6D8B7B;
  color: #fff;
}
.btn-primary {
  background: linear-gradient(95deg, #6D8B7B 10%, #25313B 95%);
  color: #fff!important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 32px;
  font-size: 1.1rem;
  box-shadow: 0 6px 20px 0 rgba(109,139,123,0.10);
  border: none;
  cursor: pointer;
  margin-left: 6px;
  transition: filter 0.18s, box-shadow 0.15s, background 0.22s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  filter: brightness(1.08) saturate(1.10);
  box-shadow: 0 10px 28px 0 rgba(109,139,123,0.15);
}
.btn-secondary {
  background: #25313B;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 32px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin: 6px 0 0 0;
  box-shadow: 0 3px 14px 0 rgba(109,139,123,0.10);
  transition: background 0.18s, box-shadow 0.14s, filter 0.15s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #6D8B7B;
  color: #fff;
  filter: brightness(1.07) saturate(1.08);
  box-shadow: 0 7px 24px 0 rgba(109,139,123,0.14);
}

/***************
*** BURGER MENU **
***************/
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #6D8B7B 0%, #25313B 100%);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.2s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #25313B;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #25313BCC;
  backdrop-filter: blur(3px);
  z-index: 2002;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.61,.38,.23,1), opacity 0.35s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin: 26px 28px 10px 0;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 2003;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F3ECE7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  gap: 24px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  border-radius: 14px;
  padding: 11px 35px;
  background: none;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6D8B7B;
  color: #fff;
}

/*****************
*** HERO SECTION ***
*****************/
.hero {
  background: linear-gradient(110deg, #F3ECE7 65%, #6D8B7B18 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 3px 24px 0 rgba(109,139,123,0.12);
  min-height: 400px;
  padding: 45px 0 60px 0;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hero h1 {
  font-size: 2.7rem;
  color: #25313B;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.16rem;
  color: #40505e;
  margin-bottom: 26px;
}
.hero .btn-primary {
  margin-top: 12px;
  font-size: 1.12rem;
}

/*********************
*** FEATURE SECTION **
*********************/
.feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 190px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 13px rgba(109,139,123,0.12);
  padding: 26px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.17s, transform 0.17s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 22px rgba(109,139,123,0.16);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  width: 38px; height: 38px; margin-bottom: 10px;
}
.feature-grid h3 {
  color: #25313B;
  font-size: 1.17rem;
  margin-bottom: 10px;
}
.feature-grid p {
  color: #40505e;
  margin-bottom: 0;
}

/*****************
*** CTA BANNER ***
*****************/
.cta-banner {
  background: linear-gradient(95deg, #6D8B7B 2%, #25313B 97%);
  color: #fff;
  border-radius: 26px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 5px 24px rgba(109,139,123,0.2);
  gap: 18px;
}
.cta-banner h2 { color: #fff; font-size: 2rem; }
.cta-banner p { color: #FFF; font-size: 1.11rem; }
.cta-banner .btn-primary {
  margin-top: 8px;
  box-shadow: 0 5px 16px rgba(243,236,231,0.14);
}

/*********************
*** CARD & ICON LIST **
**********************/
.icon-list,
.service-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.icon-list li, .service-categories li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  font-size: 1.08rem;
}
.icon-list img {
  width: 26px; height: 26px;
}
.benefits-snapshots, .usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 0 0;
  color: #6D8B7B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
}
.benefits-snapshots span,
.usp-list span {
  background: #e7edea;
  color: #25313B;
  border-radius: 8px;
  padding: 3px 12px;
}

/*********************
*** STEP LIST (PROCESS)
**********************/
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 6px;
}
.step-list > div {
  flex: 1 1 210px;
  min-width: 180px;
  background: #F3ECE7;
  border-radius: 15px;
  box-shadow: 0 2px 14px rgba(109,139,123,0.10);
  padding: 16px 18px 13px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.step-list img {
  width: 32px; height: 32px;
}

/*********************
*** TESTIMONIALS ***
**********************/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 28px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px rgba(109,139,123,0.12);
  padding: 20px 26px;
  min-width: 250px;
  max-width: 430px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.19s;
}
.testimonial-card p {
  color: #25313B;
  font-size: 1.01rem;
  font-style: italic;
}
.testimonial-card span {
  color: #6D8B7B;
  font-size: 0.97rem;
  margin-top: 4px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 6px 25px rgba(109,139,123,0.14);
  transform: translateY(-2px) scale(1.01);
}

/*********************
*** FAQ ACCORDION ***
**********************/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #F3ECE7;
  border-radius: 14px;
  padding: 18px 24px;
  box-shadow: 0 2px 8px rgba(109,139,123,0.10);
  position: relative;
  transition: box-shadow 0.14s, background 0.14s;
}
.faq-accordion > div strong {
  display: block;
  font-size: 1rem;
  color: #25313B;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.faq-accordion > div p { margin-bottom: 0; }
.faq-accordion > div:hover {
  background: #e7edea;
  box-shadow: 0 4px 15px rgba(109,139,123,0.15);
}

/*********************
*** TEXT-IMAGE SECTION
**********************/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  padding: 18px 0;
}

/*********************
*** TIMELINE/QUOTE LIST
**********************/
.timeline, .short-explanation, .quote-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 10px 0 0 0;
  color: #40505e;
  font-size: 1rem;
}
.quote-list p {
  border-left: 3px solid #6D8B7B;
  padding-left: 14px;
}

/********************
   FOOTER
********************/
footer {
  background: linear-gradient(90deg, #25313B 0%, #6D8B7B 100%);
  color: #fff;
  padding: 32px 0 15px 0;
  position: relative;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer-navigation nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
}
.footer-navigation a {
  color: #F3ECE7;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  border-radius: 6px;
  padding: 2px 10px;
  transition: background 0.13s, color 0.12s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  background: #6D8B7B;
  color: #fff;
}
.footer-contact {
  color: #F3ECE7;
  font-size: 0.99rem;
  margin-bottom: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-contact span{
  color:#F3ECE7;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-social a img {
  width: 29px; height: 29px; filter: grayscale(1); transition: filter 0.15s; border-radius: 50%; }
.footer-social a:hover img, .footer-social a:focus img {
  filter: grayscale(0);
  background: #fff3;
}
.footer-credits {
  color: #F3ECE7DD;
  font-size: 0.89rem;
  margin-top: 4px;
}

/*************
   COOKIE BANNER
*************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  background: #25313B;
  color: #fff;
  padding: 22px 12px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -5px 25px rgba(37,49,59,0.10);
  gap: 18px;
  animation: cookieSlideIn 0.55s cubic-bezier(.7,.3,.27,.99) 1;
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  90% { transform: translateY(-6px); }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-accept, .cookie-reject, .cookie-settings {
  border: none;
  padding: 11px 30px;
  font-size: 1rem;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.14s;
  box-shadow: 0 2px 10px rgba(243,236,231,0.088);
}
.cookie-accept {
  background: linear-gradient(93deg, #6D8B7B 8%, #25313B 92%);
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #6D8B7B;
}
.cookie-reject {
  background: #fff;
  color: #25313B;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #F3ECE7;
  color: #25313B;
}
.cookie-settings {
  background: none;
  color: #fff;
  border: 1.5px solid #6D8B7B;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #6D8B7B;
  color: #fff;
}

/**** Cookie Modal ****/
.cookie-modal-overlay {
  position: fixed;
  z-index: 3200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #25313BCC;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.35s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  min-width: 288px;
  max-width: 96vw;
  max-height: 90vh;
  padding: 32px 36px 29px 36px;
  box-shadow: 0 7px 32px rgba(28,41,54,0.23);
  color: #25313B;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
  animation: modalPopIn 0.45s cubic-bezier(.45,.8,.21,.95);
}
@keyframes modalPopIn {
  from { transform: translateY(80px) scale(0.85); opacity: 0.2; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 12px;
  color: #25313B;
  font-size: 1.21rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 10px 0 2px 0;
}
.cookie-category label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #25313B;
  margin: 0;
  cursor: pointer;
}
.cookie-category .cookie-toggle {
  display: flex;
  align-items: center;
  margin-left: 3px;
}
.cookie-category input[type="checkbox"], .cookie-category input[type="radio"] {
  accent-color: #6D8B7B;
  width: 22px;
  height: 22px;
}
.cookie-category .cookie-always-on {
  color: #6D8B7B;
  font-size: 0.92rem;
  background: #f3ece7;
  padding: 2px 12px;
  border-radius: 24px;
  margin-left: 8px;
}
.cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-modal .cookie-accept,
.cookie-modal .cookie-reject {
  min-width: 110px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 22px;
  top: 22px;
  background: none;
  border: none;
  color: #6D8B7B;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 2px;
  z-index: 3300;
  transition: color 0.17s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  color: #25313B;
}

/**************
RESPONSIVE DESIGN
**************/
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.1rem; }
  .cta-banner h2 { font-size: 1.3rem; }
  .container { max-width: 94vw; }
}
@media (max-width: 900px) {
  .main-nav { gap: 7px; }
  .feature-grid { gap: 16px; }
  .step-list { gap: 16px; }
  .card-container,
  .testimonial-slider,
  .content-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  header .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid,
  .step-list,
  .testimonial-slider,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .faq-accordion > div,
  .feature-grid > div,
  .step-list > div,
  .testimonial-card,
  .cta-banner {
    padding: 20px 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .container {
    padding: 0 10px;
    max-width: 99vw;
  }
  .hero {
    border-radius: 0 0 18px 18px;
    padding: 30px 0 38px 0;
    min-height: 250px;
  }
  .footer-navigation nav {
    gap: 11px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 4px;
  }
  .footer-social { gap: 10px; }
}
@media (max-width: 520px) {
  h1, .hero h1 { font-size: 1.38rem; }
  h2, .cta-banner h2 { font-size: 1.13rem; }
  .feature-grid > div, .step-list > div {
    min-width: 95vw;
    padding: 14px 4vw !important;
  }
  .faq-accordion > div {
    padding: 14px 8px;
  }
  .testimonial-card {
    min-width: 88vw;
    max-width: 98vw;
    padding: 15px 7px;
  }
  .cta-banner {
    padding: 18px 2vw;
  }
  .cookie-modal {
    padding: 20px 8px 18px 8px;
    min-width: 90vw;
    max-width: 99vw;
  }
}

/*************
EXTRAS & OVERRIDES
*************/
::-webkit-input-placeholder { color: #798383; opacity: 1; }
:-ms-input-placeholder { color: #798383; opacity: 1; }
::placeholder { color: #798383; opacity: 1; }

.hide { display: none !important; }

/* Utility Classes */
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.justify-center { justify-content: center; }
.align-center, .center { align-items: center; text-align: center; }
.gap-24 { gap: 24px; }
.gap-12 { gap: 12px; }

/*************
   ACCESSIBILITY
*************/
:focus { outline: 2px solid #6D8B7B; outline-offset: 2px; }

/* =========== END OF CSS =========== */
