/* ==== CSS RESET & BASE ==== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, 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,
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F1FAEE;
  color: #101828;
  font-family: 'Lato', Arial, sans-serif;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}


/* ==== BRAND COLORS & FONTS as CSS Variables ==== */
:root {
  --primary: #22577A;      /* deep electric blue */
  --secondary: #FCD35F;    /* vibrant sunny yellow */
  --accent: #F1FAEE;       /* airy very light cyan */
  --danger: #DB3754;       /* strong pink for alerts/buttons */

  --text-dark: #101828;
  --text-light: #fff;

  --brand-blue: #22577A;
  --brand-yellow: #FCD35F;
  --brand-accent: #F1FAEE;
  --brand-pink: #DB3754;

  --shadow-card: 0 6px 28px -6px rgba(34,87,122,0.20), 0 1.5px 6px rgba(34,87,122,0.09);

  --radius: 18px;
}


/* ==== TYPOGRAPHY ==== */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--primary);
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(34,87,122,0.10);
}
@media (min-width: 768px) {
  h1, .h1 { font-size: 3rem; }
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--brand-pink);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  h2, .h2 { font-size: 2.2rem; }
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
p, li {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
}
strong {
  color: var(--primary);
  font-weight: 700;
}
em {
  color: var(--brand-pink);
}
ul {
  padding-left: 20px;
  margin-left: 10px;
}
ul li {
  margin-bottom: 12px;
  position: relative;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}


/* ==== LAYOUT CONTAINER LAYOUTS (FLEXBOX ONLY) ==== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-bottom: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width:768px) {
  .content-wrapper { gap: 36px; }
  .section { padding: 60px 0; margin-bottom:80px; }
}

/* TEXT + IMAGE FLEX SECTION */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 0 32px 0;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* List group for features/ul */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}


/* ==== HEADER & NAV ==== */
header {
  background: var(--primary);
  color: var(--accent);
  width: 100%;
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
  position: sticky;
  top:0; left:0; right:0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
header > a img {
  height: 48px;
  margin: 12px 16px 12px 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
}
header nav a {
  color: var(--accent);
  padding: 8px 12px;
  border-radius: 8px;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
.cta-primary {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 100px;
  box-shadow: 0 4px 20px -4px var(--primary);
  margin-left: 16px;
  transition: background 0.18s, color 0.18s, transform 0.2s, box-shadow 0.18s;
  display: inline-block;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 30px -8px var(--primary);
}
header {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 0 18px 0 12px;
  min-height: 70px;
}

/* MOBILE MENU BUTTONS */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-yellow);
  color: var(--primary);
  font-size: 2.6rem;
  border: none;
  border-radius: 12px;
  padding: 2px 18px;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 31;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-pink);
  color: #fff;
}

@media (max-width: 1024px) {
  header nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==== MOBILE MENU STYLES ==== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--primary);
  position: fixed;
  top: 0; right: 0; bottom: 0;
  left: 100%;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  overflow-y: auto;
  box-shadow: 0 0 40px 0 rgba(34,87,122,0.33);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.85,.02,.43,.98), opacity 0.28s 0s;
  will-change: transform;
}
.mobile-menu.open {
  left: 0;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0%);
  background: var(--primary);
  transition: transform 0.38s cubic-bezier(.85,.02,.43,.98), opacity 0.28s;
}
.mobile-menu {
  transform: translateX(100%);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 24px 8px 0;
  font-size: 2.2rem;
  background: none;
  color: var(--brand-yellow);
  border: none;
  cursor: pointer;
  transition: color 0.2s, transform 0.18s;
  z-index: 102;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-pink);
  transform: scale(1.16) rotate(18deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  margin: 38px 0 24px 26px;
}
.mobile-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  padding: 12px 10px 12px 0;
  margin-bottom: 3px;
  transition: color 0.18s, background 0.18s, transform 0.13s;
  border-radius: 8px;
  min-width: 180px;
  outline: none;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--primary);
  background: var(--brand-yellow);
  transform: translateX(8px) scale(1.05);
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}


/* ==== HERO SECTIONS ==== */
.hero {
  background: linear-gradient(92deg, var(--secondary) 20%, var(--accent) 74%);
  min-height: 340px;
  display: flex;
  align-items: stretch;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 18px -4px var(--secondary);
  border-radius: 0 0 36px 36px;
}
.hero .container { min-height: 320px; }
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  min-height: 260px;
  gap: 12px;
}
.hero h1 {
  color: var(--primary);
  line-height: 1.08;
  margin-bottom: 8px;
  text-shadow: 0 3px 12px rgba(252,211,95,0.13);
  font-size: 2.3rem;
}
.hero p {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}
@media (min-width: 720px) {
  .hero h1 { font-size: 2.9rem; }
  .hero .content-wrapper {
    align-items: flex-start;
    justify-content: center;
    min-height: 220px;
  }
}

/* ==== FEATURES GRID ==== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin: 0 0 10px 0;
}
.feature {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 20px 24px 20px;
  min-width: 220px;
  flex: 1 1 230px;
  max-width: 350px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.17s;
  border: 2px solid var(--accent);
}
.feature:hover, .feature:focus-within {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 10px 36px -8px var(--brand-yellow),0 3px 16px rgba(34,87,122,0.10);
  border-color: var(--secondary);
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 5px;
}
.feature h3 {
  color: var(--brand-pink);
  font-size: 1.29rem;
  letter-spacing: -0.5px;
  margin: 0 0 5px 0;
}
.feature p {
  font-size: 1rem;
  color: var(--primary);
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  margin-top: 0;
  margin-bottom: 32px;
}
.testimonials h2 {
  color: var(--brand-pink); text-shadow: 0 1px 8px #fcd35f44;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  background: #fff;
  color: var(--text-dark);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px -4px var(--brand-yellow),0 2.5px 10px rgba(34,87,122,0.05);
  border: 2px solid var(--secondary);
  max-width: 600px;
  transition: transform 0.12s;
}
.testimonial-card:hover {
  transform: scale(1.018) translateY(-3px);
  box-shadow: 0 6px 32px -7px var(--brand-pink),0 1.5px 6px rgba(34,87,122,0.09);
}
.testimonial-card p {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  line-height: 1.5;
  margin-bottom: 5px;
}
.testimonial-card span {
  color: var(--brand-pink);
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: bold;
}
@media (min-width: 960px) {
  .testimonials .content-wrapper { flex-direction: row; flex-wrap: wrap; gap: 40px; }
  .testimonial-card { flex: 1 1 290px; min-width: 210px; min-height: 148px; }
}

/* ==== CARDS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  position: relative;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 10px 42px -8px var(--brand-yellow);
  transform: scale(1.021);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 20px 20px 22px;
}

/* ==== CTA TEASERS ==== */
.cta {
  margin: 58px 0 16px 0;
  background: var(--primary);
  border-radius: 28px;
  box-shadow: 0 3px 24px -8px var(--brand-pink), 0 1.5px 8px rgba(34,87,122,0.09);
  color: var(--accent);
  text-align: center;
  padding: 46px 20px 38px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta h2 {
  color: var(--brand-yellow);
  font-size: 2rem;
  margin-bottom: 17px;
}
.cta .cta-primary {
  margin: 0 auto;
  font-size: 1.2rem;
  padding: 15px 46px;
  border-radius: 40px;
  font-weight: bold;
  background: var(--brand-pink);
  color: #fff;
  box-shadow: 0 6px 28px -6px var(--brand-yellow);
}
.cta .cta-primary:hover {
  color: var(--brand-pink);
  background: var(--brand-yellow);
}

/* == SECTION SPACING & FLEX == */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width:768px) {
  section { padding: 60px 0 48px 0; }
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 0;
  width: 100%;
  position: relative;
  box-shadow: 0 -2px 18px -8px var(--brand-pink);
  border-radius: 30px 30px 0 0;
}
footer .container {
  padding: 26px 18px 14px 18px;
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer h3 {
  color: var(--secondary);
  margin-bottom: 7px;
  font-size: 1.02rem;
  letter-spacing: 1px;
}
footer a {
  color: var(--secondary);
  opacity: 0.95;
  margin-right: 10px;
  transition: color 0.2s, opacity 0.15s;
}
footer a:hover, footer a:focus {
  color: var(--brand-pink);
  opacity: 1;
}
footer ul {
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 0;
}
footer ul li {
  margin-bottom: 8px;
}
footer img {
  height: 38px; margin-bottom: 8px;
}
@media (min-width: 800px) {
  footer .content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  footer > .container { flex-direction: row; }
}

/* ==== LEGAL PAGES ==== */
.legal .container {
  padding: 18px;
}
.legal h1, .legal h2 {
  margin-bottom: 18px;
  color: var(--brand-pink);
}
.legal ul li:before {
  background: var(--brand-yellow);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ==== CONFIRMATION PAGE ==== */
.confirmation .container {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation .content-wrapper {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.confirmation h1 {
  color: var(--brand-pink);
  margin-bottom: 20px;
}

/* ==== RESPONSIVE LAYOUT ADAPTATIONS ==== */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper { gap: 20px; }
  section, .section {
    padding: 30px 0 16px 0;
  }
  .footer .content-wrapper, footer .content-wrapper {
    flex-direction: column !important;
    gap: 18px;
  }
  .features-grid {
    flex-direction: column;
    gap: 24px;
  }
}


/* ==== MAP SNIPPET ==== */
.map-snippet {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  background: #fff;
  border: 2px solid var(--brand-yellow);
  border-radius: 10px;
  margin-top: 8px;
  box-shadow: 0 1.2px 6px 0 #fcd35f22;
  color: var(--primary);
  font-weight: bold;
}
.map-snippet img {
  height: 28px; width: 28px;
}

/* ==== ANIMATIONS ==== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInMenu {
  from { transform: translateX(100%); }
  to { transform: translateX(0%); }
}
@keyframes slideOutMenu {
  from { transform: translateX(0%); }
  to { transform: translateX(100%); }
}


/* ==== BUTTONS (secondary/danger) ==== */
.button-secondary {
  background: var(--accent);
  color: var(--brand-pink);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 24px;
  padding: 12px 26px;
  border: 2px solid var(--brand-pink);
  transition: background 0.18s, color 0.18s, box-shadow 0.15s;
  cursor: pointer;
  font-size: 1rem;
  margin-right: 8px;
  margin-bottom: 6px;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--brand-pink);
  color: #fff;
}
.button-danger {
  background: var(--brand-pink);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  padding: 12px 26px;
  border: none;
  box-shadow: 0 1px 9px -2px var(--brand-pink);
  margin-bottom: 6px;
  margin-right: 8px;
}
.button-danger:hover, .button-danger:focus {
  background: var(--brand-yellow);
  color: var(--brand-pink);
}

/* ==== COOKIES BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 -3px 20px -7px #22577acc;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 150;
  border-radius: 18px 18px 0 0;
  animation: fadeIn 0.6s;
}
.cookie-banner .cookie-message {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  margin-bottom: 10px;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 3px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 18px;
  font-size: 1rem;
  padding: 12px 22px;
  cursor: pointer;
  margin: 0 4px;
  transition: background 0.14s, color 0.14s,box-shadow 0.14s;
  box-shadow: 0 1.5px 9px 0 #22577a22;
}
.cookie-banner .cookie-accept {
  background: var(--brand-yellow);
  color: var(--primary);
  font-weight: 700;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: var(--brand-pink);
  color: #fff;
  font-weight: 600;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: var(--brand-yellow);
  color: var(--brand-pink);
}
.cookie-banner .cookie-settings {
  background: var(--accent);
  color: var(--brand-pink);
  border: 2px solid var(--brand-pink);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--brand-yellow);
  color: var(--primary);
}
@media (max-width:600px) {
  .cookie-banner {
    padding: 16px 6px 10px;
    gap: 6px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 7px;
  }
  .cookie-banner button {
    padding: 12px 16px;
    width: 100%;
  }
}

/* ==== COOKIE CONSENT MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,87,122,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 170;
  transition: opacity 0.23s;
}
.cookie-modal {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 12px 48px -8px var(--primary),0 1.5px 6px rgba(34,87,122,0.09);
  max-width: 410px;
  width: 90%;
  padding: 30px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  animation: fadeIn 0.38s ease-out;
}
.cookie-modal h3 {
  color: var(--brand-pink);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-cat {
  margin-bottom: 11px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.08rem;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px; height: 20px;
  background: var(--accent);
  border-radius: 18px;
  position: relative;
  outline: none;
  border: 2px solid var(--brand-pink);
  vertical-align: middle;
  margin-right: 9px;
  transition: background 0.14s, border 0.14s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--brand-yellow);
  border-color: var(--brand-pink);
}
.cookie-modal .cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--brand-pink);
  transition: transform 0.19s;
}
.cookie-modal .cookie-toggle:checked::after {
  transform: translateX(18px);
  background: var(--brand-yellow);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .cookie-save {
  background: var(--brand-pink);
  color: #fff;
}
.cookie-modal .cookie-save:hover, .cookie-modal .cookie-save:focus {
  background: var(--brand-yellow);
  color: var(--primary);
}
.cookie-modal .cookie-cancel {
  background: var(--accent);
  color: var(--brand-pink);
  border: 2px solid var(--brand-pink);
}
.cookie-modal .cookie-cancel:hover, .cookie-modal .cookie-cancel:focus {
  background: var(--brand-pink);
  color: #fff;
}

/* ==== MISC ELEMENTS ==== */
a:focus {
  outline: 3px solid var(--brand-pink);
}
::-webkit-scrollbar-thumb {
  background: var(--brand-pink);
  border-radius: 22px;
}
::-webkit-scrollbar {
  width: 7px;
  background: var(--brand-yellow);
}

/* ==== HIGH ENERGY EFFECTS ==== */
.cta-primary, .feature, .testimonial-card, .button-secondary, .button-danger {
  transition: box-shadow 0.17s, background 0.18s, color 0.15s, transform 0.2s;
}

/* ==== UTILITIES ==== */
.d-none { display: none !important; }
.w-100 { width: 100%; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 12px !important; }

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