/* ========================================== */
/* ========== CSS RESET & BASE ============= */
/* ========================================== */
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;
}
section, article, aside, footer, header, nav, main {
  display: block;
}
body {
  line-height: 1.5;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
* {
  box-sizing: border-box;
}

/* ========================================== */
/* ========== VARIABLE DEFINITIONS ========== */
/* ========================================== */
:root {
  --brand-primary: #32425C; /* primary */
  --brand-secondary: #A2BBA3; /* secondary */
  --brand-accent: #F7F6F2; /* accent/bg */
  --playful-1: #FFD600; /* dynamic yellow */
  --playful-2: #FF7F50; /* playful coral */
  --playful-3: #35D0BA; /* teal brush */
  --playful-4: #FF8A65; /* lively orange */
  --playful-5: #16B1C3; /* dynamic cyan */
  --headline-font: 'Montserrat', Arial, sans-serif;
  --body-font: 'Open Sans', Arial, sans-serif;
  --radius: 18px;
  --shadow: 0 6px 24px -6px rgba(44, 62, 80,.08), 0 1.5px 6px 0 rgba(44,62,80,0.03);
  --transition: all .24s cubic-bezier(.61,.34,.36,1.32);
  --btn-shadow: 0 3px 8px 0 rgba(44,62,80,.09);
  --danger: #e74c3c;
  --success: #4CAF50;
}

/* Custom Font Imports (fallbacks in font family) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

/* ========================================== */
/* ========== TYPOGRAPHY =================== */
/* ========================================== */
body {
  font-family: var(--body-font);
  font-size: 16px;
  color: #222;
  background: var(--brand-accent);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--brand-primary);
  font-family: var(--headline-font);
  font-weight: 900;
  line-height: 1.12;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.33rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.12rem;
}
p {
  font-size: 1rem;
  margin-bottom: 14px;
}

strong {
  font-weight: 700;
  color: var(--brand-primary);
}

ul, ol {
  margin: 16px 0 16px 22px;
  padding-left: 0;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.hero p {
  font-size: 1.13rem;
}

/* Fun Font accents for playful, dynamic look (used on accent headings) */
.headline-accent, .hero h1, .btn-primary, .btn-secondary, .mobile-menu-toggle {
  font-family: 'Montserrat', var(--headline-font);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: none;
}

/* ========================================== */
/* ========== GENERAL LAYOUT ================ */
/* ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

main {
  flex: 1 0 auto;
  width: 100%;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ========================================== */
/* ========== HEADER & NAVIGATION =========== */
/* ========================================== */
header {
  width: 100%;
  background: var(--brand-accent);
  box-shadow: 0 4px 32px -16px rgba(32,52,72,0.12);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 52px;
  width: auto;
  transition: transform .2s;
}
header img:hover, header img:focus {
  transform: scale(1.05) rotate(-2deg);
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: var(--brand-primary);
  font-family: var(--headline-font);
  font-size: 1.07rem;
  font-weight: 700;
  position: relative;
  padding: 8px 0;
  transition: color .23s;
  letter-spacing: 0.6px;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 3px;
  background: var(--playful-3);
  border-radius: 1.5px;
  transition: width .27s cubic-bezier(.3,.69,.51,1.4);
  margin: 0 auto 0.3em auto;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--playful-2);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
  background: var(--playful-2);
}

header .btn-primary {
  margin-left: 16px;
}

/* ======================================== */
/* ========== HERO SECTIONS =============== */
/* ======================================== */
.hero {
  background: linear-gradient(110deg, var(--playful-1), var(--brand-accent) 75%);
  border-radius: var(--radius);
  margin-bottom: 56px;
  min-height: 260px;
  display: flex;
  align-items: center;
  animation: hero-swing .8s cubic-bezier(.3,1.15,.43,.97);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
@keyframes hero-swing {
  0% { box-shadow: 0 4px 34px -16px var(--playful-2); transform: scale(.98); }
  100% { box-shadow: var(--shadow); transform: scale(1); }
}
.hero .container {
  display: flex;
  align-items: center;
}
.hero h1 {
  color: var(--brand-primary);
  font-size: 2.2rem;
  text-shadow: 1.5px 1.5px 0 var(--playful-1), 0 2px 12px var(--playful-1, #FFD600, .1);
  margin-bottom: 14px;
}
.hero .btn-primary {
  margin-top: 20px;
}

/* ========================================== */
/* ========== BUTTONS ======================= */
/* ========================================== */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 30px;
  font-size: 1.13rem;
  border-radius: var(--radius);
  font-family: var(--headline-font);
  font-weight: 900;
  letter-spacing: 1.1px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--btn-shadow);
  margin: 8px 4px 8px 0;
}
.btn-primary {
  background: var(--playful-2);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--playful-3);
  color: var(--brand-primary);
  transform: translateY(-3px) scale(1.03) rotate(-2deg);
  box-shadow: 0 8px 26px -10px var(--playful-2), var(--btn-shadow);
}
.btn-secondary {
  background: var(--playful-3);
  color: var(--brand-primary)!important;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--playful-2);
  color: #fff!important;
  transform: translateY(-3px) scale(1.03) rotate(2deg);
  box-shadow: 0 8px 26px -10px var(--playful-3), var(--btn-shadow);
}

/* Generic Link Styles */
a {
  transition: color .23s, text-decoration .2s;
}
a:hover, a:focus {
  color: var(--brand-secondary);
  text-decoration: underline dashed 2px var(--playful-2);
}

/* ========== Spacing Patterns =========== */
.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; }

/* ========== Feature Grid Cards ============== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.feature-grid > div {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 340px;
  position: relative;
  transition: transform .23s, box-shadow .23s;
  margin-bottom: 0;
}
.feature-grid > div img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 4px rgba(50,66,92,0.13));
}
.feature-grid > div:hover, .feature-grid > div:focus {
  transform: translateY(-4px) scale(1.03) rotate(-3deg);
  box-shadow: 0 8px 32px -4px var(--playful-5), var(--shadow);
  background: var(--playful-3);
}
.feature-grid > div:hover h3, .feature-grid > div:focus h3 {
  color: var(--playful-1);
}

/* ========== Content Cards ============== */
.card, .content-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 20px 22px 20px;
  margin-bottom: 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover, .content-card:hover {
  transform: scale(1.02) rotate(-2deg);
  box-shadow: 0 8px 28px -5px var(--playful-3), var(--shadow);
}

/* ========== TESTIMONIALS ============== */
.testimonial-card {
  background: #fff;
  color: #222!important;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 28px;
  margin-bottom: 22px;
  font-size: 1.12rem;
  transition: box-shadow .24s, transform .22s;
  min-width: 260px;
  max-width: 560px;
}
.testimonial-card > p {
  font-style: italic;
  font-family: var(--body-font);
  margin-bottom: 10px;
  color: #32425C!important;
}
.testimonial-card > span {
  font-size: 1rem;
  color: var(--brand-secondary);
}
.testimonial-card:hover {
  box-shadow: 0 12px 36px -8px var(--playful-4);
  transform: scale(1.02) rotate(2deg);
  background: var(--brand-accent);
}

/* ========== FOOTER ============== */
footer {
  background: var(--brand-primary);
  color: var(--brand-accent);
  padding: 44px 0 36px 0;
  font-size: 1rem;
  margin-top: 42px;
  width: 100%;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
footer nav.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: var(--playful-1);
  font-size: 1rem;
  transition: color .19s;
  font-weight: 700;
}
.footer-nav a:hover {
  color: var(--playful-2);
}
footer strong {
  color: var(--playful-1);
  font-weight: 700;
}
footer img {
  height: 52px;
  margin-bottom: 18px;
}
footer a {
  color: var(--playful-2);
  transition: color .17s;
}
footer a:hover, footer a:focus {
  color: var(--brand-secondary);
}

/* ========== RESPONSIVE flex LAYOUT RULES ========== */
@media (max-width: 1000px) {
  .feature-grid {
    gap: 18px;
  }
  .container {
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px 0;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 180px;
    padding: 32px 10px;
    border-radius: 10px;
    margin-bottom: 38px;
  }
  .hero h1 {
    font-size: 1.43rem;
    margin-bottom: 12px;
  }
  .section, section {
    padding: 22px 6px;
    margin-bottom: 34px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    margin-bottom: 20px;
  }
  .main-nav {
    display: none;
  }
  header img, footer img {
    height: 41px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .btn-primary, .btn-secondary {
    padding: 12px 18px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  body, p, li, .btn-primary, .btn-secondary {
    font-size: 15px!important;
  }
  h1 {
    font-size: 1.17rem;
  }
  h2 {
    font-size: 1rem;
  }
  footer .container {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    padding: 14px 10px 13px 10px;
  }
}

/* ========================================== */
/* ========== MOBILE MENU =================== */
/* ========================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 1101;
  background: var(--playful-2);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  font-size: 2rem;
  transition: background .19s, transform .2s;
  box-shadow: 0 4px 16px -2px rgba(252, 148, 73,.14);
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--playful-3);
  color: var(--brand-primary);
  transform: scale(1.09);
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .btn-primary {
    display: none;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--brand-accent);
  box-shadow: 0 0 32px -2px var(--playful-2);
  z-index: 1112;
  transform: translateX(100%);
  transition: transform .39s cubic-bezier(.53,1.47,.36,1.13);
  opacity: 0.99;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0%);
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--playful-2);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  position: absolute;
  top: 20px;
  right: 22px;
  transition: background .18s, transform .19s;
  z-index: 1113;
  cursor: pointer;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--danger);
  color: #fff;
  transform: scale(1.14) rotate(90deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 90px;
  padding-left: 44px;
  font-size: 1.2rem;
  width: 100%;
}
.mobile-nav a {
  padding: 14px 0 12px 2px;
  font-family: var(--headline-font);
  color: var(--brand-primary);
  font-weight: 900;
  transition: color .19s, background .14s;
  border-radius: 5px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--playful-2);
  background: #f8f4e5;
}

/* Block main content from scrolling when menu is open - toggle this class in JS */
body.menu-open {
  overflow: hidden;
}

/* ========================================== */
/* ========== COOKIE CONSENT BANNER ========= */
/* ========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  background: var(--brand-primary);
  color: var(--brand-accent);
  box-shadow: 0 -6px 18px -5px #222;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 20px 10px 20px 10px;
  z-index: 99998;
  font-size: 1.07rem;
  animation: cookie-slidein .7s cubic-bezier(.44,1.29,.41,.98);
  border-radius: 18px 18px 0 0;
}
@keyframes cookie-slidein {
  0% { transform: translateY(110%); }
  100% { transform: translateY(0); }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-family: var(--headline-font);
  font-weight: 700;
  border: none;
  outline: none;
  border-radius: 13px;
  padding: 11px 18px;
  background: var(--playful-3);
  color: var(--brand-primary);
  margin-left: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background .22s, color .18s, transform .18s;
  box-shadow: 0 2px 7px -2px var(--brand-secondary, #A2BBA344);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--playful-2);
  color: #fff;
  transform: scale(1.04) rotate(-2deg);
}
.cookie-banner .cookie-settings-btn {
  background: var(--playful-4);
  color: #fff;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--playful-2);
  color: var(--brand-accent);
}

@media (max-width: 620px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 8px 20px 8px;
    gap: 16px;
    border-radius: 12px 12px 0 0;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
    margin-top: 3px;
  }
}

/* ==== Cookie Modal ==== */
.cookie-modal-overlay {
  position: fixed;
  z-index: 100001;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(50, 66, 92, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-modal-fade .36s cubic-bezier(.62,1.47,.58,.99);
}
@keyframes cookie-modal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--brand-primary);
  border-radius: 18px;
  box-shadow: 0 8px 60px -12px #32425C59, 0 1.5px 6px 0 #32425C15;
  padding: 34px 30px 30px 30px;
  max-width: 370px;
  width: 97vw;
  animation: cookie-scale-in .41s cubic-bezier(.43,1.29,.41,.98);
  position: relative;
}
@keyframes cookie-scale-in {
  from { transform: scale(.73); opacity: .2; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  font-family: var(--headline-font);
  color: var(--playful-2);
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
  gap: 13px;
}
.cookie-modal .cookie-category label {
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--body-font);
  color: var(--brand-primary);
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--playful-3);
  width: 20px; height: 20px;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
/* Close Button */
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 14px; top: 16px;
  background: var(--playful-4);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.14rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, transform .19s;
  cursor: pointer;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--danger);
  transform: rotate(90deg) scale(1.13);
}

/* ========================================== */
/* ========== ANIMATION/PLAYFUL DETAILS ===== */
/* ========================================== */
/* Playful fade/translate in cards & headings */
@keyframes card-pop-in {
  0% { opacity:0; transform:translateY(36px) scale(.91); }
  to { opacity:1; transform:translateY(0) scale(1); }
}
.card, .content-card, .feature-grid > div, .testimonial-card {
  animation: card-pop-in .7s cubic-bezier(.42,1.27,.31,1.05);
}
h1, h2 {
  animation: card-pop-in .45s cubic-bezier(.55,1.1,.59,1.12);
}

/* Fun, animated Underlines (for h2) */
h2::after {
  content: '';
  display: block;
  width: 43px;
  height: 5px;
  border-radius: 2.5px;
  margin-top: 6px;
  background: var(--playful-3);
  animation: underline-slide .45s cubic-bezier(.3,1,.7,1.13);
}
@keyframes underline-slide {
  from { width: 0; background: var(--playful-1); }
  to { width: 43px; background: var(--playful-3); }
}

/* Floating Fun Circles – background accent */
.playful-floating {
  position: absolute;
  border-radius: 50%;
  background: var(--playful-1);
  opacity: .15;
  z-index: 0;
  animation: floatxy 5.9s infinite alternate cubic-bezier(.61,.34,.36,1.32);
}
@keyframes floatxy {
  0% { transform: translateY(0) translateX(0) scale(1); }
  100% { transform: translateY(-16px) translateX(14px) scale(1.09) rotate(15deg); }
}

/* ========================================== */
/* ========== MISC LAYOUT HELPERS ============ */
/* ========================================== */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-1 { margin-top: 8px!important; }
.mb-1 { margin-bottom: 8px!important; }
.mt-2 { margin-top: 16px!important; }
.mb-2 { margin-bottom: 16px!important; }
.mt-3 { margin-top: 24px!important; }
.mb-3 { margin-bottom: 24px!important; }

/* Columns with flex, never grid */
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-center { align-items: center; justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ========================================== */
/* ========== FORM, INPUTS ================== */
/* ========================================== */
input, textarea, select {
  font-family: var(--body-font);
  font-size: 1rem;
  border-radius: 10px;
  border: 1px solid var(--brand-secondary);
  outline: none;
  padding: 10px 16px;
  margin-bottom: 13px;
  width: 100%;
  max-width: 440px;
  background: #fff;
  transition: border .16s;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--playful-2);
}
label {
  font-family: var(--headline-font);
  color: var(--brand-primary);
  font-weight: 700;
  margin-bottom: 7px;
  display: block;
}

/* ========================================== */
/* ========== FAQ / List stylings =========== */
/* ========================================== */
ul, ol {
  padding-left: 22px;
}
ul li, ol li {
  padding-left: 0;
  margin-bottom: 8px;
  font-size: 1rem;
  position: relative;
}
ul li:before {
  content: '\2022';
  font-size: 1.3em;
  color: var(--playful-3);
  position: absolute;
  left: -18px;
  top: 0.2em;
}

/* ========================================== */
/* ========== ACCESSIBILITY FOCUSES ========= */
/* ========================================== */
a:focus, button:focus, input:focus {
  outline: 2px solid var(--playful-2);
  outline-offset: 1.5px;
}
::-webkit-input-placeholder { color: #bbb; }
::-moz-placeholder { color: #bbb; }
:-ms-input-placeholder { color: #bbb; }
::placeholder { color: #bbb; }

/* ========================================== */
/* ========== UTILITY & MISC ================ */
/* ========================================== */
.hide {
  display: none !important;
}

/* Prevent overlapping */
.feature-grid > div,
.card,
.content-card,
.testimonial-card,
.section {
  margin-bottom: 24px;
  box-sizing: border-box;
}

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