/*--- CSS RESET & BASE STYLES (Normalize + Flexbox Foundation) ---*/
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,
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;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #181818;
  line-height: 1.7;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1F1F1F;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #DDB356;
  outline-offset: 2px;
}
strong, b {
  font-weight: 700;
}
ul, ol {
  margin-left: 1.2em;
}

/*--- ROOT VARIABLES (Monochrome Sophisticated Palette) ---*/
:root {
  --color-bg: #fff;
  --color-bg-alt: #f6f6f6;
  --color-dark: #101010;
  --color-mid: #888;
  --color-light: #f6f7f3;
  --color-accent: #DDB356;
  --brand-primary: #242424;
  --brand-secondary: #F6F7F3;
  --brand-accent: #DDB356;
  --color-outline: #ddd;
  --color-shadow: rgba(20,20,20,0.06);
  --color-shadow-strong: rgba(0,0,0,0.13);
}

/*--- TYPOGRAPHY ---*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800|Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: var(--color-dark);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.12;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.18;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.13rem;
  margin-bottom: 8px;
}
p, ul, ol, blockquote {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #232323;
}
blockquote {
  font-style: italic;
  color: #232323;
  border-left: 3px solid var(--brand-accent);
  padding-left: 15px;
  margin-bottom: 10px;
}
cite {
  display: block;
  margin-top: 6px;
  color: #595959;
  font-size: 0.97em;
  letter-spacing: 0.02em;
  font-style: normal;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-alt);
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--color-shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px var(--color-shadow-strong);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}
.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;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px var(--color-shadow);
  min-width: 0;
  flex: 1 1 320px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px var(--color-shadow-strong);
  transform: translateY(-3px) scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fafafa;
  border-radius: 12px;
  padding: 26px 20px;
  box-shadow: 0 2px 12px var(--color-shadow);
  flex-basis: 299px;
  flex-grow: 1;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 250px;
  margin-bottom: 20px;
}
.feature-item:hover {
  box-shadow: 0 4px 18px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.015);
}

/*--- FLEX WRAPPER SPECIFIC FOR FEATURE GRIDS ---*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}

/*--- HERO SECTION ---*/
.hero {
  padding: 48px 0 36px 0;
  background: #fff;
  text-align: left;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 660px;
  padding: 0;
  gap: 20px;
}
.hero h1 {
  color: #111;
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0;
}
.hero p {
  color: #343434;
  font-size: 1.23rem;
  margin-bottom: 10px;
}

/*--- MAIN NAVIGATION ---*/
header {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  box-shadow: 0 1px 10px 0 var(--color-shadow);
  position: relative;
  z-index: 30;
}
.logo {
  display: flex;
  align-items: center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: 32px;
}
.main-nav a {
  color: #232323;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: none;
  font-size: 1.09rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #101010;
  border-bottom: 2px solid var(--brand-accent);
}
.cta-btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
  letter-spacing: .03em;
  box-shadow: 0 2px 12px var(--color-shadow-strong);
  transition: background 0.16s, color 0.16s, box-shadow 0.25s, transform 0.15s;
  cursor: pointer;
  margin-left: 32px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-accent);
  color: #101010;
  box-shadow: 0 6px 28px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.03);
}

/*--- MOBILE MENU BUTTON ---*/
.mobile-menu-toggle {
  display: none;
  background: #232323;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  border-radius: 8px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  z-index: 31;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-accent);
  color: #101010;
}

/*--- MOBILE MENU OVERLAY ---*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 28, 28, 0.98);
  z-index: 1040;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.71,.04,.21,.96);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 18px;
  right: 26px;
  z-index: 33;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 70px 0 0 38px;
  z-index: 1;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -.005em;
  padding: 9px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-bottom 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--brand-accent);
  border-bottom: 2px solid var(--brand-accent);
}

/*--- HEADER RESPONSIVE ---*/
@media (max-width: 1080px) {
  .main-nav {
    gap: 10px;
    margin-left: 14px;
  }
  .cta-btn {
    margin-left: 14px;
    padding: 12px 19px;
  }
}
@media(max-width: 900px) {
  header {
    flex-direction: row;
    gap: 0;
    padding: 12px 8px;
  }
  .cta-btn {
    margin-left: 6px;
    font-size: 1rem;
    padding: 10px 14px;
  }
  .main-nav {
    gap: 3px;
    font-size: 0.94rem;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/*--- CONTENT SECTIONS ---*/
.features, .services, .about-short, .about, .call-to-action, .thank-you, .contact-details, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.features .container, .services .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-wrapper {
  width: 100%;
}

.brand-values-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style-type: disc;
  padding-left: 16px;
  font-size: 1.04rem;
}
.usp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: disc;
  padding-left: 16px;
}
.icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}
.icon-grid img {
  width: 54px;
  height: 54px;
  filter: grayscale(0.8) contrast(1.25);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}
.icon-grid img:hover {
  filter: grayscale(0) contrast(1.4) drop-shadow(0 2px 4px var(--color-shadow));
  opacity: 1;
}
.price-overview,
.price-table {
  background: #fafafa;
  border-radius: 11px;
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-top: 16px;
  padding: 16px 20px;
  width: max(260px, 40%);
}
.price-overview h4, .price-table h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.price-overview ul, .price-table ul {
  list-style: disc inside;
  margin-left: 12px;
  color: #111;
  padding-left: 0;
}

/*--- SERVICE ITEMS (Flex, responsive) ---*/
.service-item {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: flex-start;
  background: #fafafa;
  border-radius: 13px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 24px 18px;
  min-width: 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.service-item:hover {
  box-shadow: 0 6px 22px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.0125);
}
.service-item img {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0px 10px var(--color-shadow);
  margin-top: 2px;
}
.service-item h3 {
  font-size: 1.18rem;
  margin-bottom: 3px;
}
.service-price {
  display: inline-block;
  color: #222;
  font-size: 1.04rem;
  background: #f4f4f4;
  border-radius: 8px;
  padding: 4px 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

/*--- BUTTONS ---*/
button, .cta-btn, .button {
  font-family: 'Montserrat', Arial, sans-serif;
  outline: none;
}
.button, .cta-btn {
  display: inline-block;
  background: #101010;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 12px 26px;
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 1px 6px var(--color-shadow-strong);
  text-align: center;
  transition: background 0.18s, color 0.18s, transform 0.15s, box-shadow 0.18s;
  margin-top: 8px;
}
.button:hover, .cta-btn:hover, .button:focus, .cta-btn:focus {
  background: var(--brand-accent);
  color: #181818;
  box-shadow: 0 6px 24px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.04);
}
.button.secondary {
  background: #fff;
  color: #101010;
  border: 1.5px solid #222;
}
.button.secondary:hover, .button.secondary:focus {
  background: #f6f7f3;
  color: #111;
  border-color: var(--brand-accent);
}

/*--- TESTIMONIALS ---*/
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.testimonial-card blockquote {
  font-size: 1.08rem;
  color: #232323;
  margin-bottom: 6px;
  border-left: 3px solid var(--brand-accent);
  padding-left: 12px;
}
.testimonial-card cite {
  font-size: 0.995rem;
  color: #595959;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/*--- FOOTER ---*/
footer {
  background: #161616;
  color: #d7d7d7;
  padding: 44px 20px 36px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  font-size: 1rem;
  margin-top: 60px;
  border-top: 1.5px solid #232323;
}
.footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #d7d7d7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}
.footer-logo img {
  max-height: 38px;
  opacity: 0.93;
  margin-bottom: 10px;
}
.footer-contact {
  color: #bababa;
  font-size: 0.99rem;
  text-align: center;
  margin-top: 8px;
}

/*--- LEGAL/THANK YOU MESSAGES ---*/
.legal h1, .thank-you h1 {
  font-size: 2rem;
  text-align: left;
  margin-bottom: 24px;
}
.legal {
  background: #f9f9f9;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 45px 20px;
}
.confirmation-message {
  font-size: 1.19rem;
  font-weight: 600;
  color: #232323;
}
.next-steps-info {
  font-size: 1rem;
  margin-bottom: 24px;
}

/*--- CONTACT DETAILS PAGE ---*/
.contact-details .text-section {
  font-size: 1.03rem;
}
.contact-details .text-section h3 {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 1.01rem;
  color: #111;
  font-weight: 700;
}
.contact-details .text-section a {
  color: #101010;
  text-decoration: underline;
  font-weight: 500;
}

/*--- COOKIE CONSENT BANNER ---*/
#cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: rgba(30,30,30,0.999);
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -2px 20px var(--color-shadow-strong);
  z-index: 1200;
  padding: 24px 20px 24px 20px;
  gap: 18px;
  opacity: 1;
  transition: transform 0.32s cubic-bezier(.77,.07,.39,.89);
}
#cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s, opacity 0.22s;
}
.cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
#cookie-banner .button, #cookie-banner button {
  font-size: 1rem;
  padding: 9px 21px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  outline: none;
  border: none;
  margin: 0;
  background: #fff;
  color: #232323;
  box-shadow: 0 1px 4px var(--color-shadow-strong);
  cursor: pointer;
  transition: background 0.1s, color 0.1s, border 0.1s, box-shadow 0.15s;
}
#cookie-banner .button.accept {
  background: var(--brand-accent);
  color: #101010;
}
#cookie-banner .button.accept:hover, #cookie-banner .button:focus {
  background: #fff6e0;
  color: #101010;
}
#cookie-banner .button.reject {
  background: #fff;
  color: #101010;
  border: 1.5px solid #101010;
}
#cookie-banner .button.reject:hover {
  background: #222;
  color: #fff;
}
#cookie-banner .button.settings {
  background: #f6f7f3;
  color: #222;
  border: 1px solid #bbb;
}
#cookie-banner .button.settings:hover {
  background: #ededed;
}

/*--- COOKIE SETTINGS MODAL ---*/
#cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,20,20,0.62);
  z-index: 1300;
  justify-content: center;
  align-items: center;
  transition: opacity 0.17s;
}
#cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  min-width: 310px;
  max-width: 98vw;
  background: #fff;
  color: #1d1d1d;
  border-radius: 14px;
  padding: 34px 22px 22px 22px;
  box-shadow: 0 8px 40px var(--color-shadow-strong);
  z-index: 1311;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.20rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
}
.cookie-modal strong {
  color: #101010;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.cookie-category label {
  font-size: 1.02rem;
  font-weight: 500;
  color: #1d1d1d;
}
.cookie-category input[type=checkbox] {
  accent-color: #1d1d1d;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-actions .button {
  font-size: 1rem;
  padding: 8px 19px;
}

/*--- RESPONSIVE - MOBILE FIRST ---*/
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.32rem;
  }
  h3 {
    font-size: 1.07rem;
  }
  .hero {
    padding: 26px 0 20px 0;
  }
  .container {
    padding: 0 9px;
  }
  .content-wrapper, .features .container, .services .container {
    gap: 16px;
  }
  .card-container,
  .feature-grid,
  .testimonials .content-wrapper,
  .content-grid {
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .service-item {
    flex-direction: column;
    gap: 13px;
    padding: 17px 9px;
  }
  .feature-item {
    min-width: unset;
    flex-basis: unset;
    padding: 17px 10px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 7px;
    padding: 16px 7px;
  }
  .section, .features, .services, .about-short, .about, .call-to-action, .thank-you, .contact-details, .legal {
    padding: 23px 8px;
    margin-bottom: 30px;
  }
  footer {
    padding: 29px 9px 18px 9px;
    gap: 14px;
    font-size: .997rem;
  }
  .footer-nav {
    gap: 11px;
    flex-wrap: wrap;
    font-size: 0.97rem;
  }
}
@media (max-width: 435px) {
  .mobile-nav {
    margin: 60px 0 0 11px;
    gap: 12px;
  }
  .cookie-modal {
    padding: 17px 5px 8px 5px;
    min-width: unset;
    font-size: 0.96rem;
  }
}

/*--- UTILITY CLASSES FOR SPACING & FLEX ---*/
.mt-0 { margin-top: 0px!important; }
.mt-8 { margin-top: 8px!important; }
.mb-0 { margin-bottom: 0px!important; }
.mb-20 { margin-bottom: 20px!important; }
.d-flex { display: flex!important; }
.flex-column { flex-direction: column!important; }
.full-width { width: 100%!important; }

/*--- Z-INDEX SAFEGUARD ---*/
header { z-index: 30; }
.mobile-menu { z-index: 1040; }
#cookie-banner { z-index: 1200; }
#cookie-modal-overlay { z-index: 1300; }

/*--- ANIMATIONS ---*/
@media (prefers-reduced-motion: no-preference) {
  .cta-btn, .button, .card, .feature-item, .testimonial-card, .service-item, .mobile-menu, #cookie-banner, #cookie-modal-overlay, .cookie-modal {
    transition: all 0.18s cubic-bezier(.68,-0.55,.27,1.55);
  }
}

/*--- MICRO INTERACTIONS HOVER (CARD SHADOWS) ---*/
.card:hover, .feature-item:hover, .service-item:hover {
  box-shadow: 0 6px 28px var(--color-shadow-strong);
  transform: translateY(-3px) scale(1.018);
}
