/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #ECECF1;
  color: #1B1C27;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%; height: auto;
  display: block;
}
a {
  color: #4BA3C7;
  text-decoration: none;
  transition: color 0.15s cubic-bezier(.4,1,.7,1.2);
}
a:hover, a:focus {
  color: #F27396;
}
ul, ol {
  margin-left: 2em;
}

/* BRAND COLORS & VARIABLES ------------------------*/
:root {
  --primary: #1B1C27;
  --secondary: #ECECF1;
  --accent: #4BA3C7;
  --accent2: #FCD34D;
  --accent3: #F27396;
  --white: #fff;
  --shadow: 0 3px 32px 0 rgba(27,28,39,0.08);
  --radius: 20px;
  --radius-small: 12px;
  --spacing: 24px;
}

/* TYPOGRAPHY --------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700,900&family=Open+Sans:wght@400,700&display=swap');
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--primary);
}
h1 {
  font-size: 2.75rem; /* 44px */
  margin-bottom: 24px;
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}

p, li, blockquote, label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
strong {
  font-weight: bold;
}
blockquote {
  background: var(--secondary);
  font-size: 1.1rem;
  font-style: italic;
  border-left: 6px solid var(--accent);
  padding: 16px 20px 16px 24px;
  margin: 22px 0 16px 0;
  border-radius: var(--radius-small);
  color: var(--primary);
  position: relative;
  box-shadow: var(--shadow);
}
blockquote span {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #4BA3C7;
  font-weight: bold;
}

/* CONTAINER, SECTIONS & SPACING -------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--secondary);
  border-radius: var(--radius-small);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s cubic-bezier(.44,.99,.23,1.11), box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-5px) scale(1.025) rotate(-1deg);
  box-shadow: 0 8px 38px 0 rgba(27,28,39,0.12);
}
.card-content {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 18px 22px;
  justify-content: center;
  gap: 10px;
}

.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;
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 32px 0 rgba(27,28,39,0.07);
  margin-bottom: 20px;
  flex-direction: column;
  position: relative;
  border-left: 7px solid var(--accent3);
  color: var(--primary);
  min-width: 0;
}
.client-name {
  font-weight: bold;
  color: var(--primary);
  font-size: 1rem;
  margin-top: 8px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--secondary);
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
  padding: 20px;
}

.section:last-child { margin-bottom: 0; }

/* HERO ------------------------------------------------*/
.hero {
  width: 100%;
  background: linear-gradient(95deg, #FCD34D 0%, #4BA3C7 100%);
  color: var(--primary);
  padding: 56px 0 48px 0;
  margin-bottom: 40px;
  border-radius: 0 0 48px 48px;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.7rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-shadow: 2px 4px 0 #FCD34D44, 8px 1px 0 #4BA3C766;
  margin-bottom: 12px;
  animation: slideDown .9s cubic-bezier(.44,.99,.23,1.11);
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--primary);
  animation: fadeInRight .6s .3s backwards;
}
.cta-main, .cta-btn, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  transition: background 0.19s, color 0.12s, box-shadow 0.18s, transform 0.18s;
  border-radius: 40px;
  cursor: pointer;
  padding: 13px 42px;
  font-size: 1.2rem;
  margin-top: 12px;
  margin-bottom: 0;
  background: var(--accent3);
  color: var(--white);
  box-shadow: 0 6px 24px 0 #F2739645;
  position: relative;
  letter-spacing: 1.2px;
}
.cta-main:hover, .cta-btn:hover, .cta-secondary:hover {
  background: var(--accent);
  color: var(--primary);
  transform: scale(1.062) rotate(-2deg);
  box-shadow: 0 9px 44px 0 rgba(75,163,199,0.20);
}
.cta-btn {
  font-size: 1rem;
  padding: 9px 28px;
  background: var(--accent2);
  color: var(--primary);
  margin-left: 20px;
  margin-top: 0;
  box-shadow: 0 2px 12px 0 #FCD34D44;
}
.cta-btn:hover {
  background: var(--accent3);
  color: #fff;
  box-shadow: 0 8px 32px 0 #F2739640;
}
.cta-secondary {
  background: var(--accent);
  color: #fff;
  padding: 14px 40px;
}
.cta-secondary:hover {
  background: var(--accent2);
  color: var(--primary);
}

/* NAV -------------------------------------------------*/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 24px 0 rgba(27,28,39,.06);
  z-index: 46;
  position: relative;
  margin-bottom: 0;
}
header .container {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
}
.logo {
  height: 38px;
  display: flex;
  align-items: center;
  margin-right: 36px;
}
header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  flex: 1;
}
header nav a {
  color: var(--primary);
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 6px 12px;
  border-radius: 24px;
  transition: background 0.12s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: var(--accent2);
  color: var(--accent3);
}

.mobile-menu-toggle {
  background: var(--accent2);
  color: var(--primary);
  border: none;
  font-size: 2.2rem;
  border-radius: 14px;
  padding: 6px 16px 4px 16px;
  display: none;
  align-items: center;
  cursor: pointer;
  margin-left: 16px;
  transition: background .18s, color .13s;
  box-shadow: 0 2px 12px 0 #FCD34D3b;
}
.mobile-menu-toggle:hover {
  background: var(--accent3);
  color: #fff;
}

/* MOBILE MENU ---------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform .36s cubic-bezier(.7,1,.23,1.02);
  box-shadow: 0 12px 54px 0 rgba(27,28,39,0.17);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--accent3);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  border-radius: 14px;
  padding: 4px 16px 2px 16px;
  margin: 28px 0 0 23px;
  box-shadow: 0 4px 22px 0 #F2739640;
  align-self: flex-start;
  cursor: pointer;
  transition: background .16s;
  z-index: 210;
  position: relative;
}
.mobile-menu-close:hover {
  background: var(--accent2);
  color: var(--primary);
}
.mobile-nav {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100vw;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: bold;
  background: none;
  color: var(--primary);
  border-radius: 26px;
  min-width: 80vw;
  padding: 12px 0px 12px 10px;
  transition: background .12s, color .13s;
  line-height: 1.36;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: var(--accent2);
  color: var(--accent3);
}
@media (max-width: 1060px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .container { max-width: 100vw; }
}
@media (max-width: 900px) {
  header nav, .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: flex !important; }
  .logo { margin-right: 10px; }
  header .container { gap: 6px; }
}
@media (max-width: 900px) {
  .footer-content nav { flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .hero { padding: 36px 0 32px 0; border-radius: 0 0 24px 24px; }
  .hero .content-wrapper { gap: 10px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .container { padding: 0 8px; }
  .section {
    padding: 22px 8px;
    margin-bottom: 40px;
  }
  .card-container, .content-grid {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 20px;
  }
  .feature-grid, .trend-features, .project-cards, .features ul, .inspiration-list {
    flex-direction: column !important;
    gap: 18px !important;
  }
}

/* FEATURES GRID & CARDS ------------------------------------*/
.feature-grid, .trend-features, .project-cards, .inspiration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 4px;
  margin-bottom: 18px;
}
.feature, .trend, .project-card, .inspiration-idea {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: var(--radius-small);
  box-shadow: var(--shadow);
  padding: 24px 20px 21px 24px;
  transition: box-shadow .20s, transform .17s;
  margin-bottom: 20px;
  min-width: 0;
  max-width: 350px;
  position: relative;
  gap: 8px;
  border: 3px solid #FCD34D40;
  font-size: 1rem;
  animation: fadeInUp .8s cubic-bezier(.44,.99,.23,1.11);
}
.feature img, .trend img {
  width: 46px; height: 46px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: var(--accent2);
  box-shadow: 0 2px 10px 0 #FCD34D36;
}
.feature:hover, .trend:hover, .project-card:hover, .inspiration-idea:hover {
  box-shadow: 0 11px 42px 0 rgba(27,28,39,0.17);
  transform: translateY(-5px) scale(1.047) rotate(-2deg);
  border-color: var(--accent3);
}

.project-highlights, .values-list, .qualities-list, .tips-list {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 0;
  list-style: none;
}
.values-list li:before,
.qualities-list li:before,
.tips-list li:before {
  content: '★';
  color: var(--accent3);
  margin-right: 10px;
}
.project-highlights li:before { content: '✔'; color: var(--accent); margin-right: 8px; }
.values-list li, .project-highlights li,
.qualities-list li, .tips-list li {
  background: var(--secondary);
  margin-bottom: 9px;
  padding: 9px 16px;
  border-radius: 11px;
  font-size: 1.06rem;
}
.qualities-list img {
  width: 22px; height: 22px; margin-right: 8px; vertical-align: middle;
}

/* ADDRESS & CONTACT --------------------------*/
.address-block, .small-contact {
  display: flex;
  align-items: center;
  gap: 15px 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.small-contact img {
  width: 20px; height: 20px; vertical-align: middle; margin-right: 6px;
}
.small-contact span, .small-contact a {
  font-size: 0.97rem;
  color: var(--primary);
  margin-right: 10px;
}

/* FAQ ------------------------------------------*/
.faq-item {
  background: var(--accent2);
  border-radius: var(--radius-small);
  box-shadow: 0 2px 18px 0 #FCD34D25, var(--shadow);
  padding: 16px 20px 16px 24px;
  margin-bottom: 20px;
  color: var(--primary);
}
.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--accent3);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.faq-item p {
  margin-bottom: 0;
  font-size: 1.01rem;
}

/* POLICY / LEGAL PAGES --------------------------*/
.policy {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 38px 18px 34px 18px;
}
.policy h1 {
  color: var(--accent3);
  font-size: 2.1rem;
  margin-bottom: 18px;
}
.policy h2 {
  color: var(--accent);
  font-size: 1.22rem;
  margin-top: 22px;
  margin-bottom: 7px;
}

/* THANK YOU PAGE ------------------------*/
.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 65vh;
  background: linear-gradient(98deg, #4BA3C7 10%, #FCD34D 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.thank-you .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}
.thank-you h1 {
  color: var(--primary);
  text-shadow: 1px 3px 0 #FCD34D77;
}

/* FOOTER -------------------------------------*/
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 30px 0 28px 0;
  border-radius: 32px 32px 0 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px 52px;
  justify-content: space-between;
}
.logo-footer { height: 34px; }
.footer-content nav {
  display: flex;
  align-items: flex-start;
  gap: 18px 12px;
  flex-wrap: wrap;
}
.footer-content nav a {
  color: var(--accent2);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 3px;
}
.footer-content nav a:hover {
  color: var(--accent3);
  background: none;
}
.brand-tagline span {
  color: var(--accent);
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
}
@media (max-width: 830px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ANIMATIONS -----------------------------------*/
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeInRight {
  0%{ opacity:0; transform:translateX(-24px); }
  100%{ opacity:1; transform:none; }
}
@keyframes slideDown {
  0%{ opacity:0; transform:translateY(-30px); }
  100%{ opacity:1; transform:none; }
}

/* PLAYFUL DYNAMIC DETAILS ----------------------*/
.feature, .trend, .project-card, .inspiration-idea {
  animation: popCard .37s cubic-bezier(.52,1.42,.44,1.21) both;
}
@keyframes popCard {
  0% { transform: scale(.92) rotate(-2deg); opacity: 0.45; }
  85% { transform: scale(1.04) rotate(.7deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.section, .feature, .trend, .testimonial-card, .faq-item, .card {
  transition: box-shadow 0.17s, background 0.17s, transform 0.13s;
}

.section:hover, .feature:hover, .trend:hover, .testimonial-card:hover, .faq-item:hover, .card:hover {
  box-shadow: 0 11px 42px 0 rgba(252,211,77,0.17);
}

/* ACCENT COLORS, BUTTONS, BORDERS DYNAMIC SHAPES */
.feature:after, .trend:after, .testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  top: -18px; right: -18px;
  width: 38px; height: 38px;
  background: var(--accent2);
  border-radius: 50% 40% 40% 35% / 60% 40% 50% 100%;
  box-shadow: 0 3px 18px 0 #FCD34D22;
  z-index: 0;
  opacity: .12;
  pointer-events: none;
}
.feature:before, .trend:before, .testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  left: -24px; bottom: -17px;
  width: 22px; height: 22px;
  background: var(--accent3);
  border-radius: 50% 70% 90% 80% / 70% 40% 80% 100%;
  box-shadow: 0 6px 14px 0 #F2739635;
  z-index: 0;
  opacity: .15;
  pointer-events: none;
}

/* COOKIE CONSENT BANNER & MODAL -----------------------------*/
.cookie-banner {
  position: fixed;
  z-index: 9999;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -8px 38px 0 #2C2C3134, 0 -2px 8px 0 #F2739638;
  border-radius: 22px 22px 0 0;
  padding: 23px 16px 17px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  font-size: 1.09rem;
  animation: fadeInUp .4s both;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 5px 7px 10px;
    font-size: 1.01rem;
  }
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 20px;
  padding: 10px 28px;
  font-size: 1rem;
  margin: 0 4px;
  cursor: pointer;
  transition: background .13s, color .11s, box-shadow .14s;
}
.cookie-btn.accept {
  background: var(--accent3);
  color: #fff;
  box-shadow: 0 2px 14px #F2739644;
}
.cookie-btn.reject {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 10px #4BA3C744;
}
.cookie-btn.accept:hover {
  background: var(--accent2);
  color: var(--primary);
}
.cookie-btn.reject:hover {
  background: var(--accent2);
  color: var(--primary);
}
.cookie-settings-btn {
  background: #ECECF1;
  color: var(--primary);
  border: 2px solid var(--accent);
  margin-left: 5px;
}
.cookie-settings-btn:hover {
  background: var(--accent2);
  color: var(--accent3);
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(27,28,39, 0.39);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  padding: 40px 28px 25px 28px;
  border-radius: 25px;
  box-shadow: 0 8px 42px 0 #1B1C2788;
  max-width: 380px;
  width: 95vw;
  position: relative;
  z-index: 100005;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  animation: popCard .27s both;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent3);
  font-size: 1.18rem;
  margin-bottom: 5px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.cookie-modal label {
  flex: 1;
  font-weight: bold;
  color: var(--primary);
  font-size: 1.015rem;
}
.cookie-modal .cookie-toggle {
  display: inline-block;
  width: 39px; height: 22px;
  background: #ECECF1;
  border-radius: 22px;
  border: 2px solid var(--accent2);
  position: relative;
  margin-right: 4px;
  transition: background .14s, border .17s;
}
.cookie-modal .cookie-toggle input[type=checkbox]{
  display: none;
}
.cookie-modal .cookie-toggle .slider {
  display: block;
  position: absolute;
  left: 2px; top: 2px; width: 17px; height: 17px;
  background: var(--accent);
  border-radius: 50%;
  transition: left .18s, background .13s;
}
.cookie-modal .cookie-toggle input:checked + .slider {
  left: 19px;
  background: var(--accent3);
}
.cookie-modal .category-desc {
  font-size: 0.95rem;
  color: #757575;
  margin-left: 50px;
  margin-bottom: 7px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px;
}
.cookie-modal .cookie-btn {
  min-width: 80px;
}
.cookie-modal .cookie-btn.close {
  background: #ECECF1;
  color: var(--primary);
}
.cookie-modal .cookie-btn.close:hover {
  background: var(--accent2);
  color: var(--accent3);
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 8px 10px 8px;
  }
}

/* PLAYFUL FONT STYLING -------------------------------------*/
h1, h2, .cta-main, .cta-btn, .cta-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
}
.cta-btn, .cta-main, .cta-secondary {
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ENERGETIC FEEL - FUN TRANSITIONS, VIBRANT HOVER */
.card, .feature, .trend, .testimonial-card, .faq-item, .card:focus {
  outline: none;
  transition: box-shadow .16s cubic-bezier(.51,2,.31,.86), filter .13s, transform .17s;
}
.card:hover, .feature:hover, .trend:hover, .testimonial-card:hover, .faq-item:hover {
  filter: brightness(1.025) contrast(1.04) drop-shadow(0 10px 36px #FCD34D33);
  background: #fff4dc;
}

/* FOCUS STATES ------------------------------------*/
:focus {
  outline: 2px solid var(--accent3);
  outline-offset: 2px;
}

/* Misc helpers */
.hidden { display: none !important; }

/* Extra: Give interactive pointer to all clickable/focusable */
button, [role="button"], input[type="button"], input[type="submit"],
a, .card, .card:hover { cursor: pointer; }

/* Extra: Hide mobile menu by default on desktop */
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}
