/*----------------------------------*/
/*      CSS RESET & NORMALIZATION   */
/*----------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #181819;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.4em;
  color: #0a0a0a;
}
h1 {
  font-size: 2.7rem;
  letter-spacing: -1.5px;
}
h2 {
  font-size: 2rem;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
}
p {
  margin-top: 0;
  margin-bottom: 1.15em;
  font-size: 1rem;
  color: #232324;
}
a {
  color: #0a0a0a;
  text-decoration: none;
  transition: color 0.15s;
  outline: none;
}
a:hover, a:focus {
  color: #355D3A;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.7em;
  margin-top: 0.3em;
  margin-bottom: 1.2em;
}
ul li, ol li {
  margin-bottom: 0.6em;
  font-size: 1rem;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  outline: none;
  transition: background 0.15s, color 0.15s;
}
address {
  font-style: normal;
  color: #232324;
  margin-bottom: 1.5em;
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: #0a0a0a;
}
dl, dt, dd {
  margin: 0;
}
dl {
  margin-bottom: 1.5em;
}
dt {
  font-weight: 700;
  margin-top: 1.2em;
}
dd {
  margin-left: 0;
  color: #444;
}

/*------------------*/
/* CONTAINER LAYOUT */
/*------------------*/
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/*------------------*/
/* FLEXBOX PATTERNS */
/*------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fafafb;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(32,32,32,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  flex: 1 1 320px;
  min-width: 280px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #f8f8f9;
  box-shadow: 0 2px 8px rgba(24,24,24,0.04);
  border-radius: 14px;
  margin-bottom: 24px;
  padding: 24px 20px;
  min-width: 240px;
  max-width: 540px;
  border-left: 4px solid #355D3A;
}
.text-section {
  margin-bottom: 24px;
  padding-bottom: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/*----------------------------*/
/*      HEADER & NAVIGATION   */
/*----------------------------*/
header {
  background: #fff;
  border-bottom: 1px solid #d2d3d4;
  position: relative;
  z-index: 40;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px 0 8px 0;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #232324;
  padding: 6px 12px;
  border-radius: 8px;
  letter-spacing: 0.1px;
  transition: background 0.14s, color 0.14s;
  font-size: 1rem;
}
header nav a.cta-primary {
  background: #0a0a0a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.08rem;
  margin-left: 10px;
  box-shadow: 0 2px 10px rgba(40,40,40,0.09);
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  border: none;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
header nav a.cta-primary:hover,
header nav a.cta-primary:focus {
  background: #355D3A;
  color: #fff;
  box-shadow: 0 4px 16px rgba(40,40,40,0.15);
}
header nav a:hover,
header nav a:focus {
  background: #e2e3e4;
  color: #355D3A;
}
header nav img {
  height: 38px;
  margin-right: 8px;
}
.mobile-menu-toggle {
  display: none;
  background: #0a0a0a;
  color: #fff;
  border-radius: 50%;
  padding: 11px 12px 10px 12px;
  font-size: 1.5rem;
  position: absolute;
  right: 16px;
  top: 13px;
  z-index: 90;
  transition: background 0.16s, color 0.16s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #355D3A;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  right: 0;
  background: #fff;
  z-index: 140;
  transform: translateX(100%);
  transition: transform 0.29s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 40px rgba(20,20,22,0.2);
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: transparent;
  color: #0a0a0a;
  font-size: 2.2rem;
  align-self: flex-end;
  margin-right: 16px;
  margin-bottom: 16px;
  border-radius: 50%;
  transition: background 0.11s;
  padding: 2px 10px 2px 10px;
  z-index: 141;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #355D3A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 0 24px;
}
.mobile-nav a {
  font-family: 'Roboto Slab', Georgia, serif;
  color: #0a0a0a;
  font-size: 1.2rem;
  padding: 12px 0;
  width: 100%;
  border-radius: 10px;
  font-weight: 700;
  background: none;
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #181819;
  color: #fff;
}

/*-------------------------*/
/* HERO SECTION / LANDING  */
/*-------------------------*/
.hero {
  background: #0a0a0a;
  color: #fff;
  padding: 60px 0 80px 0;
  box-shadow: 0 10px 32px rgba(60,60,60,0.09);
}
.hero h1,
.hero p {
  color: #fff;
}
.hero .cta-primary {
  background: #fff;
  color: #0a0a0a;
  margin-top: 18px;
  box-shadow: 0 2px 16px rgba(30,30,30,0.15);
}
.hero .cta-primary:hover,
.hero .cta-primary:focus {
  background: #355D3A;
  color: #fff;
}

/*-------------------------------*/
/*       BUTTONS & CALL-TO-ACTIONS  */
/*-------------------------------*/
.cta-primary {
  display: inline-block;
  background: #0a0a0a;
  color: #fff;
  font-family: 'Roboto Slab', Georgia, serif;
  border-radius: 20px;
  font-weight: 700;
  letter-spacing: 0.15px;
  font-size: 1rem;
  padding: 10px 24px;
  border: none;
  transition: background 0.17s, color 0.17s, box-shadow 0.12s;
  box-shadow: 0 2px 10px rgba(40,40,40,0.08);
  outline: none;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #355D3A;
  color: #fff;
  box-shadow: 0 4px 18px rgba(20,20,20,0.12);
  text-decoration: none;
}
.cta-secondary {
  display: inline-block;
  background: #fff;
  color: #355D3A;
  border: 2px solid #355D3A;
  border-radius: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  margin-top: 16px;
  transition: background 0.15s, color 0.15s, border 0.14s;
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: #355D3A;
  color: #fff;
  border: 2px solid #181819;
}

/*----------------------*/
/*   FEATURES SECTION   */
/*----------------------*/
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fafafb;
  border-radius: 14px;
  font-size: 1.05rem;
  padding: 17px 20px;
  box-shadow: 0 2px 12px rgba(32,32,32,0.06);
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  color: #232324;
  min-width: 220px;
  max-width: 350px;
}
.features ul li img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/*------------------*/
/*    USP & USPS    */
/*------------------*/
.usps ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.usps ul li {
  background: #f8f8f9;
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  color: #232324;
  font-family: 'Open Sans', Arial, sans-serif;
}

/*---------------------------*/
/*   TESTIMONIALS / REVIEWS  */
/*---------------------------*/
.testimonial-card p {
  color: #222;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 0.5em;
}
.testimonial-card span {
  color: #333;
  font-size: 1rem;
  font-family: 'Roboto Slab', Georgia, serif;
  letter-spacing: 0.1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.testimonial-card span strong {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  color: #355D3A;
  font-size: 1.08rem;
}
.testimonial-card span span {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.1em;
}

/*----------------------------*/
/* SECTION: SERVICES HIGHLIGHT*/
/*----------------------------*/
.services-highlight div > div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.services-highlight div > div > div {
  flex: 1 1 300px;
  background: #f8f8f9;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(32,32,32,0.03);
  padding: 18px 24px 18px 18px;
  margin-bottom: 0;
}
.services-highlight strong {
  color: #355D3A;
  font-size: 1.07em;
}

/*--------------------------*/
/*   NEWSLETTER SECTION     */
/*--------------------------*/
.newsletter .content-wrapper {
  align-items: flex-start;
  text-align: left;
}
.newsletter em {
  color: #555;
  font-size: 0.96em;
}

/*---------------------------*/
/*  CATALOG PAGE / PRODUCT   */
/*---------------------------*/
.cta-banner {
  background: #0a0a0a;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(40,40,40,0.10);
  padding: 32px 24px;
  margin-bottom: 24px;
  margin-top: 36px;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 10px;
}
.cta-banner p {
  color: #dedede;
}
.cta-banner .cta-secondary {
  margin-top: 16px;
}

/*---------------------------*/
/*           FAQ             */
/*---------------------------*/
dl {
  border-left: 4px solid #d2d3d4;
  padding-left: 15px;
  margin-bottom: 32px;
}

/*------------------------*/
/*     FOOTER STYLES      */
/*------------------------*/
footer {
  background: #222;
  color: #fff;
  padding: 44px 0 16px 0;
  border-top: 1px solid #181819;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
footer nav a {
  font-size: 1rem;
  color: #ccc;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  border-radius: 7px;
  padding: 5px 10px;
  transition: background 0.15s, color 0.15s;
}
footer nav a:hover,
footer nav a:focus {
  color: #fff;
  background: #181819;
}
footer .footer-contact {
  color: #bbb;
  font-size: 0.98em;
  line-height: 1.7;
}
footer a img {
  height: 38px;
}

/*---------------------*/
/*   COOKIE BANNER     */
/*---------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #181819;
  color: #fff;
  padding: 24px 12px;
  box-shadow: 0 -4px 32px rgba(32,32,32,0.14);
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  font-size: 1rem;
  animation: cookieSlideIn 0.9s cubic-bezier(.26,.5,.37,1.16);
}
@keyframes cookieSlideIn {
  from { transform: translateY(140%) }
  to { transform: translateY(0) }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 9px 22px;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: background 0.16s, color 0.16s;
  margin: 0;
  outline: none;
}
.cookie-banner .accept {
  background: #355D3A;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #181819;
  border: 1.5px solid #d2d3d4;
}
.cookie-banner .settings {
  background: #0a0a0a;
  color: #fff;
  border: 1.5px solid #d2d3d4;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  box-shadow: 0 2px 10px rgba(40,40,40,0.14);
  background: #232324;
  color: #fff;
}

/*---------------------*/
/*   COOKIE MODAL POP  */
/*---------------------*/
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(12,12,12,0.64);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  color: #232324;
  border-radius: 14px;
  max-width: 380px;
  min-width: 280px;
  box-shadow: 0 6px 48px rgba(28,28,28,0.17);
  padding: 32px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  animation: modalPopIn 0.4s cubic-bezier(.57,.55,.5,1.11);
  position: relative;
}
@keyframes modalPopIn {
  from { transform: scale(0.83) translateY(48px); }
  to   { transform: scale(1) translateY(0);   }
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #ccc;
  border-radius: 11px;
  position: relative;
  margin-left: 8px;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-toggle input {
  opacity: 0;
  width: 1px;
  height: 1px;
  position: absolute;
}
.cookie-toggle span {
  display: block;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: -1px;
  box-shadow: 0 1px 4px rgba(24,24,24,0.10);
  transition: left 0.18s cubic-bezier(0.54,0,0.27,1);
}
.cookie-toggle input:checked + span {
  left: 16px;
  background: #355D3A;
}
.cookie-toggle.enabled {
  background: #355D3A;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.cookie-modal-content button {
  padding: 9px 20px;
  border-radius: 13px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  background: #355D3A;
  color: #fff;
  box-shadow: 0 2px 10px rgba(40,40,40,0.10);
  transition: background 0.12s;
}
.cookie-modal-content button.secondary {
  background: #eee;
  color: #181819;
}
.cookie-modal-content button:hover,
.cookie-modal-content button:focus {
  background: #181819;
  color: #fff;
}
.cookie-modal-content .close-modal {
  position: absolute;
  right: 12px;
  top: 10px;
  font-size: 1.5rem;
  background: none;
  color: #181819;
  border-radius: 50%;
  padding: 3px 7px;
  transition: background 0.13s;
}
.cookie-modal-content .close-modal:hover,
.cookie-modal-content .close-modal:focus {
  background: #d2d3d4;
}
.cookie-modal-content label {
  font-weight: 500;
  color: #222;
}

/*-------------------------*/
/*    GENERIC ELEMENTS     */
/*-------------------------*/
hr {
  border: 0;
  height: 1px;
  background: #d2d3d4;
  margin: 32px 0;
}
::-webkit-input-placeholder { color: #aaa; }
::-moz-placeholder          { color: #aaa; }
:-ms-input-placeholder      { color: #aaa; }
::placeholder              { color: #aaa; }

/*----------------------------------*/
/*         RESPONSIVE DESIGN        */
/*----------------------------------*/
@media (max-width: 1024px) {
  .content-wrapper {
    gap: 24px;
  }
  .section,
  .cta-banner,
  .hero {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 920px) {
  .footer .content-wrapper,
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .hero {
    padding-top: 38px;
    padding-bottom: 44px;
    text-align: left;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.08rem;
  }
  .section {
    padding: 26px 7px;
    margin-bottom: 36px;
  }
  .services-highlight div > div {
    flex-direction: column;
    gap: 16px;
  }
  .cta-banner {
    padding: 18px 8px;
    margin-top: 22px;
  }
  footer .content-wrapper {
    gap: 20px;
  }
  .testimonial-card {
    padding: 16px 10px;
    min-width: 0;
    max-width: 100%;
    font-size: 0.98em;
  }
  .features ul,
  .usps ul {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  nav a.cta-primary {
    font-size: 1rem;
    padding: 7px 12px;
    margin-left: 0;
  }
}
@media (max-width: 700px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 540px) {
  .hero h1 {
    font-size: 1.36rem;
  }
  .footer .content-wrapper,
  footer .content-wrapper {
    gap: 13px;
  }
  .cta-banner {
    font-size: 0.95em;
  }
  .cookie-modal-content {
    max-width: calc(100vw - 20px);
    min-width: 0;
    padding: 18px 8px 16px 8px;
  }
}

/*-------------------------------------*/
/*  MICRO-INTERACTIONS & TRANSITIONS   */
/*-------------------------------------*/
.card, .testimonial-card, .feature-item, .cta-banner, .cookie-banner, .cookie-modal-content {
  transition: box-shadow 0.16s, background 0.14s, border-color 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(40,40,40,0.13);
  background: #fff;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  border-left: 4px solid #639D73;
  background: #f0f2f1;
  box-shadow: 0 4px 24px rgba(52,52,52,0.12);
}
.features ul li:hover, .usps ul li:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 16px rgba(40,40,40,0.07);
}

/* End of CSS */
