/*------------------------------------*
  RESET & BASE SETUP
*------------------------------------*/
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;}
body { line-height: 1.6; background: #F4F6F8; color: #274061; }

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color .2s;
}

button, .btn-primary, input[type="submit"] {
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  transition: all .2s cubic-bezier(.45,.05,.55,.95);
}

/*------------------------------------*
  BRAND FONTS
*------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F4F6F8;
  color: #274061;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #274061;
}
h1 { font-size: 2.7rem; line-height: 1.1; margin-bottom: 16px; }
h2 { font-size: 2rem; line-height: 1.18; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; font-weight: 700; }
h4, h5, h6 { font-weight: 500; }
p, li, address {
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
}
p {
  max-width: 650px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/*------------------------------------*
  COLORS – creative, vibrant artistic vibe
*------------------------------------*/
:root {
  --brand-primary: #274061;
  --brand-secondary: #FEB802;
  --brand-accent: #F4F6F8;
  --brand-accent2: #FF8C42;
  --brand-accent3: #01C7B1;
  --brand-neutral: #ffffff;
  --shadow: rgba(60,70,120,0.11);
  --radius-xl: 32px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 7px;
}

/*------------------------------------*
  HEADER/NAVIGATION
*------------------------------------*/
header {
  background: var(--brand-primary);
  box-shadow: 0 6px 16px -8px var(--brand-primary);
  position: sticky;
  z-index: 200;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 54px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-left: 28px;
  align-items: center;
}
.main-nav a {
  color: var(--brand-accent);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}
.main-nav a::after {
  display: block;
  content: '';
  height: 2.5px;
  width: 0;
  background: var(--brand-secondary);
  border-radius: 2px;
  transition: width .23s;
}
.main-nav a:hover::after {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(92deg, var(--brand-secondary) 70%, var(--brand-accent2) 100%);
  color: var(--brand-primary);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.12rem;
  padding: 12px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: 0 2px 16px var(--shadow);
  margin-left: 24px;
  transition: transform .2s, box-shadow .2s, filter .2s;
  letter-spacing: 0.025em;
  border: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  color: #fff;
  background: var(--brand-primary);
  filter: brightness(1.15) saturate(1.25);
  box-shadow: 0 6px 28px -5px var(--brand-secondary);
  transform: translateY(-2px) scale(1.04) rotate(-1.2deg);
}

button.mobile-menu-toggle {
  display: none;
  z-index: 500;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border: none;
  font-size: 2rem;
  border-radius: var(--radius-lg);
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px var(--shadow);
  margin-left: 8px;
  transition: background .2s, color .2s, filter .2s;
}
button.mobile-menu-toggle:hover, button.mobile-menu-toggle:focus {
  background: var(--brand-accent2);
  color: #fff;
  filter: brightness(1.13);
}

/*--- Mobile Navigation ---*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--brand-primary);
  color: var(--brand-accent);
  z-index: 9999;
  transform: translateX(100vw);
  transition: transform .45s cubic-bezier(.88,-0.24,.18,1.08);
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  box-shadow: -8px 0 16px 0 rgba(0,0,0,0.08);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 0 24px 24px 0;
  font-size: 2.2rem;
  background: transparent;
  color: var(--brand-secondary);
  border-radius: var(--radius-md);
  transition: background .2s, color .2s;
  cursor: pointer;
  border: none;
  z-index: 10001;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-accent2);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}
.mobile-nav a {
  color: var(--brand-accent);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 10px 0 5px 0;
  border-radius: var(--radius-sm);
  transition: color .18s, background .15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--brand-secondary);
  background: rgba(255,255,255,0.08);
  font-style: italic;
}

/*------------------------------------*
  HERO SECTION & ARTISTIC LAYOUT
*------------------------------------*/
.hero {
  background: linear-gradient(85deg, var(--brand-secondary) 0%, var(--brand-accent3) 93%);
  color: var(--brand-primary);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 56px 0 48px 0;
  box-shadow: 0 6px 24px 0 var(--shadow);
  margin-bottom: 56px;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: var(--brand-primary);
  text-shadow: 0 2px 12px rgba(245,184,2,0.09);
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 700;
}
.hero p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.25rem;
  color: #223253;
  margin-bottom: 12px;
}
.hero .btn-primary {
  margin-left: 0;
  margin-top: 8px;
}

/*------------------------------------*
  SERVICE CARD / LISTS
*------------------------------------*/
.services-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.service-card {
  background: linear-gradient(100deg, #fff 80%, var(--brand-accent3) 100%);
  color: var(--brand-primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px var(--shadow);
  flex: 1 1 230px;
  min-width: 224px;
  max-width: 300px;
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: transform .21s, box-shadow .2s;
  border-left: 7px solid var(--brand-secondary);
  position: relative;
  overflow: visible;
}
.service-card:hover, .service-card:focus-within {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 36px -6px var(--brand-secondary);
  z-index: 10;
}
.service-card h3 {
  margin-bottom: 6px;
  color: var(--brand-accent2);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.service-card p {
  color: #3a4e62;
  font-size: 1rem;
  margin-bottom: 8px;
}
.service-card .price {
  margin-top: auto;
  font-family: 'Oswald', Arial, sans-serif;
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding: 5px 18px;
  font-size: 1.09rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 2px 10px var(--shadow);
}

/*------------------------------------*
  LISTS, TEXT, FEATURE ITEMS
*------------------------------------*/
ul, ol {
  margin: 0 0 12px 12px;
  font-size: 1rem;
}
ul li,
ol li {
  padding-left: 10px;
  margin-bottom: 8px;
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
ul li::before {
  content: '•';
  color: var(--brand-secondary);
  font-weight: 700;
  margin-right: 8px;
  font-size: 1.18rem;
  position: relative;
  top: 1px;
}
ol li::before {
  content: none;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 15px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 920px) {
  .services-list {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .services-list {
    flex-direction: column;
    gap: 16px;
  }
}

/*------------------------------------*
  TESTIMONIAL SECTION (GOOD CONTRAST)
*------------------------------------*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--brand-neutral);
  color: #222;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 18px var(--shadow);
  margin-bottom: 20px;
  padding: 20px 28px;
  position: relative;
  transition: box-shadow .18s, transform .15s;
  border-left: 6px solid var(--brand-accent2);
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px -5px var(--brand-secondary);
  transform: translateY(-2px) scale(1.025);
}
.testimonial-card blockquote {
  font-size: 1.12rem;
  font-family: 'Oswald', Arial, sans-serif;
  quotes: "“" "”" "‘" "’";
  position: relative;
  color: #223253;
  margin-bottom: 7px;
  font-style: italic;
}
.testimonial-meta {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #466;
  margin-left: 6px;
  font-weight: 500;
  opacity: 0.97;
}

/*------------------------------------*
  CTA SECTIONS
*------------------------------------*/
.cta {
  background: linear-gradient(80deg, var(--brand-accent3) 30%, var(--brand-secondary) 100%);
  padding: 48px 0;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -4px 22px -9px var(--brand-accent3);
  margin-bottom: 0;
}
.cta h2, .cta p {
  color: var(--brand-primary);
  text-shadow: 0 2px 13px rgba(245,184,2,0.07);
}
.cta h2 {
  font-size: 2.1rem;
}
.cta a.btn-primary {
  margin-top: 18px;
}

/*------------------------------------*
  FOOTER
*------------------------------------*/
footer {
  background: var(--brand-primary);
  color: var(--brand-accent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  padding: 32px 0 10px 0;
  margin-top: 48px;
  box-shadow: 0 -2px 22px -9px var(--brand-primary);
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.footer-nav a {
  color: var(--brand-secondary);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  transition: color .19s;
  padding: 2px 0;
  border-radius: var(--radius-sm);
}
.footer-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,0.09);
}
footer address {
  font-size: 1rem;
  color: #eaeaea;
  margin-top: 6px;
  font-style: normal;
  font-family: 'Roboto', Arial, sans-serif;
}
footer address a {
  color: var(--brand-secondary);
  text-decoration: underline;
}

/*------------------------------------*
  CARDS & GENERIC FLEX CONTAINERS
*------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px var(--shadow);
  padding: 24px;
  transition: box-shadow .17s, transform .18s;
}
.card:hover {
  transform: scale(1.03) rotate(-0.9deg);
  box-shadow: 0 8px 32px -5px var(--brand-accent3);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/*------------------------------------*
  GENERIC ELEMENT SPACING
*------------------------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*------------------------------------*
  RESPONSIVE DESIGN – MOBILE FIRST
*------------------------------------*/
@media (max-width: 1024px) {
  .container {
    padding: 0 6vw;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
    font-size: 1rem;
    margin-left: 10px;
  }
  .services-list {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 4vw;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  button.mobile-menu-toggle {
    display: flex;
    margin-left: 4px;
  }
  .hero {
    padding: 36px 0 28px 0;
    margin-bottom: 36px;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 38px;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.23rem;
  }
  .cta {
    padding: 32px 0;
  }
  .service-card {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 16px 10px 16px 13px;
  }
  .testimonial-card {
    padding: 16px 12px;
  }
  .footer-nav {
    gap: 9px;
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 4vw;
  }
  .footer-nav {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .section {
    padding: 8px 2vw;
    margin-bottom: 24px;
  }
}

/*------------------------------------*
  ANIMATIONS, MICRO-INTERACTIONS
*------------------------------------*/
.btn-primary,
button,
.service-card,
.card,
.testimonial-card, .mobile-menu, .footer-nav a, .main-nav a {
  transition: 
    color .22s cubic-bezier(.22,.68,.56,1.01),
    background .16s,
    box-shadow .17s,
    border .14s,
    filter .16s,
    transform .19s cubic-bezier(.34,1.36,.64,1),
    letter-spacing .18s;
}

.btn-primary:active,
button:active {
  filter: brightness(.91) grayscale(.11);
  transform: scale(0.99);
}

/*------------------------------------*
  FOCUS STYLES & ACCESSIBILITY
*------------------------------------*/
a:focus, button:focus, .btn-primary:focus {
  outline: 2px solid var(--brand-accent3);
  outline-offset: 3px;
  background: rgba(252,184,2,0.13);
}

/*------------------------------------*
  COOKIE CONSENT BANNER & MODAL
*------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 15000;
  background: var(--brand-primary);
  color: var(--brand-accent);
  width: 100vw;
  box-shadow: 0 -4px 22px -7px var(--brand-accent2);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 4vw 22px 4vw;
  gap: 16px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  font-size: 1rem;
  animation: banner-slide-in 0.82s cubic-bezier(.23,1.06,.58,1) 1;
}
@keyframes banner-slide-in {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 360px;
  margin: 0 20px 0 0;
  color: var(--brand-accent);
  font-size: 1rem;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  padding: 10px 22px;
  box-shadow: 0 2px 16px var(--shadow);
  margin: 0 0 0 0;
  transition: background .19s, color .16s, transform .13s;
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: .01em;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-accent3);
  color: #fff;
  transform: scale(1.045);
}
.cookie-btn.cookie-settings {
  background: #fff;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
  box-shadow: none;
  margin-left: 8px;
}
.cookie-btn.cookie-settings:hover {
  background: var(--brand-accent2);
  color: #fff;
  border-color: var(--brand-accent2);
}

/*----- COOKIE MODAL ----*/
.cookie-modal-overlay {
  position: fixed;
  z-index: 15001;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,43,61,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay .39s cubic-bezier(.33,.71,.55,1.22) 1;
}
@keyframes fadeInOverlay {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--brand-neutral);
  color: var(--brand-primary);
  border-radius: var(--radius-lg);
  max-width: 360px;
  width: 90vw;
  box-shadow: 0 8px 44px -8px var(--brand-secondary);
  padding: 30px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: scaleInCookie .27s cubic-bezier(.66,-0.01,.47,1.29) 1;
}
@keyframes scaleInCookie {
  0% { transform: scale(0.83) translateY(80px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.06rem;
  color: var(--brand-primary);
}
.cookie-switch {
  width: 38px;
  height: 22px;
  background: #eee;
  border-radius: 18px;
  position: relative;
  cursor: pointer;
  transition: background .18s;
  margin-right: 5px;
  flex-shrink: 0;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch .slider {
  position: absolute;
  top: 2.5px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: var(--brand-secondary);
  border-radius: 50%;
  transition: transform .18s;
}
.cookie-switch input:checked + .slider {
  transform: translateX(12px);
  background: var(--brand-accent3);
}
.cookie-modal-close {
  background: transparent;
  color: var(--brand-accent2);
  position: absolute;
  top: 8px;
  right: 12px;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal-close:hover {
  color: var(--brand-secondary);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    font-size: 0.99rem;
    padding: 16px 3vw;
  }
}

/*------------------------------------*
  EXTRAS FOR ARTISTIC/CREATIVE STYLE
*------------------------------------*/
h1, h2, h3 {
  letter-spacing: 0.03em;
  text-transform: none;
}
.services-list .service-card {
  border-image: linear-gradient(150deg, var(--brand-secondary) 60%, var(--brand-accent3) 100%) 1 100%;
}

hr {
  border: none;
  height: 3px;
  width: 66px;
  background: linear-gradient(90deg, var(--brand-accent2) 20%, var(--brand-secondary) 80%);
  border-radius: 3px;
  margin: 32px 0;
}

/* Decorative Doodle-Style Elements */
.service-card:before {
  content: '';
  position: absolute;
  left: -16px;
  top: 7px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-accent3);
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
  transition: opacity .17s;
}
.service-card:hover:before {
  opacity: 0.36;
}

.hero:after, .cta:after {
  content: '';
  position: absolute;
  right: 0; bottom: -18px;
  width: 130px;
  height: 30px;
  background: var(--brand-accent3);
  opacity: 0.18;
  border-radius: 16px 0 16px 0;
  z-index: 1;
  filter: blur(5px);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero:after, .cta:after {
    display: none;
  }
}

/*------------------------------------*
  UTILITIES & OVERRIDES
*------------------------------------*/
.hide {
  display: none !important;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/*------------------------------------*
  PRINT STYLES (BASIC)
*------------------------------------*/
@media print {
  header, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  .container, .section {
    padding: 0 !important;
  }
  body { background: #fff; color: #222; }
}
