/* RESET & BASELINE STYLES ----------------------------------- */
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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8FBFD;
  color: #18191F;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2D3646;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #50C6D4;
}
strong {
  font-weight: 700;
}
ul, ol {
  list-style-position: outside;
  padding-left: 24px;
}

/* FONT FACES ----------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #101115;
  letter-spacing: 0.5px;
  font-weight: 700;
  line-height: 1.1;
}
h1 { font-size: 2.75rem; margin-bottom: 16px; letter-spacing: 1.4px; }
h2 { font-size: 2.125rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 500; }
h4, h5, h6 { font-size: 1.125rem; }

.text-section h2 {
  margin-top: 32px;
}

p {
  margin-bottom: 14px;
  color: #282c33;
  font-size: 1rem;
}

/* LAYOUT: FLEXBOX CONTAINERS ------------------------ */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* Utility Flex Layouts */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(18, 22, 33, 0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .26s, transform .2s;
}
.card:hover {
  box-shadow: 0 24px 44px rgba(18, 22, 33, 0.14);
  transform: translateY(-4px) scale(1.015);
}
.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: 12px;
  box-shadow: 0 6px 20px rgba(18,22,33,0.10);
  margin-bottom: 20px;
  flex-wrap: wrap;
  color: #18191F;
}
.testimonial-card > div {
  flex: 1 1 220px;
  padding: 16px;
  background: #F8FBFD;
  border-radius: 8px;
  color: #1a1a1a;
  font-size: 1rem;
  margin: 0 2px 0 0;
}
.testimonial-card strong {
  color: #2D3646;
}
.testimonial-card span {
  color: #2D3646;
  letter-spacing: 1px;
  font-size: 1.1em;
  vertical-align: middle;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FEATURE GRID SPECIALS (Highlights) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(18,22,33,0.09);
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow .23s, transform .18s;
}
.feature-grid > div:hover {
  box-shadow: 0 13px 26px #2D364613;
  transform: translateY(-2px) scale(1.008);
}
.feature-grid h3 {
  font-size: 1.25rem;
  margin-top: 12px;
  margin-bottom: 6px;
}

/* PRODUCTS & CATEGORY ICONS ------------------ */
.product-list-grid, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.product-list-grid > div, .blog-list > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(18,22,33,0.09);
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow .19s, transform .19s;
}
.product-list-grid > div:hover, .blog-list > div:hover {
  box-shadow: 0 21px 34px #2D364616;
  transform: translateY(-3px) scale(1.012);
}
.category-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.category-icons > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(18,22,33,0.09);
  padding: 18px 10px 10px 10px;
  margin-bottom: 20px;
  min-width: 120px;
  max-width: 145px;
  flex: 1 1 120px;
  text-align: center;
}
.category-icons p {
  margin: 8px 0 0 0;
  font-size: .95em;
  color: #363845;
}

/* BLOG TAGS AND CATEGORY LIST ------------------- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 10px 0;
}
.tag-cloud span {
  background: #2D3646;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: .96em;
  border-radius: 17px;
  padding: 5px 18px;
  letter-spacing: .7px;
  transition: background .18s;
}
.tag-cloud span:hover {
  background: #50C6D4;
  color: #101116;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.category-list li {
  background: #fff;
  padding: 8px 18px;
  border-radius: 15px;
  color: #2D3646;
  font-weight: 500;
  font-family: 'Oswald', Arial, sans-serif;
  box-shadow: 0 1px 4px #2D36460a;
  font-size: .98em;
}

/* NAVIGATION & HEADER -------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid #E5E9F2;
  padding: 0;
  width: 100%;
  z-index: 90;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  justify-content: space-between;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05em;
  font-weight: 500;
  color: #2D3646;
  border-radius: 6px;
  padding: 7px 16px;
  transition: background .19s, color .19s;
}
header nav a:hover, header nav a:focus, nav a.active {
  background: #2D3646;
  color: #fff;
}
.cta-btn {
  background: #2D3646;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 10px 32px;
  font-size: 1.18em;
  border: none;
  border-radius: 9px;
  box-shadow: 0 3px 10px #22222622;
  font-weight: 700;
  cursor: pointer;
  transition: background .22s, box-shadow .18s, color .18s, transform .17s;
  display: inline-block;
  margin-top: 6px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #50C6D4;
  color: #212a2f;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 10px 21px #2D36461C;
}

/* HERO SECTION ---------------------------------- */
.hero {
  background: linear-gradient(90deg, #fff 60%, #dbe1ea1a 100%);
  padding: 56px 0 52px 0;
  margin-bottom: 56px;
}
.hero .container .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.65rem;
  color: #101115;
  margin-bottom: 12px;
}
.hero p {
  color: #2D3646;
  font-size: 1.18em;
}
.hero .cta-btn {
  margin-top: 34px;
  font-size: 1.15em;
}

/* BUTTONS & LINKS -------------------------------- */
button, .cta-btn {
  cursor: pointer;
  outline: none;
  border: none;
}
button {
  background: none;
  font-family: 'Oswald', Arial, sans-serif;
}

/* SERVICE TABLES & FAQ ------------------------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(24,27,35,0.08);
  margin-bottom: 28px;
  font-size: 1rem;
}
.price-table thead {
  background: #2D3646;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
}
.price-table th, .price-table td {
  padding: 16px 18px;
  text-align: left;
}
.price-table tbody tr {
  border-top: 1px solid #e4e9f0;
}
.price-table tbody tr:nth-child(even) {
  background: #F8FBFD;
}
.faq {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px #2D36460a;
  padding: 20px 18px;
  margin-bottom: 22px;
}
.faq h3 {
  font-size: 1.09rem;
  margin-bottom: 12px;
}

/* USP, VALUE ICONS, LISTS ------------------------ */
.usp-list, .benefits-list, .services-list, .workshop-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.value-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 19px;
}
.value-icons img {
  height: 42px;
  width: 42px;
}

/* FOOTER ------------------------------------------ */
footer {
  background: #101115;
  color: #E2E5E7;
  padding: 0 0 11px 0;
}
footer .container {
  padding: 21px 20px 11px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-brand img {
  width: 58px;
  height: 58px;
}
.footer-brand p, .footer-brand a {
  color: #D1CFD9;
  font-size: .95em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  color: #f0f0f0;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.03em;
  font-weight: 500;
  border-radius: 4px;
  transition: background .18s, color .19s;
  padding: 3px 10px 3px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #2D3646;
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-top: 4px;
}
.footer-social img {
  width: 32px;
  height: 32px;
  filter: grayscale(100%) contrast(1.2);
  transition: filter .18s, transform .18s;
}
.footer-social a:hover img {
  filter: grayscale(0%) contrast(1.2);
  transform: scale(1.13);
}

/* CONTACT INFO ------------------------------------ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.contact-info img {
  width: 21px;
  height: 21px;
  vertical-align: middle;
  margin-right: 10px;
}

/* MODALS & COOKIE BANNER -------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #101115;
  color: #fff;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 24px 18px 24px;
  box-shadow: 0 -4px 18px #22222644;
  transition: transform .35s cubic-bezier(.68,-0.55,.27,1.55);
  transform: translateY(0);
  gap: 24px;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-banner .cookie-banner-content {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-consent-banner button,
.cookie-consent-banner .cookie-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1em;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  padding: 8px 20px;
  font-weight: 500;
  margin: 0 4px 0 0;
  transition: background .16s, color .16s, box-shadow .17s;
}
.cookie-consent-banner .cookie-accept {
  background: #50C6D4;
  color: #18191F;
}
.cookie-consent-banner .cookie-accept:hover,
.cookie-consent-banner .cookie-accept:focus {
  background: #37adb9;
}
.cookie-consent-banner .cookie-reject {
  background: #fff;
  color: #2D3646;
  border: 1px solid #2D3646;
}
.cookie-consent-banner .cookie-reject:hover,
.cookie-consent-banner .cookie-reject:focus {
  background: #e9eff3;
  color: #18191F;
}
.cookie-consent-banner .cookie-settings {
  background: transparent;
  color: #50C6D4;
  border: 1px solid #50C6D4;
}
.cookie-consent-banner .cookie-settings:hover,
.cookie-consent-banner .cookie-settings:focus {
  background: #212a30;
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,27,35, 0.54);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity .24s;
}
.cookie-modal-overlay.open {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #18191F;
  border-radius: 15px;
  box-shadow: 0 14px 64px #2D364632;
  padding: 40px 36px 32px 36px;
  width: 97vw;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeInScale .37s cubic-bezier(.43,1.13,.84,.99);
}
@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(.92); }
  100% { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.55rem;
  color: #2D3646;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-category-row label {
  font-size: 1.07em;
  font-weight: 500;
  color: #222;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 13px;
  background: #e6e8ed;
  position: relative;
  cursor: pointer;
  transition: background .16s;
  margin-left: 7px;
  display: inline-block;
}
.cookie-toggle input[type=checkbox] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  top: 2px; left: 3px;
  height: 18px; width: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s, background .18s;
  box-shadow: 0 1px 2px #2D364623;
}
.cookie-toggle input:checked + .slider {
  left: 17px;
  background: #50C6D4;
}
.cookie-category-row .required {
  font-size: .93em;
  color: #999;
  font-style: italic;
  letter-spacing: 0.2px;
}
.cookie-modal .cookie-modal-buttons {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}
.cookie-modal .cookie-accept,
.cookie-modal .cookie-reject {
  min-width: 110px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 19px;
  background: transparent;
  color: #2D3646;
  font-size: 1.55em;
  border: none;
  cursor: pointer;
  border-radius: 99px;
  padding: 2px 10px;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: #e6ecef;
}

/* MOBILE MENU (BURGER MENU) -------------------- */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2001;
  background: #2D3646;
  color: #fff;
  border-radius: 8px;
  padding: 7px 20px 7px 14px;
  font-size: 2rem;
  border: none;
  box-shadow: 0 3px 10px #2D36463a;
  display: none;
  transition: background .21s, color .16s, box-shadow .15s, transform .22s;
}
.mobile-menu-toggle:active {
  background: #36384a;
  transform: scale(.98);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #22252b;
  color: #fff;
  transform: translateX(-100vw);
  transition: transform .35s cubic-bezier(.72,-0.07,.4,1), box-shadow .21s;
  z-index: 3000;
  box-shadow: 48px 0 56px #2D364646;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 27px;
  background: transparent;
  color: #50C6D4;
  font-size: 2.3rem;
  border: none;
  border-radius: 50%;
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  transition: background .17s, color .15s;
  z-index: 3500;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2D364699;
  color: #fff;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 100px;
  margin-left: 29px;
  margin-right: 29px;
}
.mobile-nav a {
  display: block;
  font-size: 1.25em;
  font-family: 'Oswald', Arial, sans-serif;
  color: #fff;
  font-weight: 500;
  padding: 13px 7px 13px 0;
  border-radius: 6px;
  transition: background .18s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #222931;
  color: #50C6D4;
}
.mobile-nav a.active {
  color: #50C6D4;
}
/* Responsive Touch Target */
.mobile-nav a:active {
  background: #181A1B;
}

/* Hide desktop navs on mobile */
@media (max-width: 1024px) {
  header nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 34px 0 30px 0;
    margin-bottom: 32px;
  }
  .section {
    margin-bottom: 36px;
    padding: 23px 3vw 23px 3vw;
  }
  .container {
    padding-right: 5vw;
    padding-left: 5vw;
  }
  header .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  h1 {
    font-size: 1.9rem;
  }
  h2 {
    font-size: 1.23rem;
  }
  .feature-grid, .category-icons {
    gap: 12px;
  }
  .feature-grid > div, .product-list-grid > div, .category-icons > div,
  .blog-list > div {
    min-width: 95vw;
    max-width: 99vw;
    width: 100%;
    margin-bottom: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 10px;
  }
  .testimonial-card > div {
    padding: 11px;
    min-width: 1px;
    width: 100%;
  }
  .card-container, .content-grid, .product-list-grid, .blog-list {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .footer-social img {
    width: 26px;
    height: 26px;
  }
  footer .container, footer .content-wrapper {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .footer-brand img {
    width: 41px; height: 41px;
  }
}

/* Extra touch targets on mobile nav */
@media (max-width: 480px) {
  .mobile-menu nav.mobile-nav {
    gap: 13px;
    margin-left: 14px; margin-right: 14px;
  }
  .mobile-nav a {
    font-size: 1.08em;
    padding: 11px 5px 11px 0;
  }
}

/* Hide mobile menu on desktop */
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* MEDIA QUERIES -- SPACING BASED ON DESIGN */
@media (max-width: 480px) {
  .section { padding: 13px 1.5vw 16px 1.5vw; }
  .faq { padding: 13px 7px; }
  .footer-brand p { font-size: .9em; }
}

/* CHECKBOX for cookie always enabled */
.cookie-toggle input:disabled + .slider {
  background: #d8dde0 !important;
}

/* --- ANIMATION ENHANCEMENTS --- */
.cta-btn, .price-table, .feature-grid > div,
.card, .product-list-grid > div, .blog-list > div, .testimonial-card, .faq, .cookie-modal {
  transition: box-shadow .22s, background .18s, transform .19s, color .16s;
}

/* --- VISUAL HIERARCHY --- */
.section:not(:last-child) {
  border-bottom: 1px solid #E5E9F2;
}
.section:last-child {
  margin-bottom: 32px;
  border-bottom: none;
}

/* --- CUSTOM OVERRIDES FOR TABLES, LISTS, ETC. --- */
table {
  border-spacing: 0;
  width: 100%;
}
thead th {
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: .03em;
}

/* --- MISC --- */
::-webkit-scrollbar {width:7px;background:#D5D8DF;border-radius:7px;}
::-webkit-scrollbar-thumb {background:#b9bdc8;border-radius:7px;}
::-webkit-scrollbar-thumb:hover {background:#6e7c91;}

/* --- ACCESSIBILITY: Skip to content (optional) --- */
.skip-link {
  position: absolute;
  left: -100vw;
  top: 0;
  background: #2D3646;
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 12px 0;
  z-index: 10001;
  transition: left 0.23s;
}
.skip-link:focus {
  left: 0;
}

/* --- PRINT IMPROVEMENTS --- */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay {display:none !important;}
  .section, .container {box-shadow:none !important; background:none !important;}
}
