/* Reset & Base Styles (Normalize + Custom Reset) */
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, caption, table, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, 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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #15181C;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2A3B4D;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #A3640D;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 600;
}

/* Typography - Sophisticated Monochrome */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #15181C;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 12px;
}
.subtitle {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  color: #2A3B4D;
  opacity: 0.8;
  margin-bottom: 24px;
}
p {
  font-size: 1rem;
  margin-bottom: 18px;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.3rem;
  }
}

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

/* Spacing & Sections (CRITICAL) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(44, 50, 62, 0.09);
  padding: 28px 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 28px rgba(58, 64, 82, 0.14);
  transform: translateY(-2px) scale(1.012);
  z-index: 1;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fafbfc;
  border-radius: 16px;
  box-shadow: 0 1px 10px rgba(30, 40, 54, 0.07);
  border: 1px solid #e7e7ea;
  position: relative;
}
.testimonial-card blockquote {
  font-size: 1.10rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1d2026;
  font-style: italic;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
  quotes: "\201C" "\201D";
}
.testimonial-card strong {
  color: #2A3B4D;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 6px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card {
    padding: 16px 12px;
  }
}

/* Header & Navigation */
header {
  background: #11151a;
  box-shadow: 0 1px 6px rgba(30,40,54,0.09);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #A3640D;
  border-bottom: 2px solid #A3640D;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #15181C;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 30px;
  border: none;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(60,64,82,0.12);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s, transform 0.15s;
  margin-left: 12px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #2A3B4D;
  color: #f0e9df;
  box-shadow: 0 4px 18px rgba(64,72,82,0.16);
  outline: none;
  transform: translateY(-1.5px) scale(1.014);
}
.btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: transparent;
  color: #2A3B4D;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 26px;
  border: 2px solid #2A3B4D;
  border-radius: 14px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.15s;
  margin-top: 16px;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #2A3B4D;
  color: #fff;
  outline: none;
  border-color: #2A3B4D;
  transform: translateY(-2px) scale(1.01);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 6px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #A3640D;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 150;
  background: rgba(18,21,26,0.96);
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(0.57,0.08,0.44,0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 38px 24px 24px 28px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 0 32px 0 rgba(18,24,32,0.20);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.0rem;
  cursor: pointer;
  margin-bottom: 30px;
  align-self: flex-end;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #A3640D;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 500;
  padding: 9px 2px;
  border-left: 3px solid transparent;
  transition: border-color 0.12s, color 0.15s, background 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #A3640D;
  border-left: 3px solid #A3640D;
  background: rgba(163,100,13,0.07);
  outline: none;
}

@media (max-width: 480px) {
  .mobile-menu { padding: 24px 7px 14px 12px; }
  .mobile-nav a { font-size: 1rem; }
}

/* HERO Section */
.hero {
  background: #fff;
  padding: 64px 0 48px 0;
  border-bottom: 1.5px solid #edeef0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #2A3B4D;
  margin-bottom: 20px;
}
.hero .btn-primary {
  margin-top: 16px;
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 12px 0;
  }
  .hero .container {
    padding-left: 0; padding-right: 0;
  }
}

/* Feature List & Service List */
.feature-list, .usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  align-items: flex-start;
}
.feature-list li, .usp-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  color: #23262a;
  background: #fafbfc;
  border-radius: 13px;
  padding: 14px 20px;
  margin-bottom: 0;
  box-shadow: 0 1px 7px rgba(41, 52, 70, 0.08);
  gap: 13px;
}
.feature-list img, .usp-list img {
  width: 36px; height: 36px; margin-right: 7px;
}
@media (max-width: 768px) {
  .feature-list, .usp-list {
    gap: 18px 6px;
    flex-direction: column;
  }
  .feature-list li, .usp-list li {
    padding: 11px 10px;
    font-size: 0.98rem;
  }
}

/* Service/FAQ/Process Lists */
.service-list, .service-grid, .faq-short, .process-steps, .step-by-step-overview, .step-guide, .checklist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.service-list li, .service-grid li {
  background: #fff;
  border: 1px solid #e7e7ea;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(44,50,62,0.05);
  padding: 22px 20px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  margin-bottom: 0;
  transition: box-shadow 0.19s, transform 0.16s;
}
.service-list li:hover, .service-grid li:hover {
  box-shadow: 0 6px 24px rgba(44,50,62,0.11);
  border-color: #B47924;
  transform: translateY(-1px) scale(1.009);
  z-index: 1;
}
.service-list span, .service-grid .price {
  color: #A3640D; font-size: 0.99rem; font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
}

.faq-short li {
  background: #fafbfc;
  border-left: 4px solid #2A3B4D;
  border-radius: 8px;
  padding: 14px 18px 14px 18px;
}
.faq-short strong {
  color: #2A3B4D;
}
.process-steps li, .step-by-step-overview li, .step-guide li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  background: #f4f6f8;
  border-radius: 9px;
  padding: 13px 18px;
  border-left: 4px solid #2A3B4D;
  margin-bottom: 0;
}
.process-steps img, .step-by-step-overview img, .step-guide img {
  width: 28px;
  height: 28px;
}
.checklist li {
  padding-left: 1.8em;
  position: relative;
}
.checklist li:before {
  content: '\2713';
  color: #A3640D;
  font-weight: bold;
  position: absolute;
  left: 0;
}

@media (max-width: 600px) {
  .service-list li, .service-grid li, .process-steps li, .step-by-step-overview li, .step-guide li, .faq-short li {
    padding: 11px 7px;
    font-size: 0.98rem;
  }
  .faq-short, .service-list, .service-grid {
    gap: 14px;
    margin-bottom: 10px;
  }
}

/* FAQ Accordion Custom Styles */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}
.faq-item {
  background: #fafbfc;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(44,50,62,0.06);
  padding: 18px 22px;
  border-left: 3px solid #2A3B4D;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.13s;
}
.faq-item:hover, .faq-item:focus-within {
  background: #f0f1f4;
  box-shadow: 0 6px 21px rgba(44,50,62,0.14);
}
.faq-item h2 {
  font-size: 1.08rem;
  margin-bottom: 7px;
  color: #2A3B4D;
}
.faq-item > div {
  font-size: 1rem;
  color: #23262a;
}

@media (max-width: 600px) {
  .faq-item { padding: 11px 7px; }
}

.contact-prompt { margin-top: 16px; }
.contact-prompt a { margin-top: 10px; }

/* Contact Details, Map Snippet */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  margin-top: 8px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 4px;
  color: #23262a;
}
.contact-details img {
  width: 21px; height: 21px;
}
.map-snippet {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  margin-top: 6px;
}
.map-snippet img { width: 33px; height: 33px; }

/* Footer */
footer {
  background: #15181C;
  color: #fff;
  padding: 0 0 0 0;
  position: relative;
  z-index: 10;
  margin-top: 60px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 16px 0;
  border-bottom: 1px solid #283747;
  gap: 24px;
}
.logo-footer img {
  height: 38px;
  display: block;
}
.footer-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.8;
  transition: color 0.14s, opacity 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A3640D;
  opacity: 1;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0 20px 0;
  font-size: 0.99rem;
}
.brand-info {
  color: #d0d3df;
  opacity: 0.70;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 11px;
}
.social-links img{
  width: 26px; height: 26px; filter: grayscale(1) contrast(1.8);
  opacity: 0.87;
}
@media (max-width: 800px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* Legal Content & General Content Sections */
.legal-content {
  background: #fff;
  color: #23262a;
  padding: 32px 28px 32px 28px;
  border-radius: 14px;
  box-shadow: 0 1px 12px rgba(40,42,62,0.07);
}
@media (max-width: 600px) {
  .legal-content {
    padding: 13px 2px 13px 2px;
  }
}

/* Cookie Consent Banner (Critical UI) */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #15181C;
  color: #fff;
  font-size: 1rem;
  z-index: 9999;
  padding: 23px 16px 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  box-shadow: 0 -2px 18px rgba(44,50,62,0.14);
  justify-content: space-between;
  flex-wrap: wrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.29s, transform 0.28s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner p {
  color: #fafbfc;
  margin-bottom: 0;
  max-width: 480px;
  font-size: 1.02rem;
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  padding: 9px 23px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.14s;
  margin-top: 0;
  box-shadow: 0 1px 8px rgba(40,42,54,0.08);
}
.cookie-btn.accept {
  background: #2A3B4D;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #A3640D;
  color: #fff;
}
.cookie-btn.reject {
  background: transparent;
  color: #fff;
  border: 1.5px solid #e2e2e9;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #23262a;
  color: #fff;
}
.cookie-btn.settings {
  background: #23262a;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fff;
  color: #23262a;
  border: 1.5px solid #15181C;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 11px 6px 10px 7px;
  }
  .cookie-banner-buttons {
    gap: 9px;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(21,24,28,0.77);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #23262a;
  border-radius: 16px;
  padding: 38px 32px 30px 32px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 11px 44px rgba(44,50,62,0.17);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookieModalIn 0.44s cubic-bezier(0.77,0.03,0.33,1.01);
}
@keyframes cookieModalIn {
  0% { transform: translateY(66px) scale(0.91); opacity: 0; }
  85% { transform: translateY(-13px) scale(1.03); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #2A3B4D;
  margin-bottom: 13px;
}
.cookie-modal-close {
  position: absolute;
  right: 24px;
  top: 18px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #15181C;
  cursor: pointer;
  opacity: 0.75;
  transition: color 0.18s, opacity 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #A3640D;
  opacity: 1;
  outline: none;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-weight: 500;
  color: #23262a;
}
.cookie-switch {
  width: 41px; height: 21px; background: #e7e7ea; border-radius: 13px; display: inline-flex; align-items: center; cursor: pointer; position: relative; margin-right: 5px;
  transition: background 0.17s;
}
.cookie-switch input {
  display: none;
}
.cookie-switch .slider {
  position: absolute; left: 2px; top: 2px; width: 17px; height: 17px; background: #2A3B4D; border-radius: 50%; transition: transform 0.19s, background 0.19s;
}
.cookie-switch input:checked + .slider {
  transform: translateX(20px);
  background: #A3640D;
}
.cookie-locked {
  opacity: 0.58;
  font-style: italic;
  font-size: 0.98rem;
  margin-left: 8px;
  color: #23262a;
}
@media (max-width: 450px) {
  .cookie-modal { padding: 18px 8px 18px 8px; }
}

/* Microinteractions, Transitions & Emphasis */
.btn-primary, .btn-secondary, .cookie-btn {
  transition: box-shadow 0.16s, background 0.15s, color 0.16s, border 0.16s, transform 0.19s;
}
li, .card, .testimonial-card, .faq-item {
  transition: box-shadow 0.19s, background 0.12s, border 0.11s;
}

/* Monochrome-Sophisticated Extra Elements */
hr {
  border: 0; border-top: 1px solid #ECECF0; margin: 32px 0;
}
blockquote {
  border-left: 3px solid #15181C;
  padding-left: 16px;
  margin: 8px 0 8px 0;
  color: #15181C;
  font-style: italic;
  background: transparent;
}
::-webkit-selection { background: #B47924; color: #fff; }
::selection { background: #B47924; color: #fff; }

/* Utility Classes */
.text-section { margin-bottom: 22px; }
.mt-24 { margin-top: 24px; }
.mb-20 { margin-bottom: 20px; }
.hide { display: none !important; }

/* Responsive extra fine-tuning */
@media (max-width: 410px) {
  .container { padding-left: 6px; padding-right: 6px; }
  .card, .testimonial-card { padding: 7px 3px; }
  .footer-nav { gap: 9px; font-size: 0.93rem; }
}
