/* -----------------------------------------------------------
   CSS RESET & NORMALIZATION
----------------------------------------------------------- */
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,main,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; }
article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section { display: block; }
body { line-height: 1.5; background: #fff; color: #1A2411; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; }

/* -----------------------------------------------------------
   BRAND FONTS
----------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Lora:700,400,400italic&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

:root {
  --color-primary: #355B3E;
  --color-secondary: #D6BC96;
  --color-accent: #F3EEE7;
  --color-electric1: #14d46a;
  --color-electric2: #ff5a1f;
  --color-electric3: #1fc1ff;
  --color-electric4: #ff2079;
  --color-bg: #fff;
  --color-headline: #1A2411;
  --color-body: #222;
  --color-muted: #666;
  --color-card-bg: #fff;
  --color-border: #E8E6DF;
  --color-link: #355B3E;
  --color-cta-fg: #fff;
  --color-cta-bg: #ff5a1f;
  --color-cta-hover: #14d46a;
  --font-display: 'Lora', serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

body {
  background: var(--color-bg);
  color: var(--color-body);
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-headline);
  margin-bottom: 10px;
  font-weight: 700;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p, ul, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-body);
}
strong { font-weight: 700; }

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Section spacing - MANDATORY */
section {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Cards & Flex Content  - MANDATORY */
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { background: var(--color-card-bg); border-radius: 18px; margin-bottom: 20px; position: relative; box-shadow: 0 4px 20px rgba(102,255,170,0.08); overflow: hidden; transition: box-shadow 0.22s cubic-bezier(.77,.17,.35,1.12); }
.card:hover { box-shadow: 0 8px 28px rgba(255,90,31,0.11); z-index: 1; }

.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 24px; margin-bottom: 20px; background: #fff; border-radius: 16px; box-shadow: 0 2px 12px rgba(20, 212, 106, 0.06); border: 2px solid var(--color-secondary); }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature-Grids used as .feature-grid in HTML (normalize as variant of card-container) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 16px 0 8px 0;
}
.feature-grid > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(31,193,255,.07), 0 1px 3px rgba(20,212,106,.04);
  padding: 24px 20px 24px 20px;
  border: 2px solid var(--color-light, #F3EEE7);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.23s, box-shadow 0.23s;
  z-index: 0;
}
.feature-grid > div:hover {
  border-color: var(--color-electric1);
  box-shadow: 0 8px 20px rgba(255,32,121,0.10);
}
.feature-grid img {
  height: 40px;
  width: 40px;
  margin-bottom: 8px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: none;
  border: none;
}

/* -----------------------------------------------------------
   HEADER, NAVIGATION, LOGO
----------------------------------------------------------- */
header {
  width: 100%;
  background: var(--color-primary);
  padding: 0;
  box-shadow: 0 1px 16px rgba(31,241,255,0.06);
  z-index: 1000;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 0;
  min-height: 74px;
}
header img {
  height: 53px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
header nav a {
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 7px 15px;
  border-radius: 8px;
  transition: color 0.17s, background 0.19s;
  position: relative;
  outline: none;
}
header nav a:hover, header nav a:focus {
  color: var(--color-electric2);
  background: rgba(255,90,31,0.09);
}
header nav a.cta-primary {
  background: linear-gradient(90deg, var(--color-electric2) 0%, var(--color-electric1) 70%);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 1.07rem;
  box-shadow: 0 2px 10px rgba(255,90,31,0.10);
  padding: 10px 21px;
  border-radius: 17px;
  margin-left: 18px;
  z-index: 10;
  transition: background 0.22s;
}
header nav a.cta-primary:hover, header nav a.cta-primary:focus {
  background: linear-gradient(90deg, var(--color-electric1) 0%, var(--color-electric2) 80%);
  color:#fff;
}


/* Mobile menu toggle hamburger */
.mobile-menu-toggle {
  display: none;
  background: var(--color-electric1);
  color: #fff;
  font-size: 2rem;
  padding: 9px 17px;
  border-radius: 15px;
  border: none;
  margin-left: auto;
  cursor: pointer;
  z-index: 1010;
  box-shadow: 0 4px 16px rgba(20, 212, 106, 0.10);
  transition: background 0.17s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus { background: var(--color-electric2); outline:2px solid #fff; }


/* MOBILE NAVIGATION (full-screen overlay) */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  box-shadow: 0 12px 45px rgba(31,193,255,0.17);
  overflow-y: auto;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.59,1.19,.35,.88);
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-accent);
  font-size: 2.2rem;
  font-weight: bold;
  border: none;
  align-self: flex-end;
  margin: 18px 22px 8px 0;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--color-electric1); outline: none; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: flex-start;
  margin: 18px 32px;
  margin-top: 12px;
}
.mobile-nav a {
  color: var(--color-accent);
  padding: 14px 0;
  font-size: 1.23rem;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 12px;
  padding-left: 10px;
  width: 85vw;
  display: block;
  transition: background 0.16s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(255,90,31,0.17);
  color: var(--color-electric2);
}

/* Hide desktop nav and show hamburger on mobile */
@media (max-width: 990px) {
  header .container {
    gap:17px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu {
    display: none !important;
    opacity: 0;
  }
}

/* -----------------------------------------------------------
   MAIN CONTENT LAYOUT, SECTION, FLEX ADJUSTMENTS
----------------------------------------------------------- */
p, ul, li {
  line-height: 1.65;
}
section h2 {
  border-left: 7px solid var(--color-electric1);
  padding-left: 16px;
  margin-bottom: 12px;
  color: var(--color-headline);
  background: linear-gradient(90deg,rgba(31,193,255,0.04) 0%,rgba(255,32,121,0.09) 100%);
  border-radius: 9px 0 0 9px;
}
h1, .hero-title {
  background: none;
  color: var(--color-headline);
  font-size: 2.4rem;
  font-family: var(--font-display);
  text-shadow: 0px 1px 7px rgba(255,32,121,0.11);
  text-align: left;
}

.cta-primary {
  background: linear-gradient(90deg, var(--color-electric2) 0%, var(--color-electric1) 85%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 700;
  padding: 11px 28px;
  border-radius: 23px;
  border: none;
  box-shadow: 0 2px 16px rgba(20, 212, 106, 0.12);
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background 0.19s cubic-bezier(.51,.41,.62,1.11), color 0.09s;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, var(--color-electric1) 0%, var(--color-electric2) 85%);
  color: #fff;
  outline: 0;
}

.cta-secondary {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 15px;
  border: 1.5px solid var(--color-electric3);
  box-shadow: 0 1px 6px rgba(31,193,255,0.08);
  transition: background 0.16s, color 0.11s;
  margin: 0 12px 0 0;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-electric3);
  color: var(--color-primary);
  outline: 0;
}


/* Testimonial Cards - readable on light BG, use dark text */
.testimonial-card {
  background: #fff;
  color: var(--color-headline);
  border: 2px solid var(--color-electric1);
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(20,212,106,0.09);
  padding: 20px 27px;
  gap: 20px;
  margin-bottom: 22px;
  font-family: var(--font-body);
  position: relative;
  transition: box-shadow 0.15s, border-color 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 34px rgba(255,90,31,0.10);
  border-color: var(--color-electric2);
}
.testimonial-card p {
  font-size: 1.12rem;
  color: var(--color-body);
  margin-bottom: 7px;
  font-style: italic;
  max-width: 650px;
}
.testimonial-card span {
  font-size: .99rem;
  font-weight: bold;
  color: var(--color-headline);
  opacity: .85;
  padding-left: 8px;
}

/* Visual cards & feature items */
.card, .feature-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(255,32,121,.073), 0 1.5px 5px rgba(20,212,106,.09);
  border: 2px solid var(--color-border);
  transition: box-shadow 0.16s, border-color 0.16s;
}
.card:hover, .feature-grid > div:hover {
  border-color: var(--color-electric4);
  box-shadow: 0 8px 20px rgba(255,32,121,0.11);
  z-index: 1;
}

hr {
  border: none;
  border-top: 1px solid var(--color-electric1);
  margin: 32px 0 18px 0;
}

/* DEFAULT FLEX SPACING PATTERNS - 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; }

/* Give all main sections extra bottom margin for visual energy */
main > section, footer > section {
  margin-bottom: 44px;
}

/* List style enhancements */
ul li, ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}
ul li::before {
  content: '\2022';
  position: absolute;
  left: 3px;
  color: var(--color-electric2);
  font-size: 1.28em;
}

/* -----------------------------------------------------------
   FOOTER
----------------------------------------------------------- */
footer {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: 1rem;
}
footer .container { gap: 0; padding:0; }
footer .content-wrapper {
  gap: 8px;
  padding: 40px 0 16px 0;
}
footer nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
footer nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.17s;
  padding: 4px 7px;
  border-radius: 7px;
}
footer nav a:hover, footer nav a:focus {
  background: rgba(31,193,255,0.11);
  color: var(--color-electric2);
}
footer img {
  height: 22px;
  width: auto;
  margin-right: 7px;
  vertical-align: middle;
}


/* -----------------------------------------------------------
   COOKIE CONSENT BANNER
----------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 2000;
  background: #fff;
  color: var(--color-headline);
  border-top: 4px solid var(--color-electric1);
  box-shadow: 0 -2px 22px rgba(255,90,31,0.09);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 7vw 24px 7vw;
  font-size: 1.02rem;
  transition: transform 0.34s cubic-bezier(.85,0,.32,1.1), opacity 0.23s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity:0;
  pointer-events:none;
  transform: translateY(100%);
}
.cookie-banner p, .cookie-banner span { color: var(--color-body); font-size:1rem; }
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 14px;
  padding: 11px 24px;
  font-size: 1rem;
  margin-right: 3px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .accept {
  background: var(--color-electric1);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-electric2);
}
.cookie-banner .reject {
  background: var(--color-electric2);
  color: #fff;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--color-electric1);
}
.cookie-banner .settings {
  background: var(--color-electric3);
  color: var(--color-primary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-electric4);
  color: #fff;
}

/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(31,37,17,0.16);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal.show {
  display: flex;
  animation: fadeInModal 0.33s;
}
@keyframes fadeInModal {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 17px;
  box-shadow:0 11px 30px rgba(20,212,106,0.13), 0 2px 9px rgba(31,193,255,0.09);
  padding: 38px 32px 34px 38px;
  max-width: 420px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: stretch;
  position: relative;
}
.cookie-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.33rem;
  margin-bottom: 9px;
  color: var(--color-headline);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 15px 0 21px 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: var(--color-accent);
  border-radius: 10px;
  padding: 12px 19px 12px 10px;
  font-size: 1rem;
  font-family: var(--font-body);
}
.cookie-category label { font-weight: 600; margin-right: 8px; }
.cookie-category input[type="checkbox"] {
  accent-color: var(--color-electric1);
  width: 22px; height: 22px;
}
.cookie-category .essential-btn {
  background: var(--color-electric1);
  color: #fff;
  border-radius: 11px;
  font-size: 0.98rem;
  font-weight: 700;
  padding: 3px 10px;
  border: none;
  margin-left: 8px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal-actions button {
  background: var(--color-electric1);
  color: #fff;
  border-radius: 10px;
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 8px 22px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-actions button.close {
  background: var(--color-electric2);
}
.cookie-modal-actions button.close:hover, .cookie-modal-actions button.close:focus {
  background: var(--color-electric1);
}
.cookie-modal-actions button.save {
  background: var(--color-electric1);
}
.cookie-modal-actions button.save:hover, .cookie-modal-actions button.save:focus {
  background: var(--color-electric3);
}

/* -----------------------------------------------------------
   ANIMATIONS & HOVER DETAILS
----------------------------------------------------------- */
.cta-primary, .cta-secondary, button, .card, .feature-grid > div, .testimonial-card, .cookie-banner button {
  transition: background 0.15s, color 0.13s, box-shadow 0.18s, border-color 0.19s, transform 0.17s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.011);
  z-index: 100;
}
.cta-primary:active, .cta-secondary:active, .cookie-banner button:active {
  transform: scale(0.95);
}

/* -----------------------------------------------------------
   RESPONSIVE DESIGN
----------------------------------------------------------- */
@media (max-width: 1100px) {
  .container {
    padding: 0 9px;
    max-width: 97vw;
  }
  .section {
    padding: 35px 6vw;
  }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 2vw; }
  .content-wrapper { gap: 17px; }
  .section {
    margin-bottom:40px;
    padding: 28px 4vw;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card,
  .feature-grid > div, .card {
    padding: 17px 12px;
    min-width: unset; max-width: 100vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  section h2 { font-size:1.31rem; border-width: 4px; border-radius: 7px 0 0 7px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.25rem; }
  footer .content-wrapper { padding:24px 0 10px 0; }
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap:9px;
    padding: 24px 6vw 22px 6vw;
    font-size:0.97rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap:7px;
    width:100%;
    align-items: stretch;
  }
  .cookie-modal-content { padding:28px 9px 24px 9px; max-width:98vw; }
}

/* -----------------------------------------------------------
   A11Y & FOCUS MODE
----------------------------------------------------------- */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, input:focus, select:focus {
  outline: 2.5px solid var(--color-electric4);
  outline-offset: 2px;
  background:rgba(255,32,121,0.08);
}

/* -----------------------------------------------------------
   SCROLLBAR STYLE (ENERGETIC)
----------------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: var(--color-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--color-electric2);
  border-radius: 10px;
}

/* -----------------------------------------------------------
   MISC UTILITIES
----------------------------------------------------------- */
.hide { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; border: 0; padding: 0; white-space: nowrap; clip-path: inset(100%); clip: rect(0 0 0 0); overflow: hidden; }

/* -----------------------------------------------------------
   BRAND VIBRANT ENERGY – UTILITY BGs / DETAILS
----------------------------------------------------------- */
.bg-electric1 { background: var(--color-electric1) !important; color:#fff!important; }
.bg-electric2 { background: var(--color-electric2) !important; color:#fff!important; }
.bg-electric3 { background: var(--color-electric3) !important; color: var(--color-primary) !important; }
.outline-electric { border: 2px solid var(--color-electric2) !important; }

/* -----------------------------------------------------------
   EXTRAS: ICONS (if inside inline text-section)
----------------------------------------------------------- */
.text-section img {
  height: 19px; width: 19px;
  vertical-align: text-bottom;
  margin-right: 7px;
  margin-bottom: 2.5px;
}

/* --------------------------- END OF CSS --------------------------- */