/* RESET & NORMALIZE */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd { margin: 0; padding: 0; font-weight: normal; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }

/* VARIABLE COLORS FOR MONOCHROME SOPHISTICATED */
:root {
  --color-bg: #fff;
  --color-bg-alt: #f5f5f5;
  --color-dark: #111;
  --color-black: #000;
  --color-mid: #444;
  --color-light: #eee;
  --color-gray: #6d6d6d;
  --color-primary: #111;
  --color-secondary: #181818;
  --color-accent: #fff;
  --brand-green: #154734;
  --brand-yellow: #FCD116;
}

body {
  background: var(--color-bg);
  color: var(--color-dark);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-black);
  font-weight: 700;
}
h1 { font-size: 2.6rem; letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; line-height: 1.2; }
h3 { font-size: 1.3rem; margin-bottom: 10px; line-height: 1.3; font-weight: 600; }
p, ul, li { font-size: 1rem; color: var(--color-mid); }
strong, b { color: var(--color-black); font-weight: 600; }
small { font-size: 0.92rem; color: var(--color-gray); }

@media (max-width: 680px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.09rem; }
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper { width: 100%; margin: 0 auto; }

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--color-accent);
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.06);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 18px 20px;
  gap: 20px;
}
.logo img { height: 42px; margin-right: 8px; }

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: var(--color-black);
  font-size: 1.05rem;
  font-weight: 500;
  transition: color .26s;
  letter-spacing: 0.015em;
  position: relative;
}
.main-nav a::after {
  content: '';
  display: block;
  border-bottom: 2px solid var(--color-black);
  width: 0;
  transition: width .3s;
}
.main-nav a:focus,
.main-nav a:hover {
  color: var(--brand-green);
}
.main-nav a:focus::after,
.main-nav a:hover::after {
  width: 100%;
}

.cta-btn {
  background: var(--color-black);
  color: var(--color-accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 11px 30px;
  transition: background .22s, color .22s, box-shadow .22s;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.07);
  cursor: pointer;
  margin-left: 20px;
  display: inline-block;
  outline: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--brand-green);
  color: var(--color-accent);
  box-shadow: 0 4px 12px 0 rgba(21,71,52,0.18);
  text-decoration: none;
}

/* BURGER MENU button for MOBILE */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-black);
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 7px;
  transition: background .23s;
  z-index: 100;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-yellow);
  color: var(--brand-green);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--color-accent);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.65,0,.35,1);
  box-shadow: -1px 0 13px 0 rgba(0,0,0,0.19);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  min-width: 220px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 28px 8px 0;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--color-black);
  cursor: pointer;
  transition: color .19s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--brand-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-left: 38px;
  margin-top: 30px;
  width: 100%;
}
.mobile-nav a {
  color: var(--color-black);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.17rem;
  padding: 6px 0;
  transition: color .16s, background .13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--brand-green);
  background: var(--color-bg-alt);
  outline: none;
}

@media (max-width: 1024px) {
  .main-nav { gap: 18px; }
  .cta-btn { margin-left: 10px; padding: 10px 21px; }
}
@media (max-width: 900px) {
  header .container { gap: 9px; }
  .main-nav { gap: 6px; }
}
@media (max-width: 820px) {
  .main-nav { gap: 3px; font-size: .97rem; }
  .cta-btn { margin-left: 7px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* LAYOUT SPACING & PATTERNS */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 680px) {
  section, .section { padding: 29px 4px; margin-bottom: 40px; }
}
.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.feature-grid, .values-grid, .benefits-grid, .service-steps, .process-steps, .card-container, .card-grid, .testimonial-list, .quote-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .feature-grid, .values-grid, .benefits-grid, .service-steps, .process-steps, .card-container, .card-grid, .testimonial-list, .quote-grid {
    flex-direction: column;
    gap: 20px;
  }
}

.feature-grid > div, .values-grid > div, .benefits-grid > div, .service-steps > div, .process-steps > div {
  background: var(--color-bg-alt);
  border-radius: 20px;
  padding: 32px 28px 28px 28px;
  box-shadow: 0 5px 24px 0 rgba(0,0,0,0.04);
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 330px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow .23s, transform .18s;
}
.feature-grid > div:hover, .values-grid > div:hover, .benefits-grid > div:hover, .service-steps > div:hover, .process-steps > div:hover {
  box-shadow: 0 8px 38px 0 rgba(0,0,0,0.09);
  transform: translateY(-2px) scale(1.03);
}

/* INTERACTIVE FAQ ACCORDION (basic styling, logic in js) */
.faq-accordion { display: flex; flex-direction: column; gap: 20px; }
.faq-accordion > div {
  background: var(--color-bg-alt);
  border-radius: 14px;
  box-shadow: 0 2px 15px 0 rgba(0,0,0,0.03);
  padding: 22px 22px 16px 22px;
  transition: background .19s;
}
.faq-accordion h3 { margin-bottom: 8px; cursor: pointer; }
.faq-accordion > div:hover { background: #eaeaea; }

/* HERO & MAIN CTA BLOCKS */
.hero {
  background: var(--color-accent);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 0;
  padding: 58px 0 44px 0;
  text-align: left;
}
.hero .container { align-items: flex-start; }
.hero .content-wrapper { padding: 0; }
.hero h1 {
  font-size: 2.7rem;
  color: var(--color-black);
  line-height: 1.12;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.21rem;
  color: var(--color-mid);
  max-width: 550px;
  margin-bottom: 22px;
}
.hero .cta-btn { margin-left: 0; margin-top: 8px; }
@media (max-width: 600px) {
  .hero { padding: 40px 0 30px 0; }
  .hero .content-wrapper { padding: 0 6px; }
  .hero h1 { font-size: 1.55rem; }
  .hero p { font-size: 0.97rem; }
}

.cta-section {
  background: var(--color-black);
  color: var(--color-accent);
  border-radius: 24px;
  box-shadow: 0 6px 40px 0 rgba(0,0,0,0.10);
  margin-bottom: 60px;
  padding: 38px 0;
  text-align: center;
}
.cta-section h2 { color: var(--color-accent); margin-bottom: 18px; }
.cta-section .cta-btn {
  background: var(--brand-yellow);
  color: var(--brand-green);
  font-weight: 700;
}
.cta-section .cta-btn:hover, .cta-section .cta-btn:focus {
  background: var(--brand-green);
  color: var(--brand-yellow);
}
@media (max-width: 600px) {
  .cta-section { padding: 16px 4px 20px 4px; margin-bottom: 30px; }
}

/* USP & Benefit LISTS */
.usp-list, .solution-list ul, .consultation-process ul, .brand-values ul, .team-intro ul {
  margin-top: 26px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 12px;
}
.usp-list li,
.solution-list li,
.consultation-process li,
.brand-values li,
.team-intro li {
  position: relative;
  padding-left: 20px;
  color: var(--color-mid);
  line-height: 1.6;
}
.usp-list li::before,
.solution-list li::before,
.consultation-process li::before,
.brand-values li::before,
.team-intro li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-black);
}

/* CONSULTATION BLOCK */
.consultation-highlight {
  background: var(--brand-yellow);
  color: var(--brand-green);
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px;
  padding: 18px 24px;
  font-size: 1.16rem;
  margin-top: 30px;
  text-align: left;
  font-weight: 700;
}

/* TESTIMONIALS */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  margin-top: 10px;
}
@media (max-width: 760px) {
  .testimonial-slider, .testimonial-list { flex-direction: column; gap: 20px; }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 29px;
  background: var(--color-bg-alt);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.06);
  margin-bottom: 20px;
  min-width: 210px;
  max-width: 370px;
  transition: box-shadow .16s, transform .12s;
}
.testimonial-card:hover { box-shadow: 0 5px 28px 0 rgba(17,17,17,0.11); transform: translateY(-2px); }
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--color-black);
  line-height: 1.65;
  text-align: left;
  margin: 0;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--brand-green);
  font-weight: 600;
}
.stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 3px;
}
.stars img { width: 23px; height: 23px; }

blockquote {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--brand-green);
  padding: 23px 25px;
  border-radius: 16px;
  margin-bottom: 20px;
  color: var(--color-black);
  font-style: italic;
  font-size: 1.07rem;
}
cite {
  display: block;
  color: var(--color-gray);
  font-size: 1rem;
  margin-top: 7px;
  font-style: normal;
  padding-left: 12px;
}

/* FOOTER */
footer {
  background: var(--color-black);
  color: var(--color-accent);
  padding: 40px 0 0 0;
  font-size: 1rem;
  width: 100%;
  margin-top: 60px;
}
footer .container {
  border-radius: 0;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
}
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  border-bottom: 1px solid #303030;
  padding-bottom: 18px;
}
.footer-brand img { height: 38px; margin-bottom: 10px; }
.footer-brand p { color: var(--color-light); margin-bottom: 0; line-height: 1.55; }
.footer-nav { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a {
  color: var(--color-accent);
  font-size: 1rem;
  transition: color .14s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a:focus, .footer-nav a:hover {
  color: var(--brand-yellow);
}
.footer-contact ul {
  display: flex; flex-direction: column; gap: 6px; }
.footer-contact li { display: flex; align-items: center; gap: 8px; color: var(--color-light); font-size: 1rem; }
.footer-contact img { width: 18px; height: 18px; filter: brightness(1.7); }

.footer-social {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 28px;
  margin-bottom: 5px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #232323;
  border-radius: 50%;
  width: 40px; height: 40px;
  transition: background .2s, filter .19s;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--brand-green);
  filter: brightness(1.1);
}
.footer-social img { width: 23px; height: 23px; }
.footer-copy { margin-top: 14px; padding-bottom: 19px; }
.footer-copy small { color: #bdbdbd; }
@media (max-width: 900px) {
  .footer-cols { gap: 30px; }
}
@media (max-width: 600px) {
  .footer-cols { flex-direction: column; gap: 14px; align-items: flex-start; }
  .footer-social { margin-top: 15px; }
}

/* CONTACT DETAILS & MAP EMBED */
.contact-details {
  background: var(--color-bg-alt);
  border-radius: 13px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.04);
}
.contact-details ul { gap: 10px; }
.contact-details li { color: var(--color-mid); font-size: 1.07rem; }
.contact-details img { width: 21px; height: 21px; }
.office-hours { margin-top: 19px; }

/* Cookie Consent BANNER / MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  background: rgba(245,245,245, 0.98);
  color: var(--color-black);
  padding: 26px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  box-shadow: 0 -4px 36px 0 rgba(0,0,0,0.09);
  align-items: center;
  transition: transform .34s;
}
.cookie-banner.hide { transform: translateY(100%); pointer-events: none; }
.cookie-banner p { color: var(--color-black); font-size: 1.01rem; }
.cookie-actions {
  display: flex; flex-direction: row; gap: 13px; margin-top: 6px;
}
.cookie-btn {
  background: var(--brand-green);
  color: var(--color-accent);
  border: none;
  border-radius: 6px;
  padding: 8px 22px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background .18s, color .17s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-black);
  color: var(--color-accent);
}
.cookie-btn.reject {
  background: var(--color-light);
  color: var(--color-black); border: 1px solid #bbb;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-black);
  color: var(--color-accent);
  border-color: var(--color-black);
}
.cookie-btn.settings {
  background: var(--brand-yellow); color: var(--brand-green); border: 1px solid var(--brand-green);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--brand-green); color: var(--brand-yellow); border-color: var(--brand-yellow);
}

.cookie-modal {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  z-index: 4000;
  background: rgba(0,0,0,0.48);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .32s;
}
.cookie-modal.hide { pointer-events: none; opacity: 0; }
.cookie-modal-content {
  background: var(--color-bg);
  color: var(--color-black);
  border-radius: 21px;
  padding: 44px 34px 32px 34px;
  box-shadow: 0 8px 40px 0 rgba(0,0,0,0.14);
  min-width: 320px;
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
}
.cookie-modal-content h2 { font-size: 1.4rem; margin-bottom: 8px; }
.cookie-category {
  display: flex; align-items: center; gap: 12px; margin: 15px 0; font-size: 1.1rem;
}
.cookie-category input[type=checkbox] {
  width: 22px; height: 22px;
  accent-color: var(--brand-green);
}
.cookie-modal-actions {
  display: flex; gap: 13px; margin-top: 12px;
  width: 100%; flex-wrap: wrap;
}
.cookie-modal-close {
  position: absolute;
  top: 22px; right: 32px;
  background: none;
  border: none;
  font-size: 1.9rem;
  color: var(--color-black);
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 600px) {
  .cookie-modal-content { min-width: 0; padding: 22px 8px 22px 8px; }
}

/* MODAL accessibility overlay fallback */
.cookie-modal[aria-hidden="true"] { display: none; }

/* CARD CONTAINER & FEATURE ITEMS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-alt);
  border-radius: 19px;
  box-shadow: 0 2px 18px 0 rgba(0,0,0,0.05);
  padding: 30px 28px 24px 28px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow .15s, transform .12s;
  display: flex; flex-direction: column; gap: 15px;
}
.card:hover {
  box-shadow: 0 7px 30px 0 rgba(17,17,17,0.13);
  transform: translateY(-2px);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEXBOX UTILS FOR TEXT-IMAGE-BLOCKS ETC.*/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* PROCESS/STEP CARDS */
.process-steps > div, .service-steps > div {
  align-items: flex-start;
  text-align: left;
}

/* QUOTE GRID */
.quote-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.quote-grid blockquote { flex: 1 1 330px; margin-bottom: 0; }

/* BRAND, MODERN SCROLLBAR FOR DARK MODE */
::-webkit-scrollbar { width: 9px; background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: #dbdbdb; border-radius: 8px; }
@media (prefers-color-scheme: dark) {
  body { background: #181818; color: #f3f3f3; }
  section, .section, .feature-grid > div, .card, .testimonial-card, .footer-nav a, .usp-list li, .faq-accordion > div, .contact-details { background: #a5a5a5; color: #f3f3f3; }
  .main-nav a, .mobile-nav a { color: #291414; }
}

/* TRANSITIONS & MICRO-INTERACTIONS */
button, .cta-btn, a, .card, .testimonial-card, .feature-grid > div, .cookie-btn {
  transition: background .18s, color .18s, box-shadow .22s, border .16s, transform .13s;
}

/* IMAGE ICONS */
.feature-grid img, .values-grid img, .service-steps img, .process-steps img, .footer-brand img, .footer-contact img, .contact-details img {
  width: 34px; height: 34px; margin-bottom: 6px;
  filter: grayscale(1) contrast(1.05);
}
.testimonial-card img { filter: none; }

/* TABLES, BLOCKQUOTES, CODE - BASIC MONO STYLING */
table { border-collapse: collapse; width: 100%; margin: 26px 0; }
th, td { border: 1px solid #ccc; padding: 10px 7px; text-align: left; }
th { background: #f0f0f0; color: var(--color-black); }

/* UTILITY MARGINS & GAPS */
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.pt-32 { padding-top: 32px !important; }

/* End of Main CSS */