/* -----------------------------------------------------
   CSS RESET & BASE STYLES – mobile-first, wide support
--------------------------------------------------------*/
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, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #F8F8FF;
  color: #222222;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #006CA6;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.65,.05,.67,1.12);
}
a:hover {
  color: #E24B8D;
}
ul, ol {
  margin: 0 0 18px 22px;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
strong, b {
  font-weight: bold;
}
section {
  width: 100%;
}
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 14px;
}

/* ------------------------------
   VIBRANT ENERGETIC PALETTE
------------------------------ */
:root {
  --clr-primary: #006CA6;
  --clr-secondary: #E2BBFF;
  --clr-accent: #F7E460;
  --clr-pink: #E24B8D;
  --clr-blue-lite: #ADF2FA;
  --clr-bg-light: #F8F8FF;
  --clr-dark: #222222;
  --clr-success: #73D36C;
}

/* ---------------------------
   TYPOGRAPHY
---------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@700&family=Open+Sans:wght@400;600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--clr-primary);
  margin-bottom: 10px;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.14;
  margin-bottom: 18px;
  text-shadow: 0 3px 14px rgba(226, 187, 255, 0.15);
}
h2 {
  font-size: 1.9rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1.15rem;
}
p {
  margin-bottom: 12px;
  font-weight: 400;
}
.text-section p,
.text-section ul,
.text-section ol {
  color: #333;
}

/* Responsive typography */
@media (min-width: 480px) {
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.1rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.1rem;
  }
  h2 {
    font-size: 2.3rem;
  }
}

/* -------------------------------
   BUTTONS
---------------------------------*/
.btn-primary {
  background: linear-gradient(90deg, var(--clr-accent) 75%, #FA57BB 100%);
  color: #222222;
  font-family: 'Baloo 2', cursive;
  font-weight: bold;
  font-size: 1.17rem;
  padding: 12px 34px;
  border-radius: 32px;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 6px 24px 0 rgba(0, 108, 166, .09);
  display: inline-block;
  transition: background .2s, box-shadow .2s, transform .13s;
  margin-top: 6px;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #E24B8D 80%, var(--clr-accent) 100%);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 108, 166, 0.21);
  transform: translateY(-2px) scale(1.03);
}
/* Used for cookie banner too: */
.btn-secondary {
  background: var(--clr-primary);
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  margin: 0 8px 0 0;
  transition: background .19s, color .19s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--clr-pink);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--clr-primary);
  border: 2px solid var(--clr-primary);
  border-radius: 20px;
  padding: 9px 25px;
  font-weight: 600;
  cursor: pointer;
  transition: color .25s, border-color .2s, background .2s;
}
.btn-ghost:hover, .btn-ghost:focus {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
}

/* -------------------------------
   MAIN NAVIGATION (desktop)
---------------------------------*/
header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 3px 24px 0 rgba(0,46,122,0.06);
  min-height: 60px;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 22px;
  justify-content: flex-start;
  padding: 13px 0;
}
.main-nav > a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--clr-primary);
  font-weight: 600;
  padding: 4px 0;
  position: relative;
  font-size: 1rem;
  line-height: 1.2;
  transition: color .17s, border .18s;
}
.main-nav > a:hover:not(.btn-primary),
.main-nav > a:focus:not(.btn-primary) {
  color: var(--clr-pink);
  text-decoration: underline wavy 2px var(--clr-primary);
}
.main-nav > a.btn-primary {
  margin-left: auto;
  margin-right: 0;
}

.main-nav > a img {
  max-height: 42px;
  vertical-align: middle;
}

/* ----------------------------------
   MOBILE MENU/HAMBURGER
-----------------------------------*/
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--clr-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 2.1rem;
  position: absolute;
  top: 11px;
  right: 16px;
  cursor: pointer;
  transition: background 0.21s;
  z-index: 1001;
}
.mobile-menu-toggle:hover {
  background: var(--clr-pink);
}
@media(min-width: 900px){
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(239,226,255,0.96);
  box-shadow: 0 10px 40px 0 rgba(0,46,122,0.19);
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.76,-0.01,.22,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 24px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--clr-primary);
  border: none;
  font-size: 2.2rem;
  margin: 0 28px 14px 0;
  cursor: pointer;
  padding:0;
  font-weight: bold;
  transition: color 0.19s;
}
.mobile-menu-close:hover {
  color: var(--clr-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: flex-start;
  margin-top: 16px;
  padding-left: 36px;
}
.mobile-nav a {
  font-size: 1.14rem;
  font-family: 'Baloo 2', cursive;
  padding: 10px 6px 10px 0;
  color: var(--clr-primary);
  font-weight: 700;
  letter-spacing: .1px;
  border-radius: 8px;
  transition: background .14s, color .17s, font-size .14s;
  line-height: 1.28;
  margin: 2px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--clr-accent);
  color: var(--clr-pink);
}
@media (min-width: 900px) {
  .mobile-menu {
    display: none;
  }
  .main-nav {
    justify-content: flex-start;
  }
}
@media (max-width: 899px) {
  .main-nav > a:not(:first-child), .main-nav > a.btn-primary {
    display: none;
  }
}
@media (max-width: 899px) {
  .main-nav > a:first-child {
    margin-left:0;
    margin-right:auto;
  }
}

/* ---------------------------------
   FOOTER
-----------------------------------*/
footer {
  background: #fff;
  color: var(--clr-primary);
  font-size: 1rem;
  width: 100%;
  border-top: 4px solid var(--clr-accent);
  margin-top: 60px;
  padding: 0 0 12px 0;
}
footer .container {
  padding-top: 32px;
}
footer .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: var(--clr-primary);
  font-weight: 600;
  font-size: .97rem;
  padding: 1px 0;
  transition: color .17s;
}
.footer-links a:hover {
  color: var(--clr-pink);
  text-decoration: underline wavy 1.5px var(--clr-accent);
}
.contact-short {
  color: var(--clr-dark);
  font-size: .97rem;
  line-height: 1.6;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.social-links img {
  width: 32px;
  height: 32px;
  opacity: .98;
  transition: opacity .16s, transform .16s;
  cursor: pointer;
}
.social-links img:hover {
  opacity: 1;
  transform: scale(1.13) rotate(-8deg);
}
@media (max-width: 700px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ----------------------------------------------------
   HERO SECTION & GENERAL SECTIONS
-----------------------------------------------------*/
.hero {
  background: linear-gradient(120deg, var(--clr-blue-lite) 0%, #FFF1F6 90%);
  border-bottom: 4px solid var(--clr-accent);
  padding: 60px 0 42px 0;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  width: 100%;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  z-index: 1;
}
.hero h1 {
  color: var(--clr-pink);
  text-shadow: 0 8px 24px #E2BBFF88;
}
.hero p {
  font-size: 1.18rem;
  color: var(--clr-primary);
  margin-bottom: 6px;
}

@media (min-width: 900px) {
  .hero {
    padding: 98px 0 60px 0;
  }
  .hero .container {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 28px 0 rgba(226, 187, 255, 0.08);
  position: relative;
}

/* Utility section spacing (for legacy html) */
@media (max-width: 700px) {
  .section {
    padding: 32px 6px;
  }
}

/* --------------------------------------------------
   FLEXBOX LAYOUTS
 -------------------------------------------------*/
/* Card containers & grids */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px 0 rgba(0,108,166,0.08);
  margin-bottom: 20px;
  padding: 24px;
  position: relative;
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow .15s, transform .12s;
}
.card:hover {
  box-shadow: 0 9px 32px 0 rgba(0,108,166,0.15);
  transform: translateY(-3px) scale(1.025);
}

.content-grid,
.feature-grid,
.theme-examples,
.icon-grid,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-grid li,
.theme-examples li,
.service-list li {
  background: var(--clr-secondary);
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(226,187,255,.14);
  flex: 1 1 260px;
  min-width: 170px;
  max-width: 370px;
  margin-bottom: 20px;
  padding: 22px 18px 18px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 3px solid transparent;
  transition: border 0.19s, box-shadow 0.16s, transform .12s;
}
.feature-grid li:hover,
.theme-examples li:hover,
.service-list li:hover {
  border-color: var(--clr-accent);
  box-shadow: 0 10px 34px 0 rgba(0,108,166,.07);
  transform: scale(1.037);
}
.feature-grid img,
.theme-examples img,
.service-list img {
  width: 56px;
  height: 56px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 0 #fff) drop-shadow(0 6px 14px #E2BBFF66);
}
@media (max-width: 700px) {
  .content-grid, .feature-grid, .theme-examples, .icon-grid, .service-list {
    flex-direction: column;
    gap: 20px;
  }
}

.icon-grid {
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.icon-grid img {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0px 4px #F7E46066);
  opacity:.97;
}

/* FAQ list */
.faq-list {
  margin-top: 10px;
  margin-bottom: 10px;
  list-style: disc inside;
}
.faq-list li {
  margin-bottom: 18px;
  background: #fffde7;
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--clr-primary);
  font-weight: 600;
  border-left: 4px solid var(--clr-accent);
  box-shadow: 0 1px 5px rgba(246, 186, 245, .05);
}

/* Table */
.pricing-table {
  width: 100%;
  margin-bottom: 24px;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,108,166,.07);
  border-radius: 14px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 14px 12px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: var(--clr-primary);
  color: #fff;
  font-family: 'Baloo 2', cursive;
  letter-spacing: .02rem;
  font-size: 1.14rem;
}
.pricing-table tr:nth-child(even) td {
  background: #FFF9FE;
}
.pricing-table td {
  border-bottom: 1px solid #E2BBFF22;
}
.package-descriptions {
  background: #E2BBFF;
  border-radius: 18px;
  padding: 16px 24px;
  color: var(--clr-primary);
  font-family: 'Baloo 2', cursive;
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 15px;
  box-shadow: 0 1px 9px rgba(0, 108, 166, 0.04);
}

/* -------------
TEXT-IMAGE SECTIONS
---------------*/
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.text-section {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
}
@media (max-width: 768px){
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* -------------
 CTA Banner
---------------*/
.cta-banner {
  margin-bottom: 60px;
  border-radius: 24px;
  background: linear-gradient(94deg,var(--clr-accent) 80%, #E2BBFF 100%);
  box-shadow:0 5px 28px 0 rgba(247,228,96,.13);
}
.cta-banner .text-section {
  align-items: flex-start;
  gap: 10px;
}
.cta-banner h2 {
  color: var(--clr-primary);
}

/* -----------------------------------
    TESTIMONIALS
-----------------------------------*/
.testimonials-preview .content-wrapper,
section .testimonial-card + .testimonial-card {
  margin-top: 20px;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  box-shadow: 0 3px 17px 0 rgba(0, 108, 166, 0.08);
  margin-bottom: 20px;
  border-left: 5px solid var(--clr-primary);
  transition: background 0.14s, box-shadow 0.14s, transform 0.12s;
  min-width: 190px;
  max-width: 540px;
}
.testimonial-card:hover {
  background: #E2BBFF22;
  transform: scale(1.019);
  box-shadow: 0 16px 34px 0 rgba(226,187,255,0.10);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #222;
  font-weight: 500;
}
.testimonial-meta {
  color: var(--clr-pink);
  font-size: .97rem;
}
.stars {
  font-size: 1.25rem;
  color: var(--clr-accent);
  letter-spacing: 2px;
}

@media (max-width: 700px) {
  .testimonial-card { max-width: 100%; }
}

/* -----------------------------------
   FEATURE ITEMS
------------------------------------*/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ---------------------------------
   MAP EMBED + CONTACT DETAILS
----------------------------------*/
.contact-details {
  margin-bottom: 16px;
  background: #E2BBFF13;
  border-radius: 10px;
  padding: 14px 20px 14px 20px;
}
.contact-details p {
  margin-bottom: 7px;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}
.map-embed img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  box-shadow:0 2px 10px #E2BBFF33;
}
.map-embed p {
  color: var(--clr-primary);
  font-weight: 600;
  font-size: 1rem;
  margin:0;
}
@media (max-width: 600px){
  .map-embed {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ----------------------------------
    LEGAL SECTION
-----------------------------------*/
.legal {
  background: #E2BBFF18;
  border-radius: 24px;
  margin-bottom: 55px;
  padding: 40px 20px;
}

/* ----------------------------------
   THANK-YOU PAGE
-----------------------------------*/
.thank-you {
  margin-bottom:60px;
  background: linear-gradient(120deg, var(--clr-accent) 0%, #E2BBFF87 100%);
  border-radius: 21px;
  box-shadow: 0 2px 16px rgba(247,228,96,0.11);
  padding: 40px 20px 44px 20px;
}
.thank-you .btn-primary {
  margin-top: 26px;
}

/* ----------------------------------
      SPACING + WHITE SPACE
-----------------------------------*/
main > section {
  margin-bottom: 60px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .container {
    padding: 0 5vw;
  }
}

/* ----------------------------------
      RESPONSIVENESS
-----------------------------------*/
@media (max-width: 700px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.32rem; }
  .cta-banner { padding: 18px 6px; }
  .testimonials-preview .content-wrapper, .feature-grid { gap: 15px; }
}

/* Insure all cards have min spacing */
.card + .card,
.feature-grid li + li,
.theme-examples li + li,
.service-list li + li,
.testimonial-card + .testimonial-card {
  margin-top: 20px;
}

/* -------------------------------------
    COOKIE CONSENT BANNER
--------------------------------------*/
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-top: 4px solid var(--clr-accent);
  box-shadow: 0 -3px 40px #E2BBFF22;
  z-index: 2500;
  padding: 20px 16px 17px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: transform .31s cubic-bezier(.73, 0, .3, 1);
}
.cookie-consent__text {
  color: var(--clr-dark);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-buttons .btn-secondary,
.cookie-buttons .btn-ghost {
  min-width: 108px;
}

@media (max-width: 700px) {
  .cookie-consent {
    font-size: .99rem;
    padding: 12px 5vw 10px 5vw;
  }
  .cookie-buttons {
    flex-direction: column;
    gap: 6px;
  }
}
.cookie-consent.closed {
  transform: translateY(101%);
  pointer-events: none;
}

/* --- COOKIE MODAL / PREFERENCES ---*/
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,34,34,.2);
  backdrop-filter: blur(1.5px);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .19s;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 44px 0 rgba(0,108,166,0.14);
  padding: 34px 28px 24px 28px;
  max-width: 370px;
  width: 100%;
  color: #222;
  animation: modalIn .31s cubic-bezier(.82,0,.31,1);
  position: relative;
}
@keyframes modalIn {
  from { transform: scale(.88) translateY(30px); opacity: 0.15; }
  to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h3 {
  font-family: 'Baloo 2', cursive;
  color: var(--clr-primary);
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.cookie-modal .cookie-options {
  margin-bottom: 20px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-option label {
  font-size: 1.04rem;
  color: var(--clr-dark);
  font-weight: 600;
}
.cookie-option input[type="checkbox"]:not(:disabled) {
  accent-color: var(--clr-primary);
  width: 22px;
  height: 22px;
}
.cookie-option input[type="checkbox"][disabled] {
  accent-color: #8ec2ea;
  background: #F8F8FF;
  cursor: not-allowed;
}
.cookie-modal .btn-secondary {
  min-width: 92px;
  margin-right: 0;
}
.cookie-modal .btn-ghost {
  min-width: 86px;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--clr-primary);
  position: absolute;
  top: 13px;
  right: 17px;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal-close:hover {
  color: var(--clr-pink);
}

/* Hide cookie modal backdrop when not active */
.cookie-modal-backdrop.closed {
  display: none;
  opacity: 0;
  pointer-events: none;
}

/* -----------------------------------
    UTILITIES & MICROINTERACTIONS
------------------------------------*/
::-webkit-scrollbar {
  width: 10px;
  background: #faf9fb;
}
::-webkit-scrollbar-thumb {
  background: #E2BBFF;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F7E460;
}

[tabindex]:focus {
  outline: 2px solid var(--clr-accent);
  outline-offset: 2px;
}

/* Links underline on focus*/
a:focus {
  outline: 2px solid var(--clr-accent);
  outline-offset: 2px;
}
/* Card elevation on hover */
.card:active {
  transform: scale(.99) translateY(1px);
  box-shadow: 0 2px 7px rgba(0, 108, 166, 0.14);
}

/* Animated accent border for hovered buttons */
.btn-primary,
.btn-secondary,
.btn-ghost {
  position: relative;
  overflow: hidden;
}
.btn-primary::after,
.btn-secondary::after,
.btn-ghost::after {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  height: 3px;
  left: 50%;
  bottom: -2px;
  background: var(--clr-accent);
  border-radius: 3px;
  transition: width .22s, left .22s;
}
.btn-primary:hover::after,
.btn-secondary:hover::after,
.btn-ghost:hover::after {
  width: 80%;
  left: 10%;
}

/* Prevent overlapping for all flex containers */
.card-container, .content-grid, .feature-grid, .theme-examples, .icon-grid, .service-list {
  gap: 24px;
}

/* Responsive spacing between all cards/sections */
@media (max-width: 700px) {
  .card-container, .content-grid, .feature-grid, .theme-examples, .icon-grid, .service-list {
    gap: 18px;
  }
}

/* Prevent content overlap / margins always at least 20px */
.card, .testimonial-card, .feature-grid li, .theme-examples li, .service-list li, .cta-banner, .thank-you, .legal {
  margin-bottom: 20px;
}

/* Hide decorative absolute positioning for main content */
/* (No absolute pos for cards/content, only accent sprites allowed) */

/* ------------------
   PRINT CLEANUP
-------------------*/
@media print {
  header, footer, .mobile-menu, .cookie-consent, .cookie-modal-backdrop {
    display: none !important;
  }
  body, html {
    background: #fff !important;
    color: #111 !important;
  }
}
