/* ========================================================================
   CSS RESET & BASELINE NORMALIZATION (Mobile-first)
   ======================================================================== */
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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #22313F;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  background-color: #F3F6F9;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: #FF7043;
  transition: color .2s;
}
a:hover, a:focus {
  color: #22313F;
}
ul, ol {
  margin-left: 24px;
  padding-left: 0;
}
li {
  margin-bottom: 12px;
  font-size: 1rem;
  word-break: break-word;
}
strong {
  font-weight: 700;
}
hr {
  border: none;
  border-top: 1px solid #D3D3D3;
  margin: 32px 0;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2rem;
  color: #FF7043;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  color: #22313F;
  margin-bottom: 20px;
  margin-top: 0;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  color: #FF7043;
  margin-bottom: 12px;
}
h4, h5, h6 {
  color: #22313F;
  margin-bottom: 8px;
  font-size: 1rem;
}
p, .text-section p {
  margin-bottom: 16px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.text-section ul li, .text-section ol li {
  font-size: 1rem;
}

/* ========================================================================
   LAYOUT CONTAINERS & SPACING
   ======================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper, .text-section {
  padding: 30px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(34,49,63,0.06);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(34,49,63,0.07);
  padding: 32px;
  min-width: 260px;
  flex: 1 1 280px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(255,112,67,0.19);
  transform: translateY(-3px) scale(1.03);
}

.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;
}

/* Testimonials */
.testimonial-card {
  background: #F3F6F9;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(34,49,63,0.06);
  color: #22313F;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 320px;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 14px;
}
.testimonial-card span {
  color: #FF7043;
  font-weight: 700;
  font-size: .95rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------------------------------------------------------------------
   NAVIGATION & HEADER
   ------------------------------------------------------------------------ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px rgba(34,49,63,0.07);
  padding: 0;
  z-index: 100;
  position: relative;
}
header nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 18px 0 14px 0;
}
header nav img {
  height: 52px;
  transition: transform .2s;
}
header nav img:hover {
  transform: rotate(-8deg) scale(1.1);
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 8px 14px;
  font-size: 1rem;
  color: #22313F;
  border-radius: 13px;
  transition: background .14s, color .14s, box-shadow .17s;
  position: relative;
}
header nav a:not(.cta-btn):hover, header nav a:not(.cta-btn):focus {
  background: #FF7043;
  color: #fff;
  box-shadow: 0 0 0 3px #FFD9CC;
}
.cta-btn {
  background: #FF7043;
  color: #fff !important;
  font-weight: 900;
  padding: 10px 24px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  margin-left: 12px;
  box-shadow: 0 2px 16px #FFD9CC;
  position: relative;
  transition: box-shadow .13s, background .15s, color .15s, transform .16s;
  cursor: pointer;
  border: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #22313F;
  color: #fff !important;
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 6px 28px #FFD9CC;
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FF7043;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 2.1rem;
  cursor: pointer;
  transition: background .2s, color .2s, transform .17s;
  margin-left: auto;
  margin-right: 0;
  z-index: 104;
  box-shadow: 0 2px 8px #FFD9CC;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #22313F;
  color: #FF7043;
  transform: scale(1.08) rotate(3deg);
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 2px 24px rgba(34,49,63,0.14);
  z-index: 105;
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 26px 26px 26px;
  transition: transform .33s cubic-bezier(0.79, 0.09, 0.33, 1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FF7043;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  padding: 8px 13px;
  position: absolute;
  top: 18px;
  right: 24px;
  cursor: pointer;
  z-index: 120;
  box-shadow: 0 1px 7px #FFD9CC;
}
.mobile-menu-close:hover,.mobile-menu-close:focus {
  background: #22313F;
  color: #FF7043;
  transform: rotate(-6deg) scale(1.08);
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 56px;
  width: 100%;
}
.mobile-menu nav.mobile-nav a {
  font-size: 1.14rem;
  color: #22313F;
  font-weight: 700;
  padding: 18px 0;
  border-bottom: 1px solid #F3F6F9;
  transition: color .19s, letter-spacing .17s;
  letter-spacing: 0.05em;
}
.mobile-menu nav.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-menu nav.mobile-nav a:hover, .mobile-menu nav.mobile-nav a:focus {
  color: #FF7043;
  letter-spacing: 0.11em;
}

@media (min-width: 1001px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 1000px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ========================================================================
   FOOTER
   ======================================================================== */
footer {
  background: #22313F;
  color: #fff;
  padding: 0 0 0 0;
}
footer .container {
  padding: 40px 16px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
footer a, footer nav a {
  color: #FFD9CC;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 0;
}
footer a:hover, footer a:focus {
  color: #FF7043;
}
footer .text-section p {
  color: #fff;
  font-size: .98rem;
  margin-bottom: 0;
}
footer img {
  height: 44px;
  filter: brightness(97%) contrast(110%);
}
@media (min-width: 700px) {
  footer .content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
  }
  footer nav, footer ul, footer .text-section {
    flex: 1 1 25%;
    margin-right: 32px;
  }
}

/* ========================================================================
   INTERACTIVE ELEMENTS: BUTTONS, FORMS, ANIMATIONS
   ======================================================================== */
button, .cta-btn {
  cursor: pointer;
  border: none;
  outline: none;
  transition: background .18s, color .18s, box-shadow .18s, transform .13s;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1em;
}

/* Fun playful bounces on hover */
.cta-btn:active {
  animation: bounce 0.4s cubic-bezier(.28,.84,.42,1) 1;
}
@keyframes bounce {
  0% { transform: scale(1) translateY(0); }
  30% { transform: scale(1.08) translateY(-3px); }
  50% { transform: scale(.97) translateY(1.5px); }
  70% { transform: scale(1.04) translateY(-2px); }
  100% { transform: scale(1) translateY(0); }
}

/* Animated underline for all links - playful accent */
a:not(.cta-btn) {
  position: relative;
}
a:not(.cta-btn)::after {
  content: '';
  display: block;
  width: 0;
  height: 2.5px;
  background: #FF7043;
  border-radius: 2px;
  transition: width .22s;
  position: absolute;
  left: 0;
  bottom: -4px;
}
a:not(.cta-btn):hover::after, a:not(.cta-btn):focus::after {
  width: 100%;
}

/* ========================================================================
   ICON STYLING, UL/OL EMBELLISHMENT
   ======================================================================== */
ul li img, ol li img {
  display: inline-block;
  margin-right: 10px;
  height: 24px;
  vertical-align: middle;
  filter: drop-shadow(1px 1px 0 #FFD9CC);
  animation: iconpop 0.9s cubic-bezier(.26,.74,.71,1) both;
}
@keyframes iconpop {
  0% { opacity: 0; transform: translateY(7px) scale(0.8); }
  80% { opacity: 1; transform: translateY(-4px) scale(1.13); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

ol {
  counter-reset: num;
}
ol li {
  list-style: none;
  position: relative;
  padding-left: 36px;
  font-weight: 600;
  margin-bottom: 18px;
}
ol li:before {
  counter-increment: num;
  content: counter(num) '. ';
  position: absolute;
  left: 0;
  top: 0;
  color: #FF7043;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.16em;
}

ul {
  list-style: none;
  padding-left: 0;
}
ul > li {
  position: relative;
  padding-left: 30px;
}
ul > li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FF7043;
  font-size: 1.2em;
  font-weight: 900;
  top: 0.2em;
}
ul > li img {
  margin-left: -24px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ========================================================================
   PAGE-SPECIFIC, COMMON COMPONENTS
   ======================================================================== */
.text-section {
  padding: 16px 0;
}
.text-section h1,
.text-section h2,
.text-section h3 {
  margin-bottom: 14px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* Content grouping for .content-wrapper in testimonials */
.content-wrapper .testimonial-card {
  flex: 1 1 320px;
}

/* Lists of features with playful highlight */
.content-wrapper ul li strong, .feature-item strong {
  color: #FF7043;
}


/* ========================================================================
   RESPONSIVE DESIGN (MOBILE FIRST, LAYOUT SWITCH)
   ======================================================================== */
@media (max-width: 1000px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .section {
    padding: 28px 7px;
    margin-bottom: 35px;
  }
}

@media (max-width: 768px) {
  .content-wrapper, .text-section {
    gap: 16px;
  }
  .section {
    padding: 20px 3vw;
    margin-bottom: 30px;
  }
  .testimonial-card, .card {
    min-width: 0;
    flex-basis: 100%;
    padding: 18px 10px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  header {
    min-height: auto;
    padding: 0 0 5px 0;
  }
  h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
  footer .container {
    padding: 22px 6px;
  }
  footer .content-wrapper {
    flex-direction: column !important;
    gap: 20px;
  }
}

/* ========================================================================
   COOKIE CONSENT BANNER & MODAL
   ======================================================================== */
.cookie-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 999;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 3px rgba(34,49,63,0.14);
  padding: 24px 18px;
  color: #22313F;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
  transition: transform .32s cubic-bezier(.43,.75,.51,1.03), opacity .21s;
}
.cookie-banner.hide {
  transform: translateY(200px);
  opacity: 0;
  pointer-events: none;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn {
  border-radius: 14px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: #FF7043;
  color: #fff;
  padding: 11px 22px;
  cursor: pointer;
  line-height: 1.1;
  box-shadow: 0 2px 8px #FFD9CC;
  transition: background .19s, color .17s, transform .15s;
}
.cookie-btn.settings {
  background: #22313F;
  color: #FFD9CC;
}
.cookie-btn.reject {
  background: #F3F6F9;
  color: #FF7043;
  border: 1.5px solid #FF7043;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFD9CC;
  color: #FF7043;
  transform: scale(1.05);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,49,63,.34);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  max-width: 400px;
  width: 94vw;
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 7px 36px rgba(34,49,63,0.18);
  padding: 32px 20px 22px 20px;
  color: #22313F;
  position: relative;
  animation: modalpop .33s cubic-bezier(.6,.76,0,.96) both;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@keyframes modalpop {
  0% { transform: scale(.8) translateY(70px); opacity: 0; }
  60% { transform: scale(1.07) translateY(-19px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 22px;
  border: none;
  background: #FF7043;
  color: #fff;
  border-radius: 8px;
  font-size: 1.6rem;
  width: 32px;
  height: 32px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 1px 7px #FFD9CC;
  transition: background .18s, color .18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #22313F;
  color: #FF7043;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.cookie-switch {
  appearance: none;
  width: 44px;
  height: 22px;
  background: #F3F6F9;
  border-radius: 30px;
  position: relative;
  outline: none;
  border: 2px solid #FF7043;
  transition: background .16s, border .17s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #FF7043;
}
.cookie-switch:before {
  content: '';
  position: absolute;
  left: 1px;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px #FFD9CC;
  transition: left .2s;
}
.cookie-switch:checked:before {
  left: 23px;
}
.cookie-category[data-essential] label {
  color: #B0B6BC;
  font-style: italic;
}

/* ========================================================================
   PLAYFUL & DYNAMIC AESTHETIC TOUCHES
   ======================================================================== */
body, .section, .card, .testimonial-card, .cookie-banner, .cookie-modal {
  border-radius: 18px;
}

/* Sprinkles! Fun color circle decorations - only for illustration, not for content */
.decorative-circle {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #FFD9CC;
  opacity: 0.16;
  z-index: 1;
  top: -30px;
  right: -32px;
  animation: circlemove 2.8s infinite alternate ease-in-out;
}
@keyframes circlemove {
  0% { transform: scale(.93) translateY(0) rotateZ(0); }
  100% { transform: scale(1.09) translateY(18px) rotateZ(22deg); }
}

/* Fun/ripple hover for action buttons */
.cta-btn:active::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0);
  background: #FFD9CC77;
  border-radius: 50%;
  width: 130%;
  height: 100%;
  z-index: 0;
  animation: ripple .33s .01s cubic-bezier(.41,.77,.67,1.1) forwards;
  pointer-events: none;
}
@keyframes ripple {
  0% { transform: translate(-50%,-50%) scale(0); opacity: 0.55; }
  80% { transform: translate(-50%,-50%) scale(1.06); opacity: 0.27; }
  100% { transform: translate(-50%,-50%) scale(1.23); opacity: 0; }
}

/* Fun font pop effect on h1 on hover */
h1:hover, h2:hover {
  animation: funpop 0.35s cubic-bezier(.5,1.2,.3,1) both;
  cursor: pointer;
}
@keyframes funpop {
  0% { transform: scale(1) rotate(0deg); }
  40% { transform: scale(1.08) rotate(-1deg); }
  80% { transform: scale(.97) rotate(2.2deg); }
  100% { transform: scale(1.02) rotate(-2deg); }
}

/* ========================================================================
   !SPACING AND ALIGNMENT ENFORCEMENT!
   ======================================================================== */
.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; }

/* Custom spacing rules - no overlaps */
.card, .testimonial-card, .content-wrapper, .section {
  margin-bottom: 20px;
}
.card:last-child, .testimonial-card:last-child, .section:last-child {
  margin-bottom: 0;
}

/* ========================================================================
   PRINT STYLES
   ======================================================================== */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .section, .container {
    box-shadow: none !important;
    background: none !important;
  }
}

/* ========================================================================
   END
   ======================================================================== */
