/* CSS RESET & NORMALIZE */
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 {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #324D3B;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}

:root {
  --primary: #324D3B;
  --secondary: #EFEAE7;
  --accent: #B05318;
  --accent2: #D37946;
  --electric-1: #FF3F80;
  --electric-2: #1BCAB4;
  --electric-3: #FFD600;
  --electric-4: #4561F1;
  --link-hover: #FF3F80;
  --shadow-main: 0 4px 28px 0 rgba(210, 121, 70, 0.10);
  --radius-main: 18px;
  --gap-main: 24px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  background: var(--secondary);
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

/****************************
  HEADER & NAVIGATION
*****************************/
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(50,77,59,0.08);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}
header nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 16px;
  border-radius: var(--radius-main);
  color: var(--primary);
  transition: background 0.15s, color 0.15s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--electric-1);
  color: #fff;
}
header a img {
  height: 44px;
}

.cta-button {
  background: linear-gradient(90deg, var(--electric-1) 36%, var(--accent2) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  padding: 12px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px 0 rgba(255,63,128,0.09);
  margin-left: 18px;
  transition: background 0.19s, box-shadow 0.19s, transform 0.13s cubic-bezier(.4,0,.2,1);
  outline: none;
  display: inline-block;
  letter-spacing: 0.03em;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--accent2) 36%, var(--electric-1) 100%);
  box-shadow: 0 8px 32px 0 rgba(255,63,128,0.14);
  transform: translateY(-1px) scale(1.03);
}

/****************************
  MOBILE MENU
*****************************/
.mobile-menu-toggle {
  display: none;
  background: var(--electric-1);
  border: none;
  color: #fff !important;
  font-size: 36px;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 10px;
  z-index: 67;
  cursor: pointer;
  transition: background .2s;
  outline: none;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent2);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 60;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.7,.3,.2,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 26px 26px 26px;
  box-shadow: 0 2px 44px 0 rgba(50,77,59,0.14);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--electric-1);
  color: #fff;
  border: none;
  font-size: 40px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 20px;
  right: 24px;
  cursor: pointer;
  z-index: 61;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent2);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
}
.mobile-nav a {
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 14px 0;
  color: var(--primary);
  border-bottom: 1px solid var(--secondary);
  border-radius: 0;
  transition: color .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--electric-1);
}

/****************************
  GENERAL LAYOUT
*****************************/
main {
  padding-top: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 0;
  width: 100%;
}
.text-section {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 0;
  margin-top: 0;
}
ul.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
ul.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 17px;
  background: #fff;
  padding: 12px 22px;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(50,77,59,0.07);
  color: var(--primary);
  font-weight: 500;
}
ul.feature-list li img {
  width: 26px;
  height: 26px;
  border-radius: 99px;
  background: var(--electric-2);
  object-fit: contain;
  margin-right: 6px;
}
/********************************************
  GRID & FLEX MODULES - FLEXBOX ONLY
*********************************************/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.feature-grid > div {
  flex: 1 1 260px;
  min-width: 235px;
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-main);
  padding: 24px 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px 0 rgba(27,202,180,0.08), 0 2px 12px 0 rgba(210,121,70,0.14);
  transform: translateY(-3px) scale(1.025);
}

/* MANDATORY FLEXBOX LAYOUTS */
.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;
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 24px 0 rgba(255,214,0,0.08), 0 1.5px 7px 0 rgba(50,77,59,0.07);
  margin-bottom: 20px;
  flex-direction: row;
  min-width: 200px;
  border-left: 7px solid var(--electric-1);
  transition: box-shadow 0.21s, border-color 0.18s;
}
.testimonial-card:hover {
  border-left-color: var(--electric-4);
  box-shadow: 0 6px 32px 0 rgba(27,202,180,0.10);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/****************************
  TYPOGRAPHY
*****************************/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.2em;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--electric-1);
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  color: var(--electric-4);
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--electric-2);
}
h4, h5, h6 {
  font-size: 1.125rem;
}
.tagline {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--electric-2);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
p, li, blockquote, cite, label, ul, ol {
  font-size: 1.05rem;
  color: var(--primary);
}

blockquote {
  font-size: 1.18rem;
  color: #324D3B;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 6px;
  line-height: 1.4;
  position: relative;
  padding-left: 20px;
}
blockquote:before {
  content: '“';
  color: var(--electric-1);
  font-size: 2.5em;
  position: absolute;
  left: 0;
  line-height: 0.7;
}
cite {
  font-size: .97rem;
  color: var(--accent2);
  font-style: normal;
  font-weight: 700;
}
.cta-text {
  font-size: 1.3rem;
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
}

/****************************
  BUTTONS & INTERACTIVES
*****************************/
button, .cta-button {
  font-family: var(--font-display);
  font-weight: 700;
}
button:focus, .cta-button:focus { outline: 2px solid var(--electric-4); outline-offset: 1.5px; }

/****************************
  FAQ BLOCKS
*****************************/
.faq-block {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px 0 rgba(27,202,180,0.11);
  padding: 22px 24px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-block h3 {
  font-size: 1.18rem;
  color: var(--electric-1);
  margin-bottom: 2px;
  margin-top: 14px;
}
/****************************
  FOOTER
*****************************/
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 22px 0;
  box-shadow: 0 -2px 17px 0 rgba(50,77,59,0.04);
  margin-top: 60px;
  position: relative;
}
footer .container {
  justify-content: flex-start;
  flex-direction: column;
  gap: 30px;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
footer nav a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--font-display);
  padding: 7px 10px;
  border-radius: 10px;
  transition: background .15s, color 0.12s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--accent2);
  color: #fff;
}
.footer-contact {
  color: #fff;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  position: relative;
  top: 3px;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}
.footer-branding img {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
}
.footer-branding span {
  font-size: 1.08rem;
  font-family: var(--font-display);
  font-weight: 700;
}
/****************************
  COOKIE CONSENT BANNER
*****************************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--electric-4);
  color: #fff;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
  box-shadow: 0 -6px 22px 0 rgba(50,77,59,0.14);
  font-family: var(--font-display);
  gap: 20px;
  animation: bannerIn .6s cubic-bezier(.55,.06,0,1.05);
}
@keyframes bannerIn {
  0% { transform: translateY(90px); opacity:0; }
  72% { opacity:.95; }
  100%{ transform: translateY(0); opacity:1; }
}
.cookie-banner__text {
  font-size: 1.1rem;
  color: #fff;
  flex: 1 1 auto;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  background: var(--electric-2);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1rem;
  padding: 9px 21px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-banner .cookie-btn-accept {
  background: var(--electric-1);
}
.cookie-banner .cookie-btn-accept:hover, .cookie-banner .cookie-btn-accept:focus {
  background: var(--electric-4);
}
.cookie-banner .cookie-btn-reject {
  background: var(--accent2);
}
.cookie-banner .cookie-btn-reject:hover, .cookie-banner .cookie-btn-reject:focus {
  background: var(--electric-3);
  color: #324D3B;
}
.cookie-banner .cookie-btn-settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 19px;
}
.cookie-banner .cookie-btn-settings:hover, .cookie-banner .cookie-btn-settings:focus {
  background: #fff;
  color: var(--primary);
}

/****************************
  COOKIE MODAL
*****************************/
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(50,77,59,0.61);
  z-index: 1160;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  animation: fadeInModal .32s cubic-bezier(.5,.3,0,1.05);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__content {
  background: #fff;
  color: var(--primary);
  border-radius: 23px;
  padding: 46px 30px 24px 30px;
  box-shadow: 0 9px 36px 0 rgba(255,63,128,0.19), 0 2px 20px 0 rgba(27,202,180,0.11);
  min-width: 290px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  animation: modalSlideIn .34s cubic-bezier(.55,.06,0,1.05);
}
@keyframes modalSlideIn {
  from { transform: translateY(60px); opacity:.72; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: var(--electric-1);
  color: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  outline: none;
  transition: background .15s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: var(--accent2);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category label {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--accent2);
  width: 20px; height: 20px;
}
.cookie-category input[disabled] { opacity: 0.56; pointer-events:none; }
.cookie-category .required {
  color: var(--electric-3);
  font-size: 0.88em;
  margin-left: 9px;
}
.cookie-modal__actions {
  display: flex;
  gap: 15px;
  margin-top: 14px;
}
.cookie-modal__actions button {
  font-size: 1rem;
  padding: 8px 23px;
}

/****************************
  RESPONSIVE DESIGN
*****************************/
@media (max-width: 1050px) {
  .feature-grid > div { min-width: 190px; font-size: 95%; }
  header .container { flex-wrap: wrap; }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.34rem; }
  .feature-grid > div { min-width: 160px; }
  footer .container { gap: 17px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 8px;
    min-height: 64px;
  }
  nav {
    display: none !important;
  }
  .cta-button {
    margin-left: 0;
    font-size: 15.5px;
    padding: 12px 18px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .section {
    padding: 27px 7px;
    margin-bottom: 38px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }
  .footer-branding {
    margin-top: 7px;
  }
}
@media (max-width: 600px) {
  body { font-size: 14px; }
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1rem; }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .mobile-menu__close,
  .mobile-menu-close {
    top: 19px;
    right: 15px;
    width: 40px; height: 40px;
    font-size: 34px;
  }
  .mobile-menu { padding: 21px 8px 16px 8px; }
  .cookie-banner { flex-direction: column; gap: 14px; padding: 19px 10px; }
  .cookie-banner .cookie-buttons { flex-direction: column; gap: 10px; }
  .cookie-modal__content {
    padding: 33px 9px 13px 9px;
  }
}
@media (max-width: 450px) {
  h1, h2, h3, h4 { font-size: 1rem; }
  .cta-button { padding: 11px 11px; font-size: 13px; }
  .footer-branding img { width: 28px; height: 28px; }
  .testimonial-card { padding: 9px 5px; font-size: 13px; }
  .feature-grid > div { padding: 12px 6px; }
  .footer-branding span { font-size: .86rem; }
}
/****************************
  UTILITIES & OVERRIDES
*****************************/
[hidden] { display: none !important; }
::-webkit-input-placeholder { color: #aaa; }
::-moz-placeholder { color: #aaa; }
:-ms-input-placeholder { color: #aaa; }
::placeholder { color: #aaa; }

/****************************
  SCROLL & FOCUS STYLES
*****************************/
html {
  scroll-behavior: smooth;
}
*:focus-visible {
  outline: 2px solid var(--electric-4) !important;
  outline-offset: 1.5px;
}

/****************************
  ENERGETIC DECORATIVE EFFECTS
*****************************/
.feature-grid > div, .testimonial-card, .faq-block, .card {
  transition: box-shadow 0.17s, transform 0.17s, border-color 0.16s;
}
.feature-grid > div:hover, .card:hover {
  box-shadow: 0 6px 20px 0 rgba(27,202,180,0.11), 0 2px 12px 0 rgba(255,63,128,0.13);
  transform: translateY(-2px) scale(1.024);
  z-index: 2;
}

/****************************
  PRINT OVERRIDES
*****************************/
@media print { 
  header, footer, .cookie-banner, .mobile-menu { display: none !important; } 
  main { padding: 0 !important; } 
}
