/* RESET & BASELINE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #173E60;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  min-width: 320px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #173E60;
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: #24A37D; }
ul, ol {
  padding-left: 24px;
}
li {
  margin-bottom: 12px;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; color: #173E60; margin-bottom: 18px; }
h2 { font-size: 2rem; color: #24A37D; margin-bottom: 14px; }
h3 { font-size: 1.32rem; }
b, strong { font-weight: 700; }

p {
  margin-bottom: 18px;
  font-size: 1rem;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.content-wrapper {
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F7FCFD;
  border-radius: 22px;
  box-shadow: 0 6px 28px 0 rgba(23,62,96,0.06);
  position: relative;
}

.section:nth-child(even) {
  background: #fff;
}

main > section:not(:last-child) {
  margin-bottom: 36px;
}

/* HEADER & NAVIGATION */
header {
  background: #173E60;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  box-shadow: 0 4px 14px 0 rgba(23,62,96,0.09);
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 16px 20px 16px 14px;
}
header nav a {
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1.1;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background .2s, color .2s;
  position: relative;
}
header nav a:hover:not(.cta-primary) {
  background: #24A37D;
  color: #fff;
}

header nav a.cta-primary {
  background: #24A37D;
  color: #fff;
  box-shadow: 0 3px 26px 0 rgba(36,163,125,0.16);
  padding: 10px 22px;
  border-radius: 36px;
  font-weight: 800;
  font-size: 1.04rem;
  text-shadow: 0 1px 5px rgba(23,62,96,0.06);
  transition: background .22s, color .22s, box-shadow .16s;
}
header nav a.cta-primary:hover, .cta-primary:hover {
  background: #fff;
  color: #24A37D;
  box-shadow: 0 7px 22px 0 rgba(36,163,125,0.24);
}

header nav img {
  height: 40px;
  width: auto;
  margin-right: 4px;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  z-index: 999;
  background: #fff;
  border: none;
  font-size: 2.14rem;
  color: #24A37D;
  border-radius: 16px;
  padding: 4px 18px;
  margin-right: 12px;
  transition: background .19s, color .18s;
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #24A37D;
  color: #fff;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #173E60;
  color: #fff;
  z-index: 1100;
  transition: transform 0.35s cubic-bezier(.68,-0.6,.32,1.6), opacity .14s;
  transform: translateX(-100%);
  will-change: transform, opacity;
}
.mobile-menu.active {
  display: block;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: #fff;
  color: #173E60;
  font-size: 2.1rem;
  border: none;
  border-radius: 16px;
  position: absolute;
  top: 22px;
  right: 28px;
  padding: 6px 16px;
  z-index: 1201;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(23,62,96,0.10);
  transition: background .17s, color .17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #24A37D;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 110px 18px 18px 18px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.44rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 20px;
  transition: background .19s, color .18s;
}
.mobile-nav a:hover {
  background: #24A37D;
  color: #fff;
}

/* MAIN & SECTIONS */
main {
  background: #fff;
  width: 100%;
}

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(23,62,96,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 18px;
  min-width: 240px;
  flex: 1 1 260px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 7px 36px 0 rgba(36,163,125,0.23), 0 1.5px 7px 0 rgba(23,62,96,0.07);
  transform: translateY(-5px) scale(1.03) rotate(-0.7deg);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  min-width: 140px;
}

.product-slider,
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 34px 0;
  justify-content: flex-start;
}
.product-card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 14px 0 rgba(23,62,96,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 16px 22px 16px;
  min-width: 200px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  transition: box-shadow .16s, transform .19s;
  z-index: 1;
}
.product-card:hover {
  box-shadow: 0 8px 30px 0 rgba(36,163,125,0.25);
  transform: translateY(-5px) scale(1.035);
}
.product-card img {
  height: 50px;
  width: 50px;
  margin-bottom: 7px;
}
.product-card h3 {
  font-size: 1.06rem;
  margin-bottom: 6px;
  color: #173E60;
}
.product-card p {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #446E96;
}

.promo-card {
  background: #24A37D;
  border-radius: 18px;
  color: #fff;
  padding: 26px 20px 22px 20px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 16px 0 rgba(23,62,96,0.09);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  max-width: 350px;
}
.promo-card img {
  height: 40px;
  width: 40px;
  margin-bottom: 7px;
}
.discount-badge {
  background: #fff;
  color: #24A37D;
  border-radius: 16px;
  font-weight: 800;
  padding: 4px 13px;
  font-size: .98rem;
  margin-bottom: 8px;
  box-shadow: 0 3px 10px 0 rgba(23,62,96,0.09);
  display: inline-block;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 17px;
  background: #fff;
  color: #173E60;
  box-shadow: 0 2px 17px 0 rgba(23,62,96,0.08);
  position: relative;
  min-width: 220px;
  max-width: 350px;
  transition: box-shadow .19s, transform .16s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px 0 rgba(36,163,125,0.19);
  transform: scale(1.025);
}
.testimonial-card p {
  color: #173E60;
  font-weight: 500;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #24A37D;
  font-weight: 700;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 13px rgba(23,62,96,0.08);
  padding: 17px 14px;
}

/* BUTTONS, CTAs */
.cta-primary {
  background: #24A37D;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.07rem;
  letter-spacing: .02em;
  border-radius: 32px;
  padding: 13px 32px;
  margin-top: 14px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background .23s, color .18s, box-shadow .18s, transform .16s;
  box-shadow: 0 3px 22px 0 rgba(36,163,125,0.15);
  text-align: center;
  text-shadow: 0 1px 3px rgba(23,62,96,0.07);
  display: inline-block;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #fff;
  color: #24A37D;
  box-shadow: 0 8px 34px 0 rgba(36,163,125,0.25);
  outline: none;
  transform: scale(1.04);
}
button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 14px;
}

/* UL/LI LISTS WITH ICONS */
ul li img {
  height: 19px;
  width: 19px;
  margin-right: 8px;
  vertical-align: top;
}
ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 16px;
}
ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #173E60;
  background: none;
}

/* FOOTER */
footer {
  background: #173E60;
  color: #fff;
  padding: 34px 0 18px 0;
  margin-top: 34px;
}
footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 13px;
  flex-wrap: wrap;
}
footer nav a {
  color: #fff;
  font-size: 0.93rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 10px;
  transition: background .17s;
}
footer nav a:hover {
  background: #24A37D;
  color: #fff;
}
footer .text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .99rem;
  color: #84B1D9;
}

/* SPACING for LAYOUT CLASSES (MANDATORY) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #173E60;
  color: #fff;
  padding: 18px 20px 18px 16px;
  z-index: 2000;
  box-shadow: 0 -2px 20px 0 rgba(23,62,96,0.12);
  justify-content: space-between;
  font-size: 1.02rem;
  gap: 18px;
  transition: transform .26s, opacity .18s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner-text {
  flex: 1 1 auto;
  margin-right: 20px;
  color: #fff;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #24A37D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  padding: 9px 23px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background .22s, color .18s;
  margin-bottom: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #24A37D;
}
.cookie-btn-outline {
  background: #fff;
  color: #24A37D;
  border: 2px solid #24A37D;
}
.cookie-btn-outline:hover, .cookie-btn-outline:focus {
  background: #24A37D;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,55,99,0.65);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity .18s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #173E60;
  border-radius: 18px;
  box-shadow: 0 10px 80px 0 rgba(23,62,96,0.22);
  max-width: 410px;
  width: 90vw;
  padding: 30px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp .32s;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.22rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #24A37D;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  border-radius: 20px;
  background: #E7F7F3;
  position: relative;
  transition: background .17s;
  cursor: pointer;
  margin-left: 18px;
  flex-shrink: 0;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-label {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #24A37D;
  border-radius: 50%;
  transition: left .18s, background .17s;
}
.cookie-toggle input:checked + .cookie-toggle-label {
  left: 20px;
  background: #173E60;
}
.cookie-category-essential {
  font-weight: 700;
}
.cookie-modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 12px;
  background: none;
  border: none;
  color: #24A37D;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: #173E60;
}
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(40px); }
  to { opacity:1; transform: none; }
}

/* MICRO-INTERACTIONS & TRANSITIONS */
a, button, .cta-primary, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition-property: background, color, box-shadow, transform;
  transition-duration: .2s;
}
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1150px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  header nav { gap: 16px; padding: 14px 5vw; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { max-width: 100vw; padding-left: 8px; padding-right: 8px; }
  header nav { display: none; }
  .mobile-menu-toggle { display: block; position: absolute; right: 13px; top: 11px; font-size: 2rem; }
  .section, section { padding: 28px 5px; }
  .card-container, .product-slider, .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
  .card, .product-card, .testimonial-card {
    min-width: 90vw;
    max-width: 96vw;
    width: 100%;
    padding: 19px 12px;
  }
  .promo-card {
    min-width: 90vw;
    max-width: 97vw;
    padding: 19px 10px;
  }
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .footer nav { flex-wrap: wrap; gap: 15px; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  .section, section { padding: 12px 1px 30px 1px; margin-bottom: 29px; }
  .card, .product-card, .testimonial-card, .promo-card { padding: 12px 5px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; font-size: .95rem; gap: 7px; padding: 11px 7px 12px 13px; }
  .cookie-banner-buttons { gap: 6px; }
}

/* VIBRANT ENERGETIC ELECTRIC ACCENTS */
.cta-primary, .cookie-btn {
  background: linear-gradient(90deg,#24A37D 50%,#17E1B7 100%);
  box-shadow: 0 1px 16px 0 rgba(36,163,125,0.19);
  color: #fff;
}
.cta-primary:hover, .cookie-btn:hover {
  background: linear-gradient(90deg,#fff 40%,#24A37D 100%);
  color: #24A37D;
  box-shadow: 0 5px 24px 0 rgba(36,163,125,0.30);
}

.promo-card {
  background: linear-gradient(99deg,#24A37D 73%,#17E1B7 97%);
  box-shadow: 0 5px 35px 0 rgba(36,163,125,0.21);
  border: 2.4px solid #fff;
}
.discount-badge {
  border: 2px solid #17E1B7;
}

.section, .card, .product-card, .promo-card, .testimonial-card {
  border-radius: 17px 40px 19px 33px/33px 19px 40px 17px;
}

.text-section {
  font-size: .91rem;
  color: #acdbe5;
}

/* HIGH CONTRAST ON TESTIMONIALS */
.testimonial-card {
  background: #fff;
  color: #173E60;
  box-shadow: 0 2px 17px 0 rgba(23,62,96,0.11);
}
.testimonial-card p, .testimonial-card span {
  color: #173E60;
  background: none;
}

/* MISC */
::-webkit-scrollbar {
  width: 7px;
  background: #E5F8F3;
}
::-webkit-scrollbar-thumb {
  background: #24A37D;
  border-radius: 7px;
}

/* ANIMATIONS */
@keyframes cardPulse {
  0% { box-shadow: 0 4px 17px 0 #f0f6e6; }
  60% { box-shadow: 0 8px 32px 0 #aeeed7; }
  100% { box-shadow: 0 4px 17px 0 #f0f6e6; }
}
.product-card:hover, .promo-card:hover, .card:hover {
  animation: cardPulse .77s 1;
}

/* UTILITIES */
.text-center { text-align: center; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.w-100 { width: 100%; }
.mb-1 { margin-bottom: 7px; }
.mb-2 { margin-bottom: 16px; }

/* Fix for focus state for accessibility */
a:focus-visible, button:focus-visible { outline: 2px solid #1dddae; outline-offset: 1px; }
