/*--------------------------------------------------
   CSS RESET & NORMALIZATION
--------------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  width: 100%;
  background: #F5F6FA;
  color: #2F3648;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #D7B05A;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.7,.3,.3,1);
}
a:hover, a:focus {
  color: #2F3648;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #2F3648;
  font-weight: 700;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; letter-spacing: -1px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.45rem; margin-bottom: 12px; }
h4 { font-size: 1.2rem; }
.section > h1,
.section > h2,
.section > h3 {
  letter-spacing: -1px;
  word-break: break-word;
}
p { margin-bottom: 1em; }
strong { font-weight: bold; color: #2F3648; }
em { color: #D7B05A; font-style: normal; }
blockquote {
  font-style: italic;
  color: #2F3648;
  border-left: 5px solid #D7B05A;
  padding-left: 18px;
  background: #fff9ee;
}
cite {
  display: block;
  font-style: normal;
  color: #886415;
  font-size: 0.98em;
  margin-top: 8px;
  letter-spacing: .5px;
}
hr {
  border: 0;
  border-top: 1.5px dashed #DBC676;
  margin: 32px 0;
}

/*--------------------------------------------------
   BRAND & ARTISTIC COLORS
--------------------------------------------------*/
:root {
  --primary: #2F3648;
  --secondary: #D7B05A;
  --accent: #F5F6FA;
  --accent-alt: #fff9ee;
  --warning: #F27935;
  --success: #6AAF41;
  --error: #BC2229;
}

/*--------------------------------------------------
   CONTAINERS, SECTIONS, LAYOUTS
--------------------------------------------------*/
.container {
  max-width: 1120px;
  width: 95%;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(215,176,90,0.07), 0 1.5px 12px -2px rgba(47,54,72,.06);
  position: relative;
  overflow: visible;
}
@media (max-width: 768px) {
  .section { padding: 30px 6px; margin-bottom: 36px; border-radius: 20px; }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-grid > div {
  flex: 1 1 220px;
  min-width: 210px;
  background: var(--accent-alt);
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(47,54,72, .06);
  padding: 22px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 2px solid #FFF4DF;
  transition: box-shadow 0.18s cubic-bezier(.5,.56,.54,1.5), border-color 0.2s;
}
.feature-grid > div:hover {
  border-color: var(--secondary);
  box-shadow: 0 7px 24px 2px rgba(215,176,90,0.16);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 1.5px 8px rgba(47,54,72,0.08);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.13s;
  min-width: 250px;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(47,54,72,0.18);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  background: transparent;
  border-radius: 14px;
  padding: 0;
  margin-bottom: 14px;
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(47,54,72,0.08), 0 1px 4px -1.5px rgba(215,176,90,0.08);
  border: 2px solid #FFF4DF;
  margin-bottom: 20px;
  max-width: 540px;
  min-width: 240px;
  transition: box-shadow 0.19s cubic-bezier(.6,.3,.2,1), border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 2px rgba(215,176,90,0.13);
  border-color: var(--secondary);
}
.testimonial-card blockquote {
  color: #2F3648;
  font-size: 1.18rem;
  background: transparent;
  border-left: 4px solid var(--secondary);
  padding-left: 16px;
  margin-bottom: 2px;
}
.testimonial-card cite {
  font-size: 1em;
  color: #886415;
}

/*--------------------------------------------------
   NAVIGATION / HEADER LAYOUT
--------------------------------------------------*/
header {
  background: #fff;
  box-shadow: 0 1.5px 16px rgba(215,176,90,0.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 19px 12px 19px 12px;
}
nav img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}
nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin-bottom: 0;
  align-items: center;
}
nav ul li {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
nav ul li a {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 1.04rem;
  padding: 8px 14px;
  border-radius: 9px;
  transition: background 0.2s, color 0.15s;
  position: relative;
  z-index: 1;
}
nav ul li a:hover, nav ul li a:focus {
  background: var(--accent-alt);
  color: var(--secondary);
  outline: none;
}
nav ul li .primary-btn {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 13px;
  font-weight: 700;
  padding: 9px 23px;
  margin-left: 8px;
  border: none;
  box-shadow: 0 2.5px 11px 0 rgba(215,176,90,0.10);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.01em;
  font-size: 1.06rem;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s;
}
nav ul li .primary-btn:hover, nav ul li .primary-btn:focus {
  background: #ffe3aa;
  color: #2F3648;
  box-shadow: 0 4px 18px 0 rgba(215,176,90,0.18);
}

/*--------------------------------------------------
   BUTTONS & CTA BUTTONS
--------------------------------------------------*/
.cta-btn, .cta-btn.secondary {
  display: inline-block;
  padding: 12px 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 20px;
  border: none;
  text-align: center;
  margin-top: 8px;
  margin-bottom: 6px;
  text-decoration: none;
  box-shadow: 0px 6px 30px 0 rgba(215,176,90,0.13);
  transition: background 0.22s cubic-bezier(.6,.2,.1,1), color 0.18s, transform 0.12s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffe3aa;
  color: #2F3648;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 8px 34px 0 rgba(215,176,90,0.16);
  outline: none;
}
.cta-btn.secondary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0px 5px 24px 0 rgba(47,54,72,0.08);
  border: 2px solid var(--secondary);
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--secondary);
  color: var(--primary);
  border-color: var(--primary);
}
.button,
button,
.mobile-menu-toggle,
.mobile-menu-close {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  border: none;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.15s, color 0.22s, box-shadow 0.14s;
  padding: 8px 18px;
}
button:focus, .button:focus { outline: 2px solid var(--primary); }
.button:hover, button:hover {
  background: #ffe3aa;
  color: var(--primary);
}

/*--------------------------------------------------
   MOBILE NAVIGATION
--------------------------------------------------*/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 300;
  background: var(--secondary);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  border: none;
  box-shadow: 0 2px 12px rgba(215,176,90,0.14);
  justify-content: center;
  align-items: center;
  transition: background 0.18s, color 0.17s, box-shadow 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffe3aa;
  color: var(--primary);
  outline: none;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(47,54,72,0.92);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,.7,.2,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform .33s cubic-bezier(.5,1,.32,1), opacity .22s cubic-bezier(.5,1,.32,1);
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff; background: none;
  border: none;
  margin: 28px 28px 8px 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 2px 14px rgba(215,176,90,0.15);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe3aa;
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  padding-top: 24px;
  gap: 16px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 14px 0;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 4px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}
@media (max-width: 1020px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; opacity: 0 !important; }
}

/*--------------------------------------------------
   FOOTER
--------------------------------------------------*/
footer {
  background: #fff5e8;
  color: #2F3648;
  font-size: 1rem;
  border-top: 2px solid #FFF4DF;
  padding: 18px 0 8px 0;
  letter-spacing: 0.5px;
  box-shadow: 0 -1.5px 12px 0 rgba(215,176,90,0.10);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2px;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
}
footer nav a {
  color: #2F3648;
  font-weight: 500;
  transition: color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

/*--------------------------------------------------
   SPACING & RESPONSIVENESS
--------------------------------------------------*/
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .feature-grid {
    gap: 16px;
  }
  .section {
    padding-left: 6px;
    padding-right: 6px;
  }
  .testimonial-card { min-width: 188px; }
}
@media (max-width: 768px) {
  nav {
    flex-direction: row;
    gap: 8px;
    padding: 9px 4vw 9px 2vw;
    min-height: 67px;
  }
  nav img { height: 38px; margin-right: 8px; }
  .feature-grid, .card-container, .content-wrapper, .content-grid {
    flex-direction: column !important;
    gap: 16px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    min-width: 120px;
    max-width: 100%;
    width: 100%;
    padding: 14px 8px;
  }
  .section { min-width: 0; }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .card {
    min-width: 0;
    padding: 19px 12px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.13rem; }
}
@media (max-width: 540px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  .section { padding: 14px 0; margin-bottom: 22px; }
}

/*--------------------------------------------------
   COOKIE CONSENT BANNER
--------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  width: 100vw;
  z-index: 6000;
  background: rgba(255,249,238,0.96);
  box-shadow: 0 -1.5px 16px 0 rgba(215,176,90,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  gap: 24px;
  font-size: 1.05rem;
  border-radius: 18px 18px 0 0;
  animation: banner-popin 0.72s cubic-bezier(.61,1.06,.59,1.03);
  transition: transform 0.4s;
}
@keyframes banner-popin {
  0% { transform: translateY(100%); }
  80% { transform: translateY(-8%); }
  100% { transform: translateY(0); }
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 310px;
  color: #2F3648;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner .cookie-btn {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 11px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  box-shadow: 0 1px 8px rgba(215,176,90,0.09);
  transition: background 0.19s, color 0.16s;
  cursor: pointer;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #ffe3aa;
  color: var(--primary);
}
.cookie-banner .cookie-btn.secondary {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  transition: background 0.18s, color 0.15s;
}
.cookie-banner .cookie-btn.secondary:hover, .cookie-banner .cookie-btn.secondary:focus {
  background: var(--secondary);
  color: #2F3648;
}
@media (max-width: 760px) {
  .cookie-banner {
    flex-direction: column; align-items: stretch; gap: 14px; padding: 18px 6vw;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-banner-actions {
    flex-direction: column; gap: 8px; align-items: stretch;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-54%) scale(0.95);
  z-index: 12000;
  background: #fff9ee;
  border-radius: 20px;
  box-shadow: 0 6px 38px 4px rgba(47,54,72,0.18);
  padding: 36px 26px 24px 26px;
  min-width: 280px;
  max-width: 95vw;
  width: 370px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-54%) scale(1);
  animation: modal-popin .48s cubic-bezier(.56,1.25,.34,.98);
}
@keyframes modal-popin {
  0% { transform: translate(-50%,-70%) scale(0.6); opacity: 0; }
  85% { opacity: 1; }
  100% { transform: translate(-50%,-54%) scale(1); opacity:1; }
}
.cookie-modal .cookie-modal-header {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.34rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  padding: 11px 0 8px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-modal .category-title {
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.cookie-modal .category-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.cookie-modal .toggle-switch {
  width: 38px;
  height: 21px;
  border-radius: 18px;
  background: #e0e8c8;
  position: relative;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal .toggle-switch.active {
  background: var(--secondary);
}
.cookie-modal .toggle-switch .switch-handle {
  position: absolute;
  top: 2px; left: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1.5px 5px rgba(47,54,72,0.08);
  transition: left 0.18s, background 0.12s;
}
.cookie-modal .toggle-switch.active .switch-handle { left: 19px; background: #fdebc0; }
.cookie-modal .cookie-category.essential .toggle-switch {
  background: #c6b782;
  pointer-events: none;
}
.cookie-modal .cookie-category.essential .switch-handle {
  background: #fff4df;
}
.cookie-modal .cookie-actions {
  display: flex; flex-direction: row; gap: 14px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  padding: 8px 18px;
}
@media (max-width: 460px) {
  .cookie-modal { width: 96vw; padding: 16px 4vw 12px 4vw; }
}

/*--------------------------------------------------
   ARTISTIC & CREATIVE ENRICHMENTS
--------------------------------------------------*/
.section {
  background: linear-gradient(106deg, #fff9ee 80%, #fdebc0 120%);
  border: 3.5px solid #FFF4DF;
  box-shadow: 0 6px 32px 2px rgba(215,176,90,0.09);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    border-width: 2px;
    border-radius: 14px;
  }
}
.section::before {
  content: '';
  position: absolute;
  top: -60px; right: 60px;
  width: 190px; height: 90px;
  background: rgba(247,222,162,0.19);
  filter: blur(18px);
  border-radius: 68px 75px 128px 80px;
  z-index: 0;
  pointer-events: none;
}
.section::after {
  content: '';
  position: absolute;
  left: -70px; bottom: -42px;
  width: 151px; height: 82px;
  background: rgba(231,199,86,0.11);
  filter: blur(10px);
  border-radius: 104px 31px 101px 95px;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 600px) {
  .section::before, .section::after { display: none; }
}
.section > * { position: relative; z-index: 1; }

/* Artistic Typography */
h1, .creative-title {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  background: linear-gradient(96deg, #2F3648 70%, #D7B05A 180%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: -1.5px;
  font-style: italic;
  text-shadow: 1px 2px 0 #fdebc0,0 3px 24px #d7b05a26;
}
h2, .creative-h2 {
  font-family: 'Montserrat', sans-serif;
  color: #2F3648;
  font-style: normal;
  text-shadow: 0 1px 0 #fff9ee;
}
h3, .creative-h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--secondary);
  font-style: normal;
  font-weight: 700;
  text-shadow: 0 1.5px 0 #fff5e8;
}

.section .cta-btn { margin-top: 16px; }

/* Unique artistic accents for lists */
ul li, ol li {
  position: relative;
  margin-bottom: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
ul li::before {
  content: '\2022';
  font-size: 1.28em;
  color: var(--secondary);
  position: absolute;
  left: -1.8em;
  top: 0.1em;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
}
ol li::before {
  display: none;
}

.text-section {
  border-left: 5px solid #fdebc0;
  padding-left: 16px;
  background: transparent;
  font-size: 1.04rem;
  margin-bottom: 18px;
  font-family: 'Open Sans', sans-serif;
}

/* Fancy underline for links (Artistic) */
a:not(.cta-btn):not(.primary-btn) {
  box-shadow: 0 2px 0 var(--secondary);
  border-radius: 4px 4px 0 0;
  padding-bottom: 0.5px;
}
a:not(.cta-btn):not(.primary-btn):hover,
a:not(.cta-btn):not(.primary-btn):focus {
  background: #fff2c7;
  color: #2F3648;
  box-shadow: 0 3px 0 var(--secondary);
}

/* Artistic buttons (wavy hover) */
.cta-btn, .cta-btn.secondary {
  position: relative;
  overflow: hidden;
}
.cta-btn::after, .cta-btn.secondary::after {
  content: '';
  position: absolute;
  left: -60%;
  top: 0;
  width: 220%;
  height: 100%;
  background: rgba(255,248,228,0.56);
  opacity: 0.37;
  transform: skewX(-22deg);
  transition: left 0.34s cubic-bezier(.75,.13,.29,1.22);
  pointer-events: none;
}
.cta-btn:hover::after, .cta-btn.secondary:hover::after {
  left: 8%;
}

/*--------------------------------------------------
   ACCESSIBILITY
--------------------------------------------------*/
:focus-visible {
  outline: 2.5px dashed var(--secondary);
  outline-offset: 2px;
}

/* Visually hide elements helper */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

/*--------------------------------------------------
   MISC
--------------------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  background: #fff9ee;
}
::-webkit-scrollbar-thumb {
  background: #fdebc0;
  border-radius: 8px;
}

/*--------------------------------------------------
   PAGE SPECIFIC & UTILITY CLASSES
--------------------------------------------------*/
/* Card grid for community or reviews if ever used */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 22px;
}

/* Hide elements on desktop */
.hide-desktop { display: none !important; }
/* Hide elements on mobile */
@media (max-width: 1020px) {
  .hide-mobile { display: none !important; }
}
@media (min-width: 1021px) {
  .hide-desktop { display: none !important; }
}

/*--------------------------------------------------
   END OF CSS
--------------------------------------------------*/
