/* ======= CSS RESET & NORMALIZE ======= */
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F6FA;
  color: #1A2233;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 16px;
  --brand-primary: #1A2233;
  --brand-secondary: #6B8A7A;
  --brand-accent: #F4F6FA;
  --brand-bright: #F4F6FA;
  --brand-pink: #FE4080;
  --brand-blue: #3D95F3;
  --brand-yellow: #FFD859;
  --brand-green: #62D8B5;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--brand-pink);
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.3em;
}
b, strong {
  font-weight: bold;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #3D95F3 40%, #FE4080 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroHeadlineIn 1s cubic-bezier(.51,1.67,.65,1) 0.1s both;
}
@keyframes heroHeadlineIn {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  margin-top: 12px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  margin-top: 12px;
  color: var(--brand-secondary);
}

.subheadline {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #424f5a;
  font-family: 'Montserrat', Arial, sans-serif;
}

p, li, .text-section, .legal-text {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #232837;
  margin-bottom: 16px;
}
p:last-child, .text-section:last-child {
  margin-bottom: 0;
}

/* ======= LAYOUT CONTAINERS ======= */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
  background: transparent;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ======= MAIN NAVIGATION BAR ======= */
header {
  width: 100%;
  background: var(--brand-bright);
  position: relative;
  box-shadow: 0 1px 10px 0 rgba(26,34,51,0.05);
  z-index: 102;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 18px 20px;
  width: 100%;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-primary);
  padding: 7px 14px;
  border-radius: 10px;
  transition: background 0.2s, color 0.2s, transform 0.13s;
}
.main-nav > a.cta-primary {
  margin-left: auto;
  background: var(--brand-blue);
  color: #fff;
  font-size: 1rem;
  border-radius: 24px;
  box-shadow: 0 2px 14px -6px #3D95F399;
  letter-spacing: 0.02em;
  padding: 10px 28px;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.main-nav > a.cta-primary:hover, 
.main-nav > a.cta-primary:focus {
  background: var(--brand-pink);
  color: #fff;
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 4px 18px -6px #FE408099;
}
.main-nav a:not(.cta-primary):hover,
.main-nav a:not(.cta-primary):focus {
  background: #FFE6F2;
  color: var(--brand-pink);
  transform: scale(1.04);
}
.main-nav img {
  width: 42px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

/* Hide .mobile-menu-toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

/* ======= HERO SECTION ======= */
.hero {
  min-height: 350px;
  background: linear-gradient(75deg, #F4F6FA 60%, #FFD859 100%);
  border-radius: 0 0 38px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 44px -16px #E4EBFFBB;
  animation: heroPopIn 0.9s cubic-bezier(.56,1.33,.46,1) 0.08s both;
}
@keyframes heroPopIn {
  from { opacity: 0; transform: scale(1.06) translateY(-30px); }
  to   { opacity: 1; transform: scale(1) translateY(0);
}
}

/* ======= FLEX/SPACING PATTERNS ======= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 22px -10px #6B8A7A22;
  padding: 26px 22px;
  transition: box-shadow 0.16s, transform 0.15s;
  margin-bottom: 20px;
  position: relative;
}
.card:hover {
  box-shadow: 0 12px 32px -8px #3D95F344, 0 1px 3px #FE408055;
  transform: translateY(-4px) scale(1.025) rotate(-1deg);
}

.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;
}
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  box-shadow: 0 6px 28px -8px #3D95F333;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #1A2233;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 14px 40px -12px #FE408055, 0 1.5px 4px #DB317144;
  transform: scale(1.012) translateY(-2px);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 200px;
  flex-basis: 240px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 2px 15px -8px #6B8A7A33;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.feature-item:hover {
  box-shadow: 0 8px 32px -10px #FFD85944, 0 1.5px 5px #6B8A7A44;
  transform: scale(1.03) rotate(-0.5deg);
}
.feature-item img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #FFD85933;
  padding: 5px;
  margin-bottom: 5px;
}

/* ======= LISTS AND TABLES (BENEFITS, SERVICES, ETC) ======= */
.service-list, .brand-values, .usp-list, .benefit-list, .contact-info, .project-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style-type: disc;
  margin: 0 0 16px 10px;
}
.service-list .price, .service-item .price {
  color: var(--brand-pink);
  font-weight: bold;
  margin-left: 3px;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.service-grid, .trend-cards, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.service-item, .trend-cards > div, .blog-list > article {
  flex: 1 1 260px;
  min-width: 220px;
  background: #fff;
  border-radius: 20px;
  padding: 20px 18px 16px;
  box-shadow: 0 1.5px 14px -8px #FFD85933;
  margin-bottom: 20px;
  transition: transform 0.14s, box-shadow 0.13s;
  position: relative;
}
.service-item:hover, .trend-cards > div:hover, .blog-list > article:hover {
  transform: scale(1.03) translateY(-3px) rotate(0.5deg);
  box-shadow: 0 6px 28px -8px #3D95F344, 0 2px 10px #FFD85933;
}

.pricing-table {
  overflow-x: auto;
  margin-bottom: 28px;
}
.pricing-table table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 370px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px -8px #6B8A7A33;
}
.pricing-table th, .pricing-table td {
  padding: 16px 16px;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-bottom: 1px solid #eee;
}
.pricing-table th {
  background: #FFD85944;
  color: var(--brand-primary);
  font-size: 1.11rem;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* ======= CTAs & BUTTONS ======= */
.cta-primary, button.cta-primary, .subscribe-section button.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, #3D95F3, #FE4080 80%);
  color: #fff !important;
  padding: 12px 30px;
  border-radius: 27px;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 18px -8px #3D95F388;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, transform 0.16s, box-shadow 0.16s;
  letter-spacing: 0.01em;
  margin: 18px 0 0 0;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(100deg, #FE4080, #3D95F3 80%);
  color: #fff;
  transform: scale(1.07) rotate(-1deg);
  box-shadow: 0 6px 32px -8px #FE408067;
  text-decoration: none;
}
button, input[type="submit"] {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: #FFD859;
  color: #1A2233;
  border-radius: 20px;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.16s, transform 0.13s;
}
button:hover, input[type="submit"]:hover, button:focus {
  background: #FE4080;
  color: #fff;
  transform: scale(1.03) rotate(-2deg);
}
.subscribe-section {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.subscribe-section input[type="email"] {
  padding: 10px 18px;
  border-radius: 18px;
  border: 2px solid #3D95F3;
  font-size: 1.06rem;
  outline: none;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: border 0.18s;
  margin-right: 4px;
}
.subscribe-section input[type="email"]:focus {
  border: 2px solid #FE4080;
}
.benefit-text {
  font-size: 0.98rem;
  color: #6B8A7A;
  margin-left: 5px;
  padding-top: 2px;
}

/* ======= FOOTER ======= */
footer {
  background: var(--brand-primary);
  color: #fff;
  width: 100%;
  padding: 38px 0 14px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -6px 32px -6px #3D95F322;
}
footer .container {
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
footer img {
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  opacity: 0.93;
  transition: color 0.17s, opacity 0.13s;
  padding: 4px 8px;
  border-radius: 8px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFD859;
  background: #3D95F3;
  opacity: 1;
}
.footer-meta {
  margin-top: 12px;
  font-size: 0.92rem;
  color: #FFE9EF;
  text-align: center;
  opacity: 0.86;
}

/* ======= BLOG, INSPIRATION ETC. ======= */
.blog-list > article, .trend-cards > div {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 12px -7px #3D95F344;
  padding: 22px 16px 16px;
  margin-bottom: 18px;
  min-width: 220px;
  position: relative;
}
.tags {
  font-size: 0.87rem;
  color: var(--brand-secondary);
  opacity: 0.92;
  margin-top: 7px;
  display: block;
}
.category-filter {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.category-filter a {
  color: #3D95F3;
  border-radius: 8px;
  padding: 3px 10px;
  background: #F4F6FA;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.15s, color 0.13s;
}
.category-filter a:hover, .category-filter a:focus {
  background: #FFD859;
  color: var(--brand-primary);
}

/* === ACCORDION (FAQ) === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}
.faq-accordion h3 {
  cursor: pointer;
  margin-bottom: 0;
  background: #F4F6FA;
  color: var(--brand-secondary);
  border-radius: 11px;
  padding: 12px 18px;
  font-size: 1.09rem;
  transition: background 0.2s;
  font-weight: 600;
}
.faq-accordion h3:hover {
  background: #FFD85999;
}
.faq-accordion div {
  background: #fff;
  border-radius: 10px;
  margin-top: 0;
  padding: 13px 18px;
  font-size: 1rem;
  box-shadow: 0 1px 6px -3px #6B8A7A1A;
}

/* === INSPIRATION QUOTE === */
.inspiration-quote {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FE4080;
  background: #fff;
  border-left: 5px solid #3D95F3;
  border-radius: 10px 20px 20px 10px;
  font-size: 1.23rem;
  padding: 16px 24px;
  margin: 18px 0 0 0;
  box-shadow: 0 2px 11px -5px #FE408022;
}

/* ========= CONTACT INFO ========== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 14px 0;
  font-size: 1rem;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #232837;
}
.contact-info img {
  width: 23px;
  height: 23px;
  margin-right: 3px;
  filter: saturate(1.3);
}
.contact-info a {
  color: #3D95F3;
  transition: color 0.18s;
}
.contact-info a:hover {
  color: #FE4080;
  text-decoration: underline;
}

/* ========= MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 17px;
  top: 16px;
  font-size: 2.3rem;
  background: none;
  color: var(--brand-primary);
  z-index: 200;
  border: none;
  padding: 6px 16px;
  cursor: pointer;
  border-radius: 18px;
  transition: background 0.17s, color 0.16s, transform 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #FE4080;
  background: #FFD859AA;
  transform: scale(1.08);
}
.mobile-menu {
  display: block;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #1A2233ee;
  transform: translateX(-110vw);
  transition: transform 0.36s cubic-bezier(.69,1.21,.47,1);
  opacity: 1;
  box-shadow: 0 0 0 100vw #1A223399;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  animation: menuFadeIn 0.33s cubic-bezier(.66,1.3,.52,1.12) both;
}
@keyframes menuFadeIn {
  from { opacity: 0;}
  to   { opacity: 1;}
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 18px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #fff;
  z-index: 1010;
  cursor: pointer;
  border-radius: 18px;
  padding: 6px 16px;
  transition: background 0.15s, color 0.13s, transform 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD859;
  background: #3D95F3aa;
  transform: scale(1.09);
}
.mobile-nav {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 32px 32px 0 30px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.33rem;
  border-radius: 19px;
  padding: 14px 18px 12px;
  transition: background 0.16s, color 0.15s, transform 0.12s;
  display: block;
  width: 100%;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD859;
  color: var(--brand-primary);
  transform: scale(1.04);
}

/* === Custom hamburger show/hide === */
@media (max-width: 1050px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1050px) {
  header {
    min-height: 64px;
  }
}
@media (min-width: 1051px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ======= COOKIE CONSENT BANNER ======= */
.cookie-banner {
  width: 100vw;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 4011;
  background: linear-gradient(90deg, #FFD859 65%, #FE4080 130%);
  color: #232837;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 24px 22px;
  box-shadow: 0 -3px 22px -10px #FE408099;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 42px;
  animation: cookieBannerAppear 0.35s cubic-bezier(.38,1.71,.45,1.09);
}
@keyframes cookieBannerAppear {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 180px;
  min-width: 160px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  background: #1A2233;
  color: #FFD859;
  border: none;
  border-radius: 22px;
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, transform 0.12s;
  margin: 2px 0;
  outline: none;
  box-shadow: 0 2px 14px -5px #1A223355;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FE4080;
  color: #fff;
  transform: scale(1.045);
}
.cookie-banner .cookie-settings-btn {
  background: #3D95F3;
  color: #fff;
  font-weight: 600;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #FFD859;
  color: #1A2233;
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4090;
  width: 100vw;
  height: 100vh;
  background: #1A2233dd;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cookie-modal.open {
  display: flex;
  animation: modalPopIn 0.28s cubic-bezier(.48,1.45,.54,1) both;
}
@keyframes modalPopIn {
  from { opacity: 0; transform: scale(1.12); }
  to   { opacity: 1; transform: scale(1.0); }
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 26px;
  max-width: 410px;
  width: 92vw;
  padding: 30px 30px 27px 30px;
  box-shadow: 0 6px 42px -4px #FE408077;
  color: #1A2233;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h2 {
  font-size: 1.33rem;
  color: #FE4080;
  margin-bottom: 12px;
}
.cookie-modal .category-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #232837;
  font-weight: 600;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #3D95F3;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-modal .cookie-close-modal {
  background: none;
  color: var(--brand-pink);
  border: none;
  font-size: 1.5rem;
  position: absolute;
  right: 14px;
  top: 10px;
  padding: 6px 13px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal .cookie-close-modal:hover, .cookie-modal .cookie-close-modal:focus {
  background: #FFD859;
  color: #1A2233;
}
.cookie-modal .always-on {
  font-size: 0.93rem;
  color: #6B8A7A;
  margin-left: 10px;
  font-weight: 500;
}


/* ======= TESTIMONIALS & BLOCKQUOTES ======= */
.testimonial-card blockquote {
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #232837;
  margin: 0 0 0 6px;
  flex: 1 1 100px;
  font-weight: 400;
}
.testimonial-card span {
  color: #6B8A7A;
  font-size: 0.98rem;
  font-weight: 600;
  margin-left: 8px;
}
.testimonial-card img {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}

blockquote {
  border-left: 4px solid #FFD859;
  padding: 14px 18px 14px 20px;
  background: #fffce1;
  border-radius: 10px 18px 18px 10px;
  color: #1A2233;
}

/* ======= RESPONSIVE & MOBILE-FIRST DESIGN ======= */
@media (max-width: 960px) {
  .container { max-width: 96vw; }
  .service-grid, .trend-cards, .blog-list, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; gap: 17px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.07rem; }
  .main-nav { padding: 10px 8px; }
  .footer-nav { gap: 10px; }
  section, .section { padding: 26px 7px; margin-bottom: 36px; }
  .testimonial-card, .card, .service-item, .trend-cards > div, .blog-list > article, .feature-item {
    padding: 18px 10px;
  }
  .footer-meta { font-size: 0.9rem; }
  .container { padding: 0 7px; }
  .inspiration-quote { font-size: 1.02rem; padding: 14px 9px; }
}
@media (max-width: 600px) {
  .text-image-section { flex-direction: column; gap: 18px; }
  footer { padding: 19px 0 9px; }
  .card-container, .service-grid, .trend-cards, .blog-list, .feature-grid { gap: 14px; }
  .content-wrapper { gap: 16px; }
}

@media (max-width: 460px) {
  h1 { font-size: 1.13rem; }
  h2 { font-size: 1rem; }
  .testimonial-card blockquote, p, .text-section, .legal-text { font-size: 0.97rem; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
  .cta-primary, button.cta-primary { padding: 9px 15px; font-size: 1rem; }
  .mobile-menu .mobile-nav { padding: 32px 10px 0 10px; }
  .cookie-modal .cookie-modal-content { padding: 17px 5vw 12px 5vw; }
}

/* ======= MICRO-ANIMATIONS & PLAYFUL EFFECTS ======= */
.cta-primary, button.cta-primary, .feature-item, .trend-cards > div, .blog-list > article, .card, .testimonial-card {
  transition: box-shadow 0.18s cubic-bezier(.65,1.16,.48,1.14), transform 0.16s;
}
.cta-primary:active, button:active, .feature-item:active, .trend-cards > div:active, .blog-list > article:active {
  transform: scale(0.98) rotate(-0.7deg);
}
.card::after, .testimonial-card::after {
  content: '';
  display: block;
  position: absolute;
  right: 16px;
  bottom: 8px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #FFD85988;
  z-index: 0;
  pointer-events: none;
  animation: badgePulsate 2.2s infinite linear alternate;
}
@keyframes badgePulsate {
  from { opacity: 0.2; transform: scale(0.80); }
  to   { opacity: 0.36; transform: scale(1.19); }
}

/* ======= UTILITIES ======= */
.text-section ul, .legal-text ul {
  margin-top: 6px;
}
.text-section ul > li, .legal-text ul > li {
  margin-bottom: 8px;
}

.text-section {
  font-family: 'Roboto', Arial, sans-serif;
  color: #232837;
  margin-bottom: 10px;
}

.brand-values > li:before {
  content: '★ ';
  color: #FFD859;
  font-size: 1.1em;
  margin-right: 3px;
}

.legal-text h2 {
  margin-bottom: 5px;
  margin-top: 16px;
  color: #3D95F3;
  font-size: 1.11rem;
}

/* =====--- Z-INDEX ---====== */
header, .main-nav, .mobile-menu, .mobile-menu-toggle, .mobile-menu-close {
  z-index: 1200;
}
.cookie-banner {
  z-index: 4011;
}
.cookie-modal {
  z-index: 4090;
}

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