/* RESET & NORMALIZE */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
html { font-size: 100%; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote { margin: 0; padding: 0; font-weight: normal; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; background: none; border: none; outline: none; }
button { cursor: pointer; }

/* ===== BRAND COLORS ===== */
:root {
  --primary: #212B36;
  --secondary: #8A6A41;
  --accent: #E5E8EC;
  --playful-blue: #2979FF;
  --playful-yellow: #FFEB3B;
  --playful-mint: #00E5C6;
  --playful-pink: #FF69B4;
  --white: #fff;
  --gray: #F7F8FA;
  --black: #181B2C;
  --shadow: 0 3px 18px 0 rgba(50,50,93,.08), 0 1.5px 5px 0 rgba(117,117,117,0.08);
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: local('Playfair Display Bold'), url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
}

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: var(--accent);
  color: var(--primary);
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  line-height: 1.15;
}
h1 { font-size: 2.2rem; color: var(--playful-blue); }
h2 { font-size: 1.6rem; color: var(--playful-pink); }
h3 { font-size: 1.15rem; color: var(--playful-mint); }

@media (min-width:600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }
}

/* TEXT/CONTENT SECTIONS */
p, ul, ol, li {
  font-size: 1rem;
  color: var(--primary);
}
strong, b { font-weight: 700; color: var(--secondary); }
a { color: var(--playful-blue); transition: color .23s cubic-bezier(.8,.5,.2,1); }
a:hover { color: var(--playful-pink); text-decoration: underline; }

/* SPACING & LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 32px 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  transition: box-shadow .18s cubic-bezier(.8,.5,.2,1);
}
.content-wrapper:hover {
  box-shadow: 0 8px 32px 0 rgba(51,142,251,0.10), var(--shadow);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: var(--white);
  min-width: 280px;
  max-width: 340px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: transform .2s, box-shadow .2s;
}
.card:hover {
  transform: translateY(-5px) scale(1.025) rotate(-1deg);
  box-shadow: 0 6px 28px 0 rgba(41,121,255,0.11), var(--shadow);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--gray);
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(255,255,92,.11);
  padding: 26px 22px;
  min-width: 210px;
  max-width: 300px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .17s, transform .17s;
  animation: popin-feature .8s cubic-bezier(.62,.23,.32,1.3) both;
}
.feature-item img {
  width: 48px;
  height: 48px;
  animation: playful-bounce 1.6s infinite alternate;
}
@keyframes playful-bounce {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
  100% { transform: translateY(0) scale(1); }
}
@keyframes popin-feature {
  0% { opacity: 0; transform: scale(.91) translateY(14px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.feature-item:hover {
  box-shadow: 0 6px 28px 0 rgba(255, 107, 249, 0.09), var(--shadow);
  transform: scale(1.03) rotate(1.4deg);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 2px 10px 0 rgba(41,121,255,0.07), var(--shadow);
  border-radius: 24px;
  margin-bottom: 24px;
  position: relative;
  color: var(--black);
  font-size: 1.07rem;
  transition: box-shadow .11s, transform .11s;
}
.testimonial-card p {
  color: var(--primary);
  margin-bottom: 6px;
  font-style: italic;
}
.testimonial-card span {
  color: var(--secondary);
  font-size: .98em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 22px 0 rgba(0,229,198,0.14), var(--shadow);
  transform: scale(1.024) rotate(-1.6deg);
  background: var(--playful-yellow);
}

/* CTA BUTTONS */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--playful-blue);
  color: var(--white);
  border-radius: 28px;
  padding: 16px 38px;
  margin-top: 12px;
  box-shadow: 0 1.5px 9px 0 rgba(41,121,255,0.14);
  letter-spacing: .05em;
  transition: background .24s, color .24s, box-shadow .24s, transform .21s;
  position: relative;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: var(--playful-pink);
  color: var(--white);
  transform: scale(1.04) rotate(-2deg);
  box-shadow: 0 4px 18px 0 rgba(255,105,180,0.14);
}

/* FORM ELEMENTS (future proofing) */
input, textarea, select {
  border-radius: 8px;
  border: 1.5px solid var(--accent);
  padding: 12px 16px;
  background: var(--gray);
  margin-bottom: 14px;
  width: 100%;
  font-size: 1rem;
  color: var(--primary);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--playful-blue);
  background: var(--white);
}
label { font-weight: 700; margin-bottom: 6px; display: block; }

/* HEADER & NAVIGATION */
header {
  background: var(--white);
  box-shadow: 0 2px 12px 0 rgba(41,121,255,0.07);
  position: sticky;
  top: 0;
  z-index: 120;
  min-height: 70px;
  transition: box-shadow .19s;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 50px;
  margin-right: 16px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
nav a {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  padding: 8px 0;
  color: var(--primary);
  transition: color .17s cubic-bezier(.67,.14,.42,1.03);
  border-bottom: 2.5px solid transparent;
  position: relative;
}
nav a:hover, nav a:focus {
  color: var(--playful-blue);
  border-bottom: 2.5px solid var(--playful-blue);
}

/* Main header action - .cta-button already styled */
.mobile-menu-toggle {
  font-size: 2rem;
  background: var(--playful-yellow);
  border: none;
  padding: 6px 14px;
  border-radius: 22px;
  margin-left: 16px;
  display: flex;
  align-items: center;
  transition: background .17s, transform .14s;
  color: var(--playful-blue);
  z-index: 130;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--playful-pink);
  color: var(--white);
  transform: scale(1.12);
}

/* Hide mobile menu button on desktop */
@media (min-width: 992px) {
  .mobile-menu-toggle { display: none; }
}


/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--playful-yellow);
  z-index: 500;
  transform: translateX(100%);
  transition: transform .37s cubic-bezier(.74,.12,.24,1.4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open { transform: translateX(0%); }
.mobile-menu-close {
  font-size: 2.2rem;
  background: var(--playful-pink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 49px; height: 49px;
  margin: 20px 0 24px 24px;
  align-self: flex-start;
  transition: background .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--playful-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 0 38px;
  width: 100vw;
  margin-top: 8px;
}
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--primary);
  padding: 16px 0;
  width: 100%;
  transition: color .17s, background .13s;
  border-bottom: 2.5px solid transparent;
  border-radius: 8px;
  text-align: left;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: var(--playful-pink);
  background: var(--white);
  border-bottom: 2.5px solid var(--playful-pink);
}

/* Only show mobile menu and hide desktop nav on mobile */
@media (max-width: 991px) {
  nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .footer-contact { flex: 1 1 100%; }
}

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

/* FOOTER & SOCIAL */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 55px 0 25px 0;
  box-shadow: 0 -4px 12px 0 rgba(41,121,255,0.07);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
}
footer nav {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
footer nav a {
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: color .18s;
}
footer nav a:hover {
  color: var(--playful-yellow);
  border-bottom: 1.5px solid var(--playful-yellow);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  background: rgba(255,255,255,0.13);
  border-radius: 14px;
  padding: 19px 19px;
  margin-top: 14px;
}
.footer-contact img {
  height: 38px;
  margin-bottom: 9px;
}
.footer-contact p {
  color: var(--white);
  margin-bottom: 4px;
  font-size: .98em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
}
.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background: var(--playful-blue);
  transition: background .15s, transform .14s;
  box-shadow: 0 1.5px 6px 0 rgba(41,121,255,0.11);
}
.social-links a:hover {
  background: var(--playful-pink);
  transform: rotate(-13deg) scale(1.12);
}
.social-links img {
  height: 24px;
}
.footer-note {
  margin-top: 25px;
  width: 100%;
  color: var(--gray);
  font-size: 0.89em;
  text-align: left;
}

/* RESPONSIVENESS */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width:810px) {
  .container {
    flex-direction: column;
    gap: 36px;
  }
  .content-wrapper, .card, .feature-item {
    min-width: unset;
    max-width: 100%;
  }
  footer .container {
    flex-direction: column;
    gap: 19px;
  }
}
@media (max-width: 768px) {
  .section { padding: 28px 6px; margin-bottom: 42px; }
  .content-wrapper { padding: 18px 5px; gap: 18px; }
  .card-container, .feature-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 18px 8px;
    gap: 12px;
  }
  .feature-item {
    min-width: 120px;
    padding: 15px 10px;
    font-size: .98rem;
  }
  .text-image-section { flex-direction: column; gap: 16px; align-items: flex-start; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: .95rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 7px; }
  .cta-button { font-size: 1rem; padding: 12px 27px; }
  .feature-item img { width: 32px; height: 32px; }
}


/* UTILITIES/MISC */
ul, ol {
  padding-left: 20px;
  margin-bottom: 8px;
}
ul li, ol li {
  position: relative;
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--primary);
}
ul li::before {
  content: '\2022';
  font-weight: bold;
  color: var(--playful-blue);
  margin-right: 8px;
  font-size: 1.3em;
  vertical-align: middle;
}
ol li {
  list-style: decimal;
  margin-left: 18px;
  color: var(--secondary);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 -2px 10px 0 rgba(41,121,255,0.04);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 19px;
  gap: 16px;
  font-size: 1rem;
  animation: cookiebar-in .7s cubic-bezier(.58,.16,.39,1.4) both;
}
@keyframes cookiebar-in {
  0% { transform: translateY(85px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-content {
  flex: 1 1 300px;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 10px 18px;
  border: none;
  background: var(--playful-mint);
  color: var(--primary);
  transition: background .15s, color .15s;
  box-shadow: 0 1.5px 7px 0 rgba(0,229,198,.11);
}
.cookie-btn.accept {
  background: var(--playful-blue);
  color: var(--white);
}
.cookie-btn.reject {
  background: var(--playful-pink);
  color: var(--white);
}
.cookie-btn.settings {
  background: var(--playful-yellow);
  color: var(--primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--secondary);
  color: var(--white);
}
@media (max-width:810px) {
  .cookie-banner {
    flex-direction: column;
    padding: 22px 8px;
    gap: 11px;
    align-items: flex-start;
  }
  .cookie-banner-buttons { flex-direction: row; gap: 7px; }
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.43);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open { display: flex; animation: cookie-modal-in .35s cubic-bezier(.62,.24,.24,1.12) both; }
@keyframes cookie-modal-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: var(--white);
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(41,121,255,0.13), var(--shadow);
  padding: 32px 24px 28px 24px;
  min-width: 275px;
  max-width: 95vw;
  width: 390px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popin-feature .5s cubic-bezier(.62,.23,.32,1.3) both;
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-modal-close {
  background: var(--playful-pink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1.3rem;
  align-self: flex-end;
  transition: background .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--playful-blue);
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  background: var(--gray);
  border-radius: 9px;
  padding: 10px 14px;
}
.cookie-category .toggle {
  width: 38px;
  height: 18px;
  border-radius: 32px;
  background: var(--playful-mint);
  position: relative;
  margin-left: auto;
  flex-shrink: 0;
}
.cookie-category.essential .toggle {
  background: var(--secondary);
  opacity: .67;
}
.cookie-category .toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-category .slider {
  position: absolute;
  left: 0; top: 0;
  width: 38px; height: 18px;
  border-radius: 32px;
  background: inherit;
  transition: background .18s;
}
.cookie-category .slider:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 12px; height: 12px;
  background: var(--white);
  border-radius: 50%;
  transition: transform .18s;
}
.cookie-category .toggle input:checked + .slider {
  background: var(--playful-blue);
}
.cookie-category .toggle input:checked + .slider:before {
  transform: translateX(18px);
}

/* Animations: playful accent deco dots for dynamics */
.content-wrapper::after {
  content: '';
  display: block;
  position: absolute;
  right: -22px;
  top: -22px;
  width: 52px;
  height: 52px;
  background: rgba(255,235,59,.13);
  border-radius: 50%;
  z-index: 0;
  animation: playful-dot-float 4.1s infinite alternate;
}
@keyframes playful-dot-float {
  0% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-9px) scale(1.05); }
  100% { transform: translateY(0) scale(.92); }
}
.content-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  left: -19px;
  bottom: -22px;
  width: 38px;
  height: 38px;
  background: rgba(0,229,198,.13);
  border-radius: 50%;
  z-index: 0;
  animation: playful-dot-float 3.2s .5s infinite alternate;
}

/* Hide deco dots on mobile for space */
@media (max-width: 768px) {
  .content-wrapper::after, .content-wrapper::before { display: none; }
}

/* Small helpers & accessibility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* Spacing helpers: maintain vertical rhythm */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-16 { margin-top: 16px !important; }

/* LAST: Prevent accidental grid/column use */
/* (Do not use grid or column properties anywhere) */