/* Twilight Spark Leaf - creative_artistic style.css
   Responsive, vibrant, artistic flexbox-only CSS for ALL site pages & components
   ===============================================
   Brand colors: #1A2930 (primary), #4A917D (secondary), #F4F7FB (accent) + artistic vibrant accents
   Fonts: Montserrat (display), Roboto (body)
   All layouts: display: flex (no grid/columns)
   ===============================================*/

/* CSS RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #F4F7FB;
  color: #1A2930;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #4A917D;
  text-decoration: none;
  transition: color .18s;
}
a:hover, a:focus {
  color: #F48F39;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}
hr {
  border: none;
  border-top: 1px solid #e1e5ea;
  margin: 24px 0;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1A2930;
  font-weight: 700;
  letter-spacing: -1px;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.13;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}
.section h2 {
  font-size: 2rem;
}
p, li, address, .testimonial-meta, .price {
  font-size: 1rem;
  color: #293D49;
}
/* Artistic subheadline */
.subheadline {
  font-size: 1.15rem;
  color: #4A917D;
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.5;
}


/* --- CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}


/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(26,41,48,0.09);
  z-index: 70;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 18px;
}
.logo img {
  height: 40px;
  width: auto;
  filter: drop-shadow(2px 0 4px #4A917D40);
  transition: filter .22s;
}
.logo:hover img {
  filter: drop-shadow(0 3px 10px #F48F3977);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.03rem;
  color: #4A917D;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
  position: relative;
  transition: color .18s, border-bottom .18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F48F39;
  border-bottom: 2px solid #F48F39;
}

/* --- CTA BUTTONS --- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 26px;
  padding: 10px 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 10px 0 rgba(74,145,125,0.14);
  letter-spacing: .5px;
  transition: background .16s, color .19s, box-shadow .17s;
  margin-left: 10px;
  cursor: pointer;
}
.cta.primary {
  background: #4A917D;
  color: #fff;
  border: 2px solid #4A917D;
}
.cta.primary:hover, .cta.primary:focus {
  background: #F48F39;
  border-color: #F48F39;
  color: #fff;
  box-shadow: 0 6px 20px 0 #F48F3940;
}
.cta.secondary {
  background: #fff;
  color: #4A917D;
  border: 2px solid #4A917D;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #F4F7FB;
  border-color: #F48F39;
  color: #F48F39;
}


/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #4A917D;
  font-size: 2.1rem;
  border-radius: 7px;
  outline: none;
  border: 2px solid #4A917D;
  padding: 2px 12px 2px 12px;
  margin-left: 22px;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F4F7FB;
  color: #F48F39;
  border-color: #F48F39;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,41,48,0.95);
  z-index: 222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(0.57,0.14,0.47,1.28);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #fff;
  background: transparent;
  align-self: flex-end;
  margin: 22px 28px 10px 0;
  border-radius: 6px;
  padding: 2px 10px;
  transition: background .16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #4A917D;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 8px 0;
  border-radius: 9px;
  transition: background .15s, color .16s;
  min-width: 220px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F48F39;
  color: #fff;
}

/* Responsive: hide main-nav on mobile, show burger */
@media (max-width: 1140px) {
  .main-nav { gap: 12px; }
}
@media (max-width: 980px) {
  header .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 860px) {
  .main-nav, .cta.primary { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(105deg,#F48F3933 30%,#4A917D18 100%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 4px 20px 6px #1A293009;
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
}
.hero .container {
  min-height: 380px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 680px;
  margin: 0 auto;
  gap: 12px;
}
.hero .cta.primary {
  margin-top: 26px;
  min-width: 220px;
}


/* --- FEATURES --- */
.features, .about, .team, .steps, .privacy-policy, .gdpr-info, .cookies-policy, .terms, .faq, .services-list, .services, .contact, .map-neutral, .cta-section, .testimonial-card, .testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper, .about .content-wrapper, .team .content-wrapper, .steps .content-wrapper, .privacy-policy .content-wrapper, .gdpr-info .content-wrapper, .cookies-policy .content-wrapper, .terms .content-wrapper, .faq .content-wrapper, .services-list .content-wrapper, .services .content-wrapper {
  gap: 22px;
}
.features ul, .about ul, .team ul, .steps ol, .services-list ul, .services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 34px;
  margin-top: 14px;
  margin-bottom: 0;
}
.features ul li, .about ul li, .team ul li, .services-list ul li, .services ul li, .steps ol li {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px 0 #4A917D13;
  padding: 18px 24px 18px 20px;
  font-size: 1.07rem;
  flex: 1 1 270px;
  min-width: 220px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: box-shadow .18s, background .18s;
  border: 1.8px solid transparent;
}
.features ul li:hover, .services-list ul li:hover, .services ul li:hover, .about ul li:hover {
  box-shadow: 0 6px 22px -4px #F48F394a;
  border-color: #F48F39;
  background: #F4F7FB;
}
.features ul li img, .about ul li img, .team ul li img, .steps ol li img {
  width: 38px;
  height: 38px;
  margin-right: 8px;
  display: block;
  filter: drop-shadow(0 1px 4px #F48F399e);
}


/* --- SERVICES (inside index, katalog, sluzby) --- */
.services-list ul li, .services ul li {
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.services-list ul li strong, .services ul li strong {
  font-weight: bold;
  font-size: 1.09rem;
  margin-bottom: 2px;
}
.price {
  display: inline-block;
  background: #F48F39;
  color: #fff;
  font-size: .94rem;
  border-radius: 9px;
  padding: 2.5px 10px 3.5px 10px;
  margin-left: 7px;
  margin-bottom: 3px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.4px;
  box-shadow: 0 1px 8px 0 #F48F3955;
}
.services-list ul li a, .services ul li a {
  margin-top: 10px;
}


/* --- FAQ ACCORDION --- */
.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 #4A917D17;
  padding: 22px 24px 14px 20px;
  cursor: pointer;
  border-left: 4px solid #4A917D;
  transition: box-shadow .19s, border-color .15s;
}
.faq-item:hover, .faq-item.active {
  box-shadow: 0 6px 18px -3px #F48F395e;
  border-color: #F48F39;
}
.faq-item h3 {
  margin-bottom: 9px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.faq-answer {
  font-size: 1.01rem;
  color: #293D49;
  transition: max-height .32s;
}


/* --- TESTIMONIALS --- */
.testimonials {
  background: #fff;
  border-radius: 37px;
  box-shadow: 0 2px 20px 0 #1A293011;
  margin-bottom: 60px;
  padding: 40px 20px 60px 20px;
  position: relative;
}
.testimonials .content-wrapper {
  width: 100%;
  gap: 20px;
  margin-top: 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F6FCF8;
  border-radius: 22px;
  box-shadow: 0 3px 20px 0 #4A917D1f;
  margin-bottom: 20px;
  border-left: 5px solid #4A917D;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 0;
  color: #1A2930;
}
.testimonial-card:nth-child(even) {
  border-left-color: #F48F39;
  background: #FAF7F2;
}
.testimonial-card p {
  font-size: 1.07rem;
  font-style: italic;
  color: #1A2930;
  margin-bottom: 5px;
}
.testimonial-meta {
  color: #293D49;
  font-size: 0.98rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}


/* --- FORM ELEMENTS, SEARCH BARS, FILTERS --- */
.search-bar, .filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 30px 0 0 0;
  width: 100%;
}
.search-bar input[type="text"] {
  flex: 2 1 220px;
  border: 1.6px solid #4A917D;
  border-radius: 16px;
  font-size: 1.08rem;
  padding: 10px 16px;
  outline: none;
  background: #fff;
  margin-right: 0px;
  box-shadow: 0 1px 4px #4A917D13;
  transition: border-color .17s, box-shadow .16s;
}
.search-bar input[type="text"]:focus {
  border-color: #F48F39;
  box-shadow: 0 2px 12px #F48F3960;
}
.search-bar button {
  background: #F48F39;
  color: #fff;
  border-radius: 17px;
  padding: 11px 36px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  margin-left: 8px;
  transition: background .16s, box-shadow .16s;
  box-shadow: 0 2px 8px 0 #F48F3917;
}
.search-bar button:hover, .search-bar button:focus {
  background: #4A917D;
  color: #fff;
}
.filters label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.filters select {
  border: 1.4px solid #4A917D;
  border-radius: 12px;
  padding: 7px 20px 7px 11px;
  font-size: 1rem;
  margin-right: 3px;
  background: #fff;
  color: #1A2930;
  font-family: 'Roboto', Arial, sans-serif;
  min-width: 110px;
}
.filters select:focus {
  border-color: #F48F39;
  outline: none;
}


/* --- FOOTER --- */
footer {
  width: 100%;
  background: #1A2930;
  color: #fff;
  border-radius: 42px 42px 0 0;
  margin-top: 70px;
  box-shadow: 0 -2px 32px #1A293033;
  padding: 40px 16px 0 16px;
}
footer .container {
  padding: 0;
  max-width: 1220px;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-column {
  flex: 1 1 180px;
  min-width: 180px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-column img {
  height: 40px;
  margin-bottom: 9px;
}
.footer-column h4 {
  color: #F4F7FB;
  font-size: 1.08rem;
  letter-spacing: .2px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-column ul li a {
  color: #7FFFC9;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color .16s;
}
.footer-column ul li a:hover, .footer-column ul li a:focus {
  color: #F48F39;
  text-decoration: underline;
}
.footer-column address {
  font-style: normal;
  color: #d6eadd;
  font-size: 0.98rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1.6px solid #193434;
  padding: 16px 0 22px 0;
  font-size: 0.95rem;
  color: #c7f0e4;
}
.social-links {
  display: flex;
  gap: 13px;
}
.social-links a img {
  height: 27px;
  width: 27px;
  filter: brightness(0) invert(1) drop-shadow(0 1px 10px #4A917D50);
  opacity: 0.92;
  transition: filter .15s, opacity .12s;
}
.social-links a:hover img,
.social-links a:focus img {
  opacity: 1;
  filter: brightness(1) sepia(1) hue-rotate(-18deg) saturate(7) drop-shadow(0 2px 12px #F48F39A7);
}


/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #293D49;
  color: #fff;
  padding: 24px 18px 22px 18px;
  box-shadow: 0 -2px 24px #1A293066;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  transition: transform .35s, opacity .32s;
  font-size: 1.07rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  font-size: 1rem;
  color: #fff;
  margin-right: 18px;
  max-width: 420px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  flex-direction: row;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  padding: 7px 20px;
  margin-right: 0px;
  border: 0;
  transition: background .14s, color .15s;
  background: #F48F39;
  color: #fff;
  outline: none;
}
.cookie-banner button.cookie-reject {
  background: #f57c77;
  color: #fff;
}
.cookie-banner button.cookie-settings {
  background: #4A917D;
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  filter: brightness(1.1) contrast(1.1) drop-shadow(0 2px 8px #F4F7FB55);
}

/* Cookie MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1001;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,41,48,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transition: opacity .38s;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  padding: 38px 28px 24px 28px;
  max-width: 410px;
  min-width: 295px;
  box-shadow: 0 4px 44px #4A917D22;
  color: #1A2930;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
  z-index: 1200;
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  font-weight: 500;
}
.cookie-modal .toggle {
  width: 44px;
  height: 24px;
  border-radius: 14px;
  background: #EAECEF;
  position: relative;
  transition: background .16s;
}
.cookie-modal .toggle[data-active="true"] {
  background: #4A917D;
}
.cookie-modal .toggle-switch {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left .19s;
}
.cookie-modal .toggle[data-active="true"] .toggle-switch {
  left: 22px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 13px;
  flex-direction: row;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 20px;
  padding: 7px 20px;
  border: 0;
  background: #F48F39;
  color: #fff;
  transition: background .13s, color .13s;
}
.cookie-modal button.cookie-cancel {
  background: #c2c2c2;
  color: #1A2930;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  filter: brightness(1.1) contrast(1.1);
}

/* --- MAP NEUTRAL --- */
.map-neutral {
  background: #fff;
  border: 1.5px solid #d6eadd;
  border-radius: 17px;
  box-shadow: 0 1px 7px #4A917D19;
  padding: 22px;
  margin-top: 24px;
  color: #4A917D;
  font-size: 1.08rem;
}


/* --- SPECIAL ARTISTIC/UNIQUE EFFECTS --- */
/* Artistic colored underline */
h1, h2, h3 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: #F48F39;
  margin-top: 8px;
}
.content-wrapper h2::after {
  background: linear-gradient(90deg, #4A917D 0, #F48F39 100%);
  width: 48px;
}
h3::after {
  background: #4A917D60;
  width: 30px;
  height: 2.5px;
  margin-top: 6px;
}

/* --- MEDIA QUERIES: RESPONSIVENESS --- */
@media (max-width: 920px) {
  .footer-columns { flex-direction: column; gap: 12px; }
  .footer-bottom { flex-direction: column; gap: 11px; align-items: flex-start; }
}
@media (max-width: 700px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.35rem; }
  .hero .container { min-height: 240px; }
  .hero { padding: 28px 4px 30px 4px; border-radius: 0 0 24px 24px; }
  .features, .about, .steps, .privacy-policy, .gdpr-info, .cookies-policy, .terms, .faq, .services-list, .services, .contact, .testimonials { padding: 20px 8px; border-radius: 12px; }
  .testimonial-card, .features ul li, .services-list ul li, .services ul li { padding: 14px 12px 12px 12px; border-radius: 13px; min-width: 100px; }
  .features ul, .about ul, .services-list ul, .services ul, .steps ol { gap: 14px 8px; }
  .footer-column { margin-bottom: 4px; }
}
@media (max-width: 600px) {
  .container { padding: 0 5px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 9px; }
  .features ul li, .services-list ul li, .services ul li { flex: 1 1 160px; }
}

/* --- FLEX LAYOUT ENFORCEMENT: patterns --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 1px 10px #4A917D14;
  padding: 18px 16px;
  background: #fff;
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- CTA SECTIONS --- */
.cta-section {
  margin-top: 42px;
  padding: 28px 20px 20px 20px;
  border-radius: 12px;
  background: #F4F7FB;
  box-shadow: 0 2px 10px #4A917D11;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

/* --- ARTISTIC/CREATIVE HOVER EFFECTS --- */
a, button, .cta, .footer-column ul li a {
  transition: color .17s, background .13s, box-shadow .17s, border .19s;
}
.card, .testimonial-card, .features ul li, .services-list ul li, .services ul li {
  transition: box-shadow .14s, border-color .13s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 30px -7px #F48F3942;
}

/* --- HIDE ELEMENTS ACCESSIBLY --- */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* --- ARTISTIC ACCENTS (OPTIONAL) --- */
/* Subtle vibrant artistic background doodle (decorative only) */
body::before {
  content: "";
  position: fixed;
  left: -18vw;
  top: 12vh;
  width: 70vw;
  height: 62vw;
  background: radial-gradient(ellipse 38vw 28vw at 35vw 13vw,#7FFFC960 0,#4A917D0D 90%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
}
body::after {
  content: "";
  position: fixed;
  right: -15vw;
  bottom: -6vw;
  width: 60vw;
  height: 32vw;
  background: radial-gradient(ellipse 35vw 12vw at 20vw 15vw, #F48F3930 0, #F4F7FB00 90%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.24;
}

/* --- PAGE LEVEL: THANK YOU PAGE --- */
.hero .cta.primary {
  margin-top: 20px;
}

/* --- PRINT --- */
@media print {
  header, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff !important; }
  main { padding: 0 !important; }
}
