/* RESET & BASE TYPOGRAPHY */
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F2F9FB;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F2F9FB;
  color: #222;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #006994;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF5FAB;
  outline: none;
}
ul, ol {
  margin-bottom: 1rem;
  padding-left: 2em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -1px;
  color: #006994;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 14px; line-height: 1.15; }
h3 { font-size: 1.32rem; margin-bottom: 10px; line-height: 1.2; }
h4, h5, h6 { margin-bottom: 8px; }
p { margin-bottom: 18px; }
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* SPACING & FLEX PATTERNS */
.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;
}

/* BASE FLEX LAYOUTS */
header .container, .footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.footer-main {
  gap: 32px;
}

/* HEADER & NAV */
header {
  background: #ffffff;
  box-shadow: 0 3px 20px -14px #004d66;
  position: sticky;
  z-index: 100;
  top: 0;
}
header .container {
  min-height: 74px;
  padding-top: 6px;
  padding-bottom: 6px;
}
header img {
  height: 56px;
  width: auto;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #006994;
  border-radius: 22px;
  padding: 8px 14px;
  transition: background-color 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFEB3B;
  color: #0d233a;
}
.button.primary {
  background: #006994;
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 28px;
  padding: 12px 28px;
  border: none;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 4px 32px -10px #00CFFF55;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.2s;
  outline: none;
}
.button.primary:hover, .button.primary:focus {
  background: #FF5FAB;
  color: #fff;
  box-shadow: 0 6px 44px -9px #FF5FAB80;
  transform: translateY(-2px) scale(1.04);
}
.button.secondary {
  background: #ffffff;
  color: #006994;
  border: 2px solid #006994;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  border-radius: 24px;
  padding: 11px 24px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, border 0.19s;
}
.button.secondary:hover, .button.secondary:focus {
  border-color: #FF5FAB;
  background: #F8F3FF;
  color: #FF5FAB;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #006994;
  background: #fff;
  border: none;
  outline: none;
  margin-left: auto;
  padding: 9px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 1200;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F4E5FC;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 0 68px 0 #FF5FAB20;
  z-index: 5010;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.86,.01,.71,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 100vw;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 19px 32px 0 0;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #FF5FAB;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 6020;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #006994;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 32px;
}
.mobile-nav a {
  font-size: 1.23rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #006994;
  padding: 12px 38px;
  border-radius: 24px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FF5FAB;
  color: #fff;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(105deg, #F2F9FB 60%, #FF5FAB 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 340px;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 680px;
}
.hero h1 {
  color: #006994;
  font-size: 2.8rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -1.1px;
}
.hero p {
  font-size: 1.32rem;
  color: #1D3557;
  margin-bottom: 10px;
}

/* FEATURES & CARDS */
.features {
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 6px 40px -20px #00699444;
}
.features .content-wrapper > h2 {
  color: #FF5FAB;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature {
  background: #F2F9FB;
  border-radius: 18px;
  box-shadow: 0 2px 16px -6px #00CFFF33;
  flex: 1 1 210px;
  min-width: 215px;
  max-width: 260px;
  padding: 24px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.21s, box-shadow 0.2s;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 5px;
}
.feature h3 {
  color: #1D3557;
}
.feature:hover, .feature:focus {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 42px -9px #FF5FAB70;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin: 18px 0 38px 0;
  list-style: none;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  font-size: 1.14rem;
  color: #006994;
}
.feature-list img {
  width: 32px;
}

/* SERVICE CARDS */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px -9px #00699444;
  flex: 1 1 230px;
  min-width: 225px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 14px 20px 16px;
  gap: 13px;
  transition: transform 0.18s, box-shadow 0.17s;
  position: relative;
}
.service-card img {
  width: 36px;
  height: 36px;
}
.service-card h3 {
  font-size: 1.17rem;
  margin-bottom: 0;
  color: #FF5FAB;
}
.service-card p {
  font-size: 1rem;
  color: #006994;
}
.service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10rem;
  color: #1D3557;
  font-weight: bold;
  margin-top: 4px;
}
.service-card:hover, .service-card:focus {
  transform: translateY(-4px) scale(1.035);
  box-shadow: 0 6px 36px -6px #00CFFF60;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 28px 0 32px 0;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-width: 220px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 16px -8px #00CFFF22;
  padding: 19px 15px;
}
.service-item img {
  min-width: 32px;
  width: 32px;
  height: 32px;
}
.service-item h2 {
  font-size: 1.12rem;
  margin-bottom: 4px;
  color: #FF5FAB;
}
.service-price {
  display: inline-block;
  margin-top: 3px;
}

/* FEATURE STEPS ON SERVICE PAGE */
.feature-steps {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.step {
  flex: 1 1 170px;
  background: #F2F9FB;
  border-radius: 14px;
  box-shadow: 0 2px 16px -9px #00699433;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 19px 9px 18px 9px;
  gap: 7px;
  transition: box-shadow 0.15s;
}
.step img {
  width: 36px;
}
.step h3 {
  color: #1D3557;
  font-size: 1.05rem;
}
.step:hover, .step:focus {
  box-shadow: 0 10px 32px -8px #FF5FAB44;
}

/* TESTIMONIALS */
.testimonials {
  background: #FF5FAB09;
  border-radius: 22px;
  box-shadow: 0 4px 30px -14px #FF5FAB48;
}
.testimonials .content-wrapper > h2 {
  color: #006994;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px -10px #00699455;
  flex: 1 1 320px;
  min-width: 258px;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  padding: 29px 26px;
  color: #1D3557;
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card p {
  color: #242F3E;
  font-size: 1.08rem;
}
.testimonial-info {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #006994;
}
.testimonial-card:hover, .testimonial-card:focus {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 36px -4px #FF5FAB70;
}

/* HIGHLIGHT CONTACT & SHORT CONTACT */
.highlight-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFEB3B33;
  border-radius: 14px;
  padding: 15px 24px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #006994;
  margin: 12px 0 14px 0;
}
.highlight-contact img {
  width: 31px;
}

.contact-short {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 3px 26px -10px #00699444;
  margin: 0 auto 46px auto;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #F2F9FB;
  border-radius: 11px;
  padding: 15px 19px 14px 19px;
  box-shadow: 0 2px 12px -9px #00CFFF22;
  color: #006994;
}
.faq-item h2, .faq-item h3 {
  color: #FF5FAB;
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 7px;
}
.faq-item p {
  color: #1D3557;
  margin-bottom: 0;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 21px 0 25px 0;
  font-size: 1.02rem;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 12px;
  border-bottom: 2px solid #F2F9FB;
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table th {
  background: #006994;
  color: #ffffff;
  border-radius: 7px 7px 0 0;
  font-size: 1.08rem;
}
.pricing-table tbody tr:hover {
  background: #FFEB3B33;
  transition: background 0.15s;
}
.included-features {
  margin-top: 19px;
  background: #F2F9FB;
  border-radius: 13px;
  padding: 18px 16px 10px 16px;
  box-shadow: 0 2px 12px -8px #FF5FAB33;
}
.included-features h2 {
  color: #006994;
  margin-bottom: 7px;
}
.included-features ul {
  margin-bottom: 8px;
  padding-left: 25px;
  color: #1D3557;
}

/* CONTACT / DETAILS */
.contact-details {
  margin: 17px 0 18px 0;
  padding: 18px 13px 12px 13px;
  background: #F2F9FB;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1rem;
  color: #006994;
}
.contact-details img {
  width: 21px;
  margin-right: 11px;
}
.contact-note {
  margin-top: 20px;
  background: #FFEB3B33;
  border-radius: 12px;
  padding: 14px 12px 8px 12px;
  color: #1D3557;
  font-size: 1rem;
}

/* GENERIC TEXT SECTIONS */
.text-section {
  font-size: 1.07rem;
  color: #1D3557;
  margin-bottom: 24px;
}
.team-highlight {
  background: #FFEB3B33;
  padding: 15px 18px 11px 18px;
  border-radius: 13px;
}
.team-highlight h2 {
  margin-bottom: 7px;
  color: #FF5FAB;
}

/* FOOTER */
footer {
  background: #1D3557;
  color: #fff;
  border-radius: 0;
  margin-top: 60px;
  padding: 38px 0 0 0;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 20px;
}
.footer-brand {
  flex: 1 1 220px;
  max-width: 250px;
}
.footer-brand img {
  width: 94px;
  margin-bottom: 12px;
}
.footer-brand p {
  margin-bottom: 0;
  color: #e7f1fa;
  font-size: 1rem;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a, .footer-legal a {
  color: #fff;
  font-size: 1rem;
  padding: 4px 0 4px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-legal a:hover, .footer-nav a:focus, .footer-legal a:focus {
  color: #FFEB3B;
}
.footer-contact {
  flex: 1 1 210px;
  max-width: 270px;
  color: #e7f1fa;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact a {
  color: #FFEB3B;
  font-weight: 700;
  transition: color 0.11s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #FF5FAB;
}
.footer-social img {
  width: 30px;
  margin-top: 15px;
}
.footer-bottom {
  margin-top: 16px;
  padding-bottom: 14px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #e7f1fa;
  font-size: 1rem;
}
.footer-bottom small {
  letter-spacing: 1.3px;
}

/* -- COOKIE CONSENT BANNER -- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9002;
  width: 100vw;
  background: #fff;
  color: #1D3557;
  box-shadow: 0 -6px 44px -10px #00699457;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 22px 23px 24px 23px;
  opacity: 1;
  transition: opacity 0.4s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #222;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner-buttons .button {
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 18px;
  font-weight: 700;
}
.cookie-banner-buttons .button.accept {
  background: #006994;
  color: #fff;
  border: none;
}
.cookie-banner-buttons .button.accept:hover, .cookie-banner-buttons .button.accept:focus {
  background: #FF5FAB;
}
.cookie-banner-buttons .button.reject {
  background: #FF5FAB;
  color: #fff;
  border: none;
}
.cookie-banner-buttons .button.reject:hover, .cookie-banner-buttons .button.reject:focus {
  background: #006994;
}
.cookie-banner-buttons .button.settings {
  background: #FFF;
  color: #006994;
  border: 2px solid #006994;
  outline: none;
}
.cookie-banner-buttons .button.settings:hover, .cookie-banner-buttons .button.settings:focus {
  border-color: #FF5FAB;
  color: #FF5FAB;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #004d66aa;
  z-index: 9996;
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeInBackdrop 0.3s;
}
.cookie-modal-backdrop.open {
  display: flex;
}
@keyframes fadeInBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 9px 48px -12px #00699477;
  min-width: 300px;
  padding: 27px 32px 24px 32px;
  min-height: 160px;
  max-width: 95vw;
  animation: popInModal 0.28s;
  z-index: 10001;
  display: flex;
  flex-direction: column;
}
@keyframes popInModal {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #FF5FAB;
  margin-bottom: 16px;
  font-size: 1.27rem;
}
.cookie-modal form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  color: #006994;
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.cookie-modal input[type="checkbox"]:not(:disabled) {
  accent-color: #FF5FAB;
}
.cookie-modal input[type="checkbox"]:disabled {
  accent-color: #006994;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 19px;
  top: 15px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #FF5FAB;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  color: #006994;
}

/* UTILITY */
.hide { display: none !important; }


/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1020px) {
  .service-cards, .feature-grid, .testimonial-slider, .feature-steps {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  header .container { flex-direction: row; gap: 16px; }
}

@media (max-width: 881px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-contact {
    max-width: 98vw;
  }
}

@media (max-width: 768px) {
  header .container {
    gap: 0;
  }
  .main-nav {
    display: none;
  }
  .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 9px;
    padding-right: 9px;
  }
  .service-cards, .feature-grid, .testimonial-slider, .feature-steps {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .hero, .hero .container {
    min-height: 210px;
    padding-top: 33px;
    padding-bottom: 33px;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 35px;
  }
  .features, .testimonials, .contact-short {
    padding: 12px 4px;
    border-radius: 13px;
  }
  .service-card, .feature, .testimonial-card, .step {
    max-width: 100%;
    min-width: 0;
    border-radius: 10px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-bottom: 8px;
  }
  .footer-brand img {
    width: 64px;
  }
}
@media (max-width: 540px) {
  .footer-contact {
    font-size: 0.98rem;
    gap: 5px;
  }
  .footer-brand img {
    width: 51px;
  }
}
@media (max-width: 470px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 11px;
    padding: 15px 7px 16px 7px;
  }
  .cookie-modal {
    padding: 13px 9px 8px 9px;
    min-width: 0;
  }
}

/* --- VIBRANT, ENERGETIC COLOR SPLASHES AND DETAILS --- */
::selection {
  background: #FF5FAB66;
  color: #fff;
}

body {
  border-top: 8px solid #FF5FAB;
}

.section, .features, .testimonials, .contact-short, .hero, .team-highlight {
  position: relative;
  overflow: visible;
}
.section::after, .features::after, .testimonials::before, .contact-short::after {
  content: '';
  position: absolute;
  z-index: 1;
  background: #FFEB3B55;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(16px);
}
.features::after {
  width: 65px; height: 65px;
  bottom: -22px; right: -20px;
}
.testimonials::before {
  width: 90px; height: 60px;
  top: -25px; left: -15px;
  opacity: 0.75;
}
.contact-short::after {
  width: 45px; height: 45px;
  top: -11px; right: -17px;
  opacity: 0.60;
}
.hero::before {
  content: '';
  position: absolute;
  top: -35px; right: -50px;
  width: 140px; height: 80px;
  z-index: 1;
  border-radius: 58px 118px 87px 155px;
  background: #FF5FAB40;
  filter: blur(7px);
}
@media (max-width: 768px) {
  .section::after, .features::after, .testimonials::before, .contact-short::after, .hero::before { display: none; }
}

/* --- END --- */
