/* ========================================================== */
/* 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #F7FAFC;
  color: #704F38;
  font-size: 16px;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: 2px solid #aab8b3;
  outline-offset: 2px;
}
img, svg {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}
:root {
  --primary: #704F38;
  --secondary: #A7BAB6;
  --accent: #F7E8CF;
  --pastel-mint: #E8F6F4;
  --pastel-blue: #D7E8FC;
  --pastel-pink: #FFE9EB;
  --pastel-lilac: #F3E8FC;
  --pastel-yellow: #FFF9E5;
  --white: #fff;
  --shadow: 0 6px 24px rgba(112, 79, 56, 0.08), 0 1.5px 8px rgba(167,186,182, 0.07);
  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 30px;
  --text-title: 'Montserrat', Arial, sans-serif;
}

/* ========================================================== */
/* LAYOUT CONTAINERS & FLEXBOX                                */
/* ========================================================== */
.container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 20px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .container { max-width: 90vw; }
  .content-wrapper { padding: 24px 5vw; }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .content-wrapper { padding: 18px 4vw; }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  min-width: 220px;
  max-width: 360px;
  flex: 1 1 260px;
  transition: box-shadow 0.21s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  box-shadow: 0 10px 36px rgba(157,165,184,0.15),0 2px 12px rgba(167,186,182, 0.06);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--pastel-pink);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(112,79,56, 0.08);
  margin-bottom: 20px;
  color: #3B3323;
  flex: 1 1 360px;
  font-size: 1.08em;
  transition: box-shadow 0.17s cubic-bezier(.4,0,.2,1);
}
.testimonial-card strong {
  margin-left: 12px;
  color: #704F38;
  font-weight: 700;
  font-family: var(--text-title);
}
.testimonial-card p {
  flex: 1;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px rgba(255,182,193, 0.19), 0 3px 12px rgba(112,79,56,0.07);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================================================== */
/* TYPOGRAPHY & HEADINGS                                      */
/* ========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--text-title);
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.14;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.85rem;
  line-height: 1.17;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.32rem;
  margin-bottom: 9px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.12rem;
  font-weight: 600;
}
p {
  color: #4a3a26;
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 13px;
}

ul, ol {
  margin: 0 0 12px 0;
}
ul li, ol li {
  display: flex;
  align-items: center;
  font-size: 1em;
  color: #61513a;
  padding: 7px 0 7px 0;
  gap: 12px;
}
ul li img {
  height: 28px;
  width: 28px;
  object-fit: contain;
}
strong {
  font-weight: 700;
}

/* Use softer font on all body text, with gentle selection colors */
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(180deg,#FFF9E5 0%, #E8F6F4 100%);
  color: #6c5a44;
  letter-spacing: 0.02em;
}
::selection {
  background: #ffe9eb;
  color: #704F38;
}

/* ========================================================== */
/* HEADER & NAVIGATION                                        */
/* ========================================================== */
header {
  width: 100%;
  background: linear-gradient(90deg, #fff9e5 0%, #f7e8cf 60%, #d7e8fc 100%);
  box-shadow: 0 2px 12px rgba(167,186,182,0.05);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-top: 18px;
  padding-bottom: 18px;
}
header img {
  height: 52px;
  width: auto;
  min-width: 110px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-family: var(--text-title);
  color: var(--primary);
  font-size: 1.07rem;
  letter-spacing: 0.018em;
  padding: 7px 14px;
  border-radius: 14px;
  transition: background 0.18s, color 0.14s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  background: var(--accent);
  color: #614429;
}
header nav a.cta {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 1.5px 6px rgba(167,186,182,0.10);
  border-radius: 20px;
  margin-left: 10px;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s;
}
header nav a.cta:hover{
  background: #ffe9eb;
  color: #a89b7d;
  box-shadow: 0 3px 10px rgba(247,232,207, 0.14);
}

/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  background: var(--pastel-mint);
  color: var(--primary);
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  transition: background 0.16s, color 0.16s;
  margin-left: 22px;
  z-index: 110;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--pastel-lilac);
  color: #3b3323;
}

@media (max-width: 991px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ========================================================== */
/* MOBILE MENU OVERLAY                                        */
/* ========================================================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(130deg, #F7E8CF 45%, #D7E8FC 100%);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 2002;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.37s cubic-bezier(0.83,0,0.17,1), opacity 0.27s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 10px 80px 0px rgba(112,79,56,0.12);
}
.mobile-menu.open {
  transform: translateX(0vw);
  opacity: 1;
}
.mobile-menu .mobile-menu-close {
  align-self: flex-end;
  font-size: 2.3rem;
  background: none;
  color: var(--primary);
  padding: 18px 28px 8px 0;
  border-radius: 8px;
  cursor: pointer;
  z-index: 2003;
  margin-bottom: 12px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--pastel-yellow);
  color: #ad8966;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  width: 100%;
  align-items: flex-start;
  margin-left: 36px;
  margin-top: 28px;
}
.mobile-nav a {
  font-family: var(--text-title);
  font-size: 1.18rem;
  color: #704F38;
  padding: 9px 12px 9px 4px;
  border-radius: 14px;
  width: 100%;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 4px;
}
.mobile-nav a.cta {
  font-weight: 700;
  background: var(--secondary);
  color: #41514e;
  margin-top: 6px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--pastel-mint);
  color: #523a1f;
}

@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* Disable page scrolling when mobile menu is open (body class) */
body.mobile-menu-open {
  overflow: hidden;
  touch-action: none;
}

/* ========================================================== */
/* BUTTONS & CTA ELEMENTS                                     */
/* ========================================================== */
.cta, .btn, button, input[type="submit"] {
  font-family: var(--text-title);
  font-weight: 600;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #ffe9eb 0%, #f7e8cf 100%);
  color: var(--primary);
  border-radius: 20px;
  padding: 13px 28px;
  margin-top: 6px;
  margin-bottom: 6px;
  border: 0;
  box-shadow: 0 2px 8px rgba(244,222,203, 0.11);
  cursor: pointer;
  display: inline-block;
  transition: background 0.19s, box-shadow 0.15s, color 0.24s, scale 0.15s;
  outline: none;
}
.cta:hover, .btn:hover, button:hover, input[type="submit"]:hover {
  background: var(--secondary);
  color: #614429;
  box-shadow: 0 4px 20px rgba(112,79,56,0.11);
  scale: 1.04;
}
.cta:focus, .btn:focus, button:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1.5px;
}

/* ========================================================== */
/* CUSTOM LIST STYLES WITH ICONS                              */
/* ========================================================== */
ul li {
  padding-left: 0;
  background: none;
  border-radius: 0;
  min-height: 36px;
  font-size: 1.05em;
}
ul li img {
  margin-right: 10px;
}

/* ========================================================== */
/* FOOTER                                                     */
/* ========================================================== */
footer {
  width: 100%;
  background: linear-gradient(90deg, #f7e8cf 0%, #e8f6f4 80%, #ffe9eb 100%);
  box-shadow: 0 -2px 14px rgba(167,186,182,0.04);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
footer .container {
  flex-direction: column;
  align-items: center;
  padding: 28px 18px 18px 18px;
  gap: 13px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 19px;
  align-items: center;
}
footer nav a {
  font-family: var(--text-title);
  font-size: 1.08em;
  color: #618274;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.09s, color 0.16s;
}
footer nav a:hover {
  background: var(--pastel-mint);
  color: #704F38;
}
footer p {
  color: #704F38;
  font-size: 0.99em;
  margin: 0;
  opacity: 0.77;
}

/* ========================================================== */
/* COOKIE CONSENT BANNER & MODAL (BOTTOM-FIXED & MODAL)       */
/* ========================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #ffe9eb 0%, #f3e8fc 95%);
  color: #3B3323;
  box-shadow: 0 -2px 20px rgba(150,140,100,0.11);
  padding: 20px 10vw 20px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  z-index: 4004;
  gap: 22px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  transition: transform 0.38s cubic-bezier(.4,0,.2,1), opacity 0.19s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-shrink: 0;
}
.cookie-consent-banner button {
  font-family: var(--text-title);
  font-size: 1em;
  border-radius: 20px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  background: var(--pastel-mint);
  color: var(--primary);
  transition: background 0.18s, color 0.17s, box-shadow 0.18s;
  box-shadow: 0 1.5px 8px rgba(110,90,50, 0.05);
}
.cookie-consent-banner button.accept {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 600;
}
.cookie-consent-banner button.reject {
  background: var(--pastel-lilac);
  color: #8a623a;
}
.cookie-consent-banner button.settings {
  background: var(--pastel-yellow);
  color: #704F38;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--pastel-blue);
  color: #41514e;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px 20px 10px;
    gap: 15px;
  }
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(81, 63, 46, 0.29);
  z-index: 4500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.show { opacity: 1; pointer-events: auto; }
.cookie-modal .modal-content {
  background: linear-gradient(112deg, #fff9e5 0%, #e8f6f4 80%);
  border-radius: 20px;
  padding: 32px 30px;
  min-width: 310px;
  box-shadow: 0px 8px 38px rgba(167,186,182,0.16);
  display: flex;
  flex-direction: column;
  gap: 21px;
  max-width: 95vw;
  text-align: left;
}
.cookie-modal h3, .cookie-modal h4 {
  font-family: var(--text-title);
  color: var(--primary);
  margin-bottom: 5px;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: var(--pastel-pink);
  border-radius: 11px;
  position: relative;
  outline: none;
  transition: background .18s;
  cursor: pointer;
}
.cookie-modal .toggle:checked {
  background: var(--secondary);
}
.cookie-modal .toggle::before {
  content: '';
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: left .18s;
  box-shadow: 0 .5px 2px rgba(112,79,56, 0.13);
}
.cookie-modal .toggle:checked::before {
  left: 18px;
}
.cookie-modal .toggle[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal button {
  font-family: var(--text-title);
  border-radius: 13px;
  border: none;
  padding: 9px 20px;
  font-size: 1em;
  background: var(--pastel-blue);
  color: var(--primary);
  transition: background 0.17s, color 0.17s;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(167,186,182,0.11);
}
.cookie-modal button.accept {
  background: var(--secondary);
  font-weight: 600;
}
.cookie-modal button.cancel {
  background: var(--pastel-pink);
  color: #704F38;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--pastel-mint);
  color: #523a1f;
}

/* ---------------------------------------------------------- */
/* Hide Modal on Desktop Fallback                             */
@media (min-width: 768px) {
  .cookie-modal .modal-content { min-width: 420px; }
}

/* ========================================================== */
/* UTILITIES & ADDITIONAL ELEMENTS                            */
/* ========================================================== */
hr {
  border: none;
  border-top: 1.5px solid #a7bab677;
  margin: 22px 0;
}

/* Card & section elements */
.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;
}

/* Spacing utilities */
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-32 { margin-top: 32px !important; }
.pt-20 { padding-top: 20px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pt-32 { padding-top: 32px !important; }
.pb-32 { padding-bottom: 32px !important; }

/* Microinteractions & transitions */
input, button, a, .cta, .card, .testimonial-card {
  transition: box-shadow 0.21s cubic-bezier(.4,0,.2,1), background 0.17s, color 0.13s;
}

/* Focus ring for accessibility */
*:focus { outline: 2px solid #a7bab6; outline-offset: 2px; }

/* ========================================================== */
/* RESPONSIVE DESIGN                                          */
/* ========================================================== */
@media (max-width: 991px) {
  .container { max-width: 98vw; padding-left: 9px; padding-right: 9px; }
  .content-wrapper { padding: 14px 3vw;
    margin-bottom: 18px; }
  .section { padding: 28px 8px; margin-bottom: 46px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  .content-wrapper, .card, .testimonial-card { padding: 14px 6vw; }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 17px;
  }
  .section { padding: 18px 0px; margin-bottom: 30px; }
  header .container { flex-direction: row; gap: 14px; }
}
@media (max-width: 430px) {
  .content-wrapper, .card { padding: 9px 2vw; }
}

/* Hide SVG overflow in cards */
.card img, .content-wrapper img {
  max-width: 44px;
  min-width: 28px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

/* Success page and thank you highlight */
.thank-you, .success-message {
  background: var(--pastel-yellow);
  border-radius: 12px;
  padding: 18px 11px;
  color: #3b3323;
  text-align: center;
}

/* ========================================================== */
/* PRINT & MISC                                               */
/* ========================================================== */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu {  display: none !important; }
  body, .container, .content-wrapper { background: #fff !important; color: #704F38 !important; }
}
