/* ==== 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;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5FAFE;
  color: #203349;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button, input[type="button"], input[type="submit"] {
  border: none; background: none; font-family: inherit; font-size: inherit; cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  color: #203349;
  font-weight: bold;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; }
h2 { font-size: 1.75rem; margin-bottom: 20px; margin-top: 0; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

p {
  margin-bottom: 12px;
}

/* ==== BRAND COLORS ==== */
:root {
  --color-primary: #203349;
  --color-secondary: #E6F0F8;
  --color-accent: #24B28E;
  --color-lightbg: #F5FAFE;
  --color-dark: #203349;
  --color-footer-bg: #21324c;
  --color-white: #FFF;
  --color-black: #131518;
  --color-shadow: rgba(32,51,73,0.09);
  --color-card-shadow: rgba(36,178,142,0.09);
}

/* ==== CONTAINER & WRAPPER LAYOUTS ==== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* ==== SECTIONS SPACING AND STRUCTURE ==== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 28px;
}

@media (min-width: 900px) {
  .section, section {
    padding: 60px 0 60px 0;
  }
}

.hero, .hero-thank-you, .blog-hero, .newsletter-cta {
  background: linear-gradient(120deg, #E6F0F8 75%, #24B28E 120%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 16px 40px var(--color-shadow);
}
.hero .content-wrapper, .hero-thank-you .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 28px;
}

/* ==== HEADER ==== */
header {
  background: var(--color-white);
  box-shadow: 0 8px 24px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}
.logo img {
  height: 46px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  transition: color .2s;
  color: var(--color-dark);
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 16px;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.2s;
  border-radius: 2px;
  position: absolute;
  left: 0; bottom: -2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.cta-btn {
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 24px;
  padding: 10px 34px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .03em;
  box-shadow: 0 2px 18px var(--color-card-shadow);
  border: none;
  outline: none;
  transition: background 0.18s, transform .18s;
  margin-left: 18px;
  margin-right: 8px;
  cursor: pointer;
  position: relative;
}
.cta-btn:active {
  transform: translateY(2px) scale(0.96);
}
.cta-btn:hover, .cta-btn:focus {
  background: #169674;
  color: #F5FAFE;
}
/* Focus visible for accessibility */
.cta-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ==== BURGER MOBILE MENU ==== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1rem;
  padding: 2px 9px;
  background: var(--color-secondary);
  border-radius: 12px;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 103;
  transition: background .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: #FFF;
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(32,51,73,0.97);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.62,-0.23,.23,1.33);
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #FFF;
  background: none;
  border: none;
  margin: 24px 34px 0 0;
  align-self: flex-end;
  z-index: 122;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 48px 34px 0 0;
  gap: 28px;
  width: 100%;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Roboto Slab',serif;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 8px 24px;
  border-radius: 18px 0 0 18px;
  transition: background .23s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #FFF;
}

@media (max-width: 1079px) {
  .main-nav { display: none; }
  .cta-btn { margin-left: 0; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1080px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
  .main-nav { display: flex; }
}

/* ==== BODY AND TYPOGRAPHY ==== */
body {
  /* artistic splashes */
  background: linear-gradient(160deg, #E6F0F8 0%, #F5FAFE 65%, #24B28E 130%);
  min-height: 100vh;
}
.text-section, .legal .text-section {
  font-size: 1.07rem;
  max-width: 900px;
  margin-bottom: 32px;
  color: var(--color-dark);
  letter-spacing: 0.01em;
}
.text-section h2 {
  margin-top: 22px;
}

/* ==== ARTISTIC FONTS & EMPHASIS ==== */
h1, h2 {
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
}
.hero h1, .hero-thank-you h1 {
  font-size: 2.7rem;
  background: -webkit-linear-gradient(90deg, #203349 60%, #24B28E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 700px) {
  .hero h1, .hero-thank-you h1 { font-size: 2rem; }
  h2 { font-size: 1.15rem; }
}

/* ==== CARD AND FLEX STRUCTURES ==== */
.card-container, .service-list, .feature-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  width: 100%;
}
.card, .service-list li, .feature-grid li {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 4px 22px var(--color-card-shadow);
  padding: 30px 28px 26px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  flex: 1 1 240px;
  transition: box-shadow .19s, transform .18s;
  border-left: 3.5px solid var(--color-accent);
  z-index: 1;
}
.card:hover, .service-list li:hover, .feature-grid li:hover {
  box-shadow: 0 8px 34px var(--color-accent);
  transform: translateY(-5px) scale(1.022);
}
.card img, .feature-grid li img {
  height: 44px; margin-bottom: 16px;
}
.card h3, .service-list li h3, .feature-grid li h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.service-list {
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.service-list li {
  border-left: 6px solid var(--color-accent);
  box-shadow: 0 6px 36px var(--color-card-shadow);
  min-width: 240px;
  font-size: 1rem;
  transition: border-color .17s;
}
.service-list li .price {
  color: var(--color-accent);
  font-family: 'Roboto Slab', serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .02em;
  margin-top: 8px;
}
.service-list li h2, .service-list li h3 {
  font-size: 1.14rem;
  margin-bottom: 7px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  width: 100%;
}
.feature-grid li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 12px var(--color-shadow);
  min-width: 210px;
  flex: 1 1 210px;
  padding-bottom: 22px;
  position: relative;
  background: linear-gradient(100deg, #E6F0F8 90%, #e9fdf6 110%);
  border-left: 5px solid var(--color-accent);
  /* subtle brush marks */
  overflow: hidden;
}
.feature-grid li:before {
  content: '';
  display: block;
  position: absolute;
  top: -30px;
  right: -70px;
  width: 140px;
  height: 120px;
  background: rgba(36, 178, 142, 0.14);
  border-radius: 50% 35% 75% 95%;
  z-index: 0;
  pointer-events: none;
}
.feature-grid li h3 {
  z-index: 1;
}

/* ==== FANCY MICRO INTERACTION ==== */
.card:hover:after, .feature-grid li:hover:after {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 55px; height: 55px;
  background: rgba(36,178,142,0.095);
  border-radius: 45% 55% 45% 90%;
  z-index: 2;
  pointer-events: none;
  animation: sparkle .85s linear;
}
@keyframes sparkle {
  0% { opacity: 0; transform: scale(0.7) rotate(-18deg); }
  75% { opacity: 1; transform: scale(1.06) rotate(7deg); }
  100% { opacity: 0; transform: scale(1.21) rotate(-13deg); }
}

/* ==== TESTIMONIALS ==== */
.testimonials {
  background: linear-gradient(120deg, #e0f7f7 75%, #E6F0F8 120%);
  border-radius: 24px 24px 32px 32px;
}
.testimonials h2 {
  color: var(--color-primary);
  margin-bottom: 18px;
}
.testimonial-card {
  background: var(--color-white);
  color: var(--color-black);
  border-radius: 22px;
  box-shadow: 0 3px 18px var(--color-card-shadow);
  margin-bottom: 22px;
  padding: 20px 30px 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 220px;
  transition: box-shadow .18s;
  overflow: hidden;
  border-left: 4px solid var(--color-accent);
  position: relative;
}
.testimonial-card blockquote {
  font-size: 1.12rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0;
  color: var(--color-dark);
}
.testimonial-card .author {
  margin-left: 17px;
  color: var(--color-accent);
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}
.testimonial-card:before {
  content: '”';
  font-size: 3.5rem;
  color: var(--color-accent);
  opacity: 0.15;
  font-family: 'Roboto Slab', serif;
  position: absolute;
  left: 13px;
  top: 4px;
  pointer-events: none;
}
/* On hover, add animated paint effect */
.testimonial-card:hover {
  box-shadow: 0 8px 34px var(--color-accent);
  border-left: 4.5px solid #169674;
}

/* ==== BLOG ENTRIES ==== */
.blog-list ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.blog-list li {
  background: var(--color-white);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 4px 16px var(--color-card-shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  margin-bottom: 0;
}
.blog-list li h3 {
  color: var(--color-primary);
  font-size: 1.09rem;
  margin-bottom: 3px;
}
.blog-list li a {
  font-weight: 700;
  color: var(--color-accent);
  transition: color .17s;
  position: relative;
}
.blog-list li a:after {
  content: '';
  display: inline-block;
  margin-left: 3px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.2s;
}
.blog-list li a:hover:after {
  width: 100%;
}
.featured-blog-post {
  background: linear-gradient(92deg, #E6F0F8 68%, #24B28E 145%);
  box-shadow: 0 6px 30px var(--color-card-shadow);
  border-radius: 18px;
  padding: 32px 30px 24px 30px;
  margin-top: 18px;
  position: relative;
}
.featured-blog-post h4 {
  font-family: 'Roboto Slab', serif;
  font-size: 1.23rem;
  margin-bottom: 7px;
}
.featured-blog-post a {
  font-weight: 700;
  color: var(--color-primary);
  transition: color .17s;
}
.featured-blog-post a:hover {
  color: var(--color-accent);
}

/* ==== NEWSLETTER CTA ==== */
.newsletter-cta .content-wrapper {
  align-items: center;
  text-align: center;
}

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

/* ==== LEGAL / POLICY SECTIONS ==== */
.legal.section, .legal {
  background: var(--color-white);
  border-radius: 21px;
  box-shadow: 0 2px 14px rgba(36,178,142,0.07);
  color: var(--color-primary);
  margin-bottom: 60px;
  padding: 35px 18px;
}
.legal .text-section {
  font-size: 1.03rem;
  color: var(--color-primary);
}
.legal .text-section ul, .legal .text-section ol {
  list-style: disc inside;
}

/* ==== FOOTER ==== */
footer {
  background: var(--color-footer-bg);
  color: var(--color-white);
  padding: 34px 0 12px 0;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -4px 26px var(--color-shadow);
  margin-top: 60px;
}
footer .container {
  width: 100%;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--color-white);
  transition: color .18s;
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}
.footer-contact span, .footer-contact a {
  color: #fff;
  font-size: 1rem;
  opacity: 0.85;
}
.footer-contact a:hover {
  color: var(--color-accent);
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
}
.footer-social img {
  width: 27px; height: 27px;
  opacity: 1;
  filter: drop-shadow(0 1px 6px rgba(36,178,142,0.13));
  transition: filter .16s;
}
.footer-social img:hover {
  filter: drop-shadow(0 3px 12px rgba(36,178,142,0.43));
}

/* ==== COOKIE CONSENT BANNER & MODAL ==== */
.cookie-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-dark);
  color: #FFF;
  z-index: 130;
  padding: 17px 14px 17px 20px;
  box-shadow: 0 -2px 24px rgba(32,51,73,0.11);
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
  transition: transform .34s, opacity .27s;
  opacity: 1;
  gap: 16px;
}
.cookie-banner.hide {
  transform: translateY(160%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 9px;
  margin-left: 14px;
}
.cookie-banner button {
  border-radius: 7px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 16px;
  margin: 0 2px;
  cursor: pointer;
  outline: none;
  transition: background .21s, color .15s, box-shadow .13s;
  border: none;
}
.cookie-accept-btn {
  background: var(--color-accent);
  color: #FFF;
}
.cookie-accept-btn:hover, .cookie-accept-btn:focus {
  background: #169674;
}
.cookie-settings-btn {
  background: var(--color-white);
  color: var(--color-dark);
  border: 1.2px solid var(--color-accent);
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #E6F0F8;
  color: var(--color-accent);
}
.cookie-reject-btn {
  background: none;
  color: #c5e4d9;
  border: 1.2px solid var(--color-accent);
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #e9fdf6;
  color: var(--color-accent);
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,51,73,0.54);
  z-index: 131;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s;
}
.cookie-modal-overlay.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: var(--color-white);
  border-radius: 22px;
  box-shadow: 0 12px 44px var(--color-shadow);
  max-width: 354px;
  width: 90vw;
  padding: 30px 18px 24px 24px;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 2;
  animation: cookieModalIn .45s cubic-bezier(.62,-0.23,.23,1.33) both;
}
@keyframes cookieModalIn {
  0% { transform: scale(.83) translateY(60px); opacity:0; }
  82% { transform: scale(1.04) translateY(-14px); }
  100% { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h3 {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  font-size: 1rem;
  margin: 6px 0;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #E6F0F8;
  border-radius: 30px;
  border: 2px solid #bbc7d3;
  position: relative;
  transition: background .13s, border-color .15s;
  outline: none;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.cookie-modal .cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  background: #FFF;
  border-radius: 50%;
  transition: left 0.14s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 18px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0 4px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--color-primary);
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 900px) {
  .container { max-width: 98vw; padding: 0 10px; }
  .section, section, .hero, .testimonials, .legal {
    padding: 26px 7px 32px 7px;
    border-radius: 14px;
  }
  header .container { height: 60px; }
  .footer-social img { width: 22px; height: 22px; }
  .blog-list li, .featured-blog-post, .testimonials, .testimonial-card {
    padding-left: 11px; padding-right: 11px;
  }
}
@media (max-width: 700px) {
  .footer-nav { flex-direction: column; gap: 4px; }
  .footer-social { gap: 8px; }
  .content-wrapper { gap: 14px; }
  h1 { font-size: 1.40rem; }
  h2 { font-size: 1.03rem; }
  .service-list, .feature-grid, .card-container { gap: 12px; }
}
@media (max-width: 630px) {
  .container { padding: 0 4px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .testimonial-card, .card, .feature-grid li, .service-list li { padding: 14px 7px; }
  .testimonial-card { min-width: unset; }
  .service-list li, .feature-grid li { min-width: unset; }
}

/* ==== BUTTONS AND INTERACTIVE ELEMENTS ==== */
a, button, .cta-btn {
  transition: background .17s, color .15s, box-shadow .17s, border .15s;
}
button:focus-visible, a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 2px var(--color-secondary);
}

/* ==== VISUAL HIERARCHY & SPACING ==== */
.section, section {
  margin-bottom: 60px !important;
  padding-top: 40px; padding-bottom: 40px;
}
.card-container, .feature-grid, .service-list, .content-grid {
  gap: 24px !important;
}
.card, .feature-grid li, .service-list li {
  margin-bottom: 20px !important;
}
.text-image-section {
  gap: 30px !important;
}
.testimonial-card {
  gap: 20px !important;
  padding: 20px !important;
}
.feature-item {
  gap: 15px !important;
}
@media (max-width: 700px) {
  .section, section { margin-bottom: 38px !important; }
  .card-container, .feature-grid, .service-list, .content-grid { gap: 10px !important; }
  .card, .feature-grid li, .service-list li { margin-bottom: 13px !important; }
  .testimonial-card { gap: 12px !important; }
  .text-image-section { gap: 13px !important; }
}

/* ==== SCROLLBAR CUSTOMIZATION ==== */
::-webkit-scrollbar {
  width: 10px;
  background: #e8f7ef;
}
::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background: #c9f2e6;
}

/* ==== CUSTOM UTILITY CLASSES ==== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px !important; }
.mb-16 { margin-bottom: 16px !important; }
.w-100 { width: 100% !important; }

/* ==== HIDE ON MOBILE / DESKTOP ==== */
.hide-on-mobile { display: none !important; }
@media (min-width: 1080px) { .hide-on-mobile { display: initial !important; } }
.show-on-mobile { display: initial !important; }
@media (min-width: 1080px) { .show-on-mobile { display: none !important; } }

/* ==== ANIMATED PAINT SPLASHES & CREATIVE ELEMENTS ==== */
.hero:after, .hero-thank-you:after {
  content: '';
  position: absolute;
  top: -90px; right: -100px;
  width: 260px; height: 170px;
  background: rgba(36,178,142,0.11);
  border-radius: 47% 53% 51% 68% / 63% 41% 69% 42%;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 700px) {
  .hero:after, .hero-thank-you:after { width: 120px; height: 78px; top: -20px; right: -25px; }
}

/* ==== FORM ELEMENTS (future-proof) ==== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1.2px solid #bbc7d3;
  background: #fff;
  color: var(--color-dark);
  outline: none;
  transition: border-color .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
}

/* ==== PRINT SANITY ==== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  main, body { background: #fff !important; color: #111 !important; }
}
