/* ===========================================================
   CSS RESET & NORMALIZATION
   =========================================================== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #FAFBFC;
  color: #253746;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s, background 0.3s;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}
button {
  cursor: pointer;
  user-select: none;
}

/* =====================
   FONT IMPORT
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --brand-primary: #253746;
  --brand-secondary: #9DB6C7;
  --brand-accent: #F6E6C5;
  --brand-bright: #FFE162;
  --brand-success: #71D99E;
  --brand-danger: #FF6B6B;
  --brand-info: #7FC8F8;
  --brand-warning: #FFD166;
  --neutral-bg: #FAFBFC;
  --wh: #fff;
  --dark: #23272f;
}

/* =====================
   LAYOUT – FLEXBOX ONLY
   ===================== */
.container {
  width: 100%;
  max-width: 1170px;
  padding: 0 18px;
  margin: 0 auto;
  box-sizing: border-box;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo-link img {
  height: 47px;
}

/* Main content area & section spacing */
main {
  width: 100%;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.content-wrapper.center {
  align-items: center;
  text-align: center;
}

/* Card and grid containers */
.card-container,
.card-grid,
.feature-grid,
.article-list,
.case-study-list,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.card,
.feature,
.case-study,
.service-item,
.testimonial-card,
article {
  background: var(--wh);
  border-radius: 20px;
  box-shadow: 0 3px 12px 0 rgba(168,208,230,0.15);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.3s, transform 0.4s cubic-bezier(.5,-0.13,.74,2);
}
.card:hover,
.feature:hover,
.case-study:hover,
.service-item:hover,
.testimonial-card:hover,
article:hover {
  box-shadow: 0 6px 26px 0 rgba(127,200,248,0.15), 0 0 0 4px var(--brand-accent);
  transform: translateY(-8px) scale(1.025) rotate(-1deg);
  z-index: 2;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.feature {
  flex: 1 1 210px;
  min-width: 220px;
  align-items: flex-start;
  background-color: var(--brand-accent);
  box-shadow: 0 2px 8px 0 #FFE16233;
  border: 2.5px dashed var(--brand-secondary);
  transition: border-color 0.3s;
}
.feature:hover {
  border-color: var(--brand-primary);
}
.feature img {
  width: 45px;
  margin-bottom: 12px;
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: center;
}
.testimonial-card {
  min-width: 260px;
  max-width: 430px;
  background: var(--wh);
  border-radius: 18px;
  border: 2.5px solid var(--brand-secondary);
  box-shadow: 0 4px 18px 0 rgba(157,182,199,0.09);
  color: #23272f;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  transition: border-color 0.2s, box-shadow 0.3s;
}
.testimonial-card:hover {
  border-color: var(--brand-bright);
  box-shadow: 0 8px 38px 0 rgba(113,217,158,0.08);
}
.testimonial-card p {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.case-study-list {
  gap: 24px;
}
.case-study {
  flex: 1 1 220px;
  min-width: 220px;
  border-left: 7px solid var(--brand-info);
  background: var(--wh);
}

/* FAQ & Text-image sections */
.faq-list, .service-highlights, .process-steps, .article-categories ul, .tip-snippets, .document-download-list, .guides-previews ul, .important-links ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 14px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-accent);
  padding: 12px 23px;
  border-radius: 16px;
  margin-top: 8px;
}

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--wh);
  margin-bottom: 28px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px 0 rgba(127,200,248,0.08);
}
.pricing-table th, .pricing-table td {
  padding: 15px 18px;
  text-align: left;
}
.pricing-table thead {
  background: var(--brand-accent);
}
.pricing-table th {
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #F3F7FA;
}
.pricing-table tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  font-size: 17px;
}

/* Feature item */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===========================================================
   TYPOGRAPHY
   =========================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 32px;
  color: var(--brand-primary);
}
h2 {
  font-size: 26px;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
h3 {
  font-size: 21px;
  color: var(--brand-info);
}
h4 {
  font-size: 18px;
}
p, li, td, th {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--dark);
  font-size: 16px;
}
strong {
  font-weight: bold;
  color: var(--brand-primary);
}

/* Fun, energetic headings */
h1, h2 {
  position: relative;
  background: linear-gradient(90deg, #71D99E 10%, #7FC8F8 50%, #FFD166 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: wiggle-h1 1.5s cubic-bezier(0.4,2,1,1) infinite alternate;
}
@keyframes wiggle-h1 {
  0%   { transform: rotate(-1.5deg); }
  100% { transform: rotate(1.5deg); }
}
h1 {
  font-size: 32px;
  margin-bottom: 12px;
}
h2 {
  font-size: 26px;
}
/* Fun underline for active cta sections */
h2::after {
  content: '';
  display: block;
  margin: 7px auto 0;
  width: 64px;
  height: 6px;
  background: var(--brand-bright);
  border-radius: 5px;
  transition: width 0.3s;
}

.center h1, .center h2 {
  margin-left: auto;
  margin-right: auto;
}

.article-list article h2, .case-study h3, .faq-list h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: var(--brand-info);
  margin-bottom: 2px;
}

/* Lists & Bullets */
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 0.9em;
}
ul li::before {
  content: '';
  margin-right: 10px;
  background: var(--brand-info);
  border-radius: 50%;
  display: inline-block;
  width: 8px;
  height: 8px;
  position: relative;
  top: 1.2px;
}
ul li {
  margin-bottom: 6px;
  padding-left: 0;
}
ul.service-highlights {
  gap: 21px;
}
ul.service-highlights li img {
  vertical-align: middle;
  margin-right: 10px;
  width: 28px;
}
ul.service-highlights li strong {
  font-size: 17px;
  color: var(--brand-primary);
}

/* ===========================================================
   BUTTONS & CTAS
   =========================================================== */
.cta-btn,
.cta-btn.primary {
  background: var(--brand-info);
  color: var(--brand-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 28px;
  padding: 13px 34px;
  box-shadow: 0 2px 14px 0 #7FC8F844, 0 0 0 #fff;
  letter-spacing: 0.06em;
  margin: 6px 0;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
  cursor: pointer;
  outline: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.cta-btn.primary,
.cta-btn:hover,
.cta-btn:focus {
  background: var(--brand-bright);
  color: var(--brand-primary);
  box-shadow: 0 6px 32px 0 #FFD16644, 0 0 0 2.5px var(--brand-info);
}
.cta-link {
  color: var(--brand-info);
  font-weight: 600;
  letter-spacing: .04em;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  border-bottom: 2px dashed var(--brand-info);
  border-radius: 1.5px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  padding-bottom: 3px;
}
.cta-link:hover {
  color: var(--brand-bright);
  background: var(--brand-info);
  border-color: var(--brand-bright);
}
/* Price tag badge */
.service-price {
  background: var(--brand-warning);
  color: #23272f;
  font-size: 15px;
  font-weight: 700;
  border-radius: 14px;
  padding: 5px 14px;
  margin: 7px 0;
  display: inline-block;
  box-shadow: 0 2px 8px 0 rgba(255,209,102,0.09);
  letter-spacing: .04em;
}

/* ===========================================================
   HEADER & NAVIGATION (DESKTOP)
   =========================================================== */
header {
  background: var(--wh);
  border-bottom: 3.5px solid var(--brand-accent);
  z-index: 10;
  position: sticky;
  top: 0;
}
.main-nav {
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--brand-primary);
  padding: 9px 12px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background-color: var(--brand-accent);
  color: var(--brand-info);
}
/* Indicate current - JS can add .active or :visited */
.main-nav a.active, .main-nav a[aria-current="page"] {
  color: var(--brand-info);
  background: var(--brand-accent);
  font-weight: 900;
}

/* CTA BUTTON IN HEADER */
.header-flex .cta-btn {
  margin-left: 10px;
  font-size: 17px;
  padding: 11px 26px;
  border: 2.5px solid var(--brand-info);
  background: var(--brand-bright);
  color: var(--brand-primary);
  box-shadow: 0 2px 8px 0 #FFD16633;
  letter-spacing: 0.06em;
}
.header-flex .cta-btn:hover,
.header-flex .cta-btn:focus {
  background: var(--brand-info);
  color: var(--wh);
  border-color: var(--brand-bright);
}

/* ===========================================================
   MOBILE BURGER MENU & NAVIGATION
   =========================================================== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-info);
  color: var(--brand-primary);
  border-radius: 50%;
  border: none;
  width: 44px;
  height: 44px;
  font-size: 27px;
  position: relative;
  z-index: 999;
  margin-left: 12px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover {
  background: var(--brand-bright);
}
.main-nav {
  flex: 1;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--wh);
  z-index: 9999;
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(.8,0,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 35px 26px 26px 23px;
  box-shadow: 0 8px 60px 0 rgba(157,182,199,0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 19px;
  background: var(--brand-danger);
  color: var(--wh);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 10000;
}
.mobile-menu-close:hover {
  background: var(--brand-info);
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 60px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 14px 3px 13px 9px;
  border-bottom: 2.5px solid #FFF9C1;
  width: 100%;
  border-radius: 10px;
  background: transparent;
  transition: background 0.19s, color 0.18s;
  color: var(--brand-primary);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--brand-info);
}

@media (max-width: 990px) {
  .header-flex {
    flex-wrap: wrap;
  }
  .main-nav {
    display: none;
  }
  .header-flex .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 991px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
  .header-flex .cta-btn {
    display: inline-block !important;
  }
}

/* ===========================================================
   FOOTER
   =========================================================== */
footer {
  background: var(--brand-primary);
  color: var(--brand-accent);
  font-size: 15px;
  padding-top: 40px;
  margin-top: 70px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-nav a {
  color: var(--brand-accent);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  border-radius: 9px;
  padding: 3px 10px;
  transition: background 0.2s, color 0.15s;
}
.footer-nav a:hover {
  background: var(--brand-info);
  color: var(--brand-primary);
}
.footer-contact {
  color: var(--brand-accent);
  font-size: 15px;
}
.copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0 26px 0;
  font-size: 14px;
  color: #c2e2f7;
}

/* ===========================================================
   COOKIE BANNER & PREFERENCES MODAL
   =========================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-top: 3px solid var(--brand-info);
  padding: 24px 30px 18px 30px;
  box-shadow: 0 -4px 60px 0 rgba(127,200,248,0.15);
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
  z-index: 11111;
  animation: banner-slide-up 0.7s cubic-bezier(.7,-0.2,.59,1.25);
}
@keyframes banner-slide-up {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.btn-cookie {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  border-radius: 22px;
  padding: 10px 22px;
  font-weight: 700;
  border: none;
  background: var(--brand-info);
  color: var(--wh);
  box-shadow: 0 2px 8px 0 #7FC8F833;
  transition: background 0.18s, color 0.15s;
}
.btn-cookie.accept {
  background: var(--brand-success);
  color: var(--dark);
}
.btn-cookie.reject {
  background: var(--brand-danger);
  color: var(--wh);
}
.btn-cookie.settings {
  background: var(--brand-warning);
  color: var(--dark);
}
.btn-cookie:hover, .btn-cookie:focus {
  filter: brightness(1.13);
  transform: scale(1.05) rotate(-2.5deg);
}

/* Preferences modal */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; height: 100vh; width: 100vw;
  z-index: 11112;
  background: rgba(38,55,70,0.39);
  align-items: center;
  justify-content: center;
  animation: cookie-blur-in 0.3s;
}
@keyframes cookie-blur-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: var(--wh);
  border-radius: 16px;
  box-shadow: 0 8px 36px 4px #7FC8F822;
  padding: 34px 32px 24px 32px;
  min-width: 300px;
  max-width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cookie-modal-content h2 {
  font-size: 22px;
  color: var(--brand-primary);
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category label {
  font-weight: 700;
  font-size: 17px;
  color: var(--brand-primary);
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--brand-secondary);
  border-radius: 18px;
  transition: background 0.2s;
}
.toggle-switch input:checked + .slider {
  background: var(--brand-success);
}
.slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: var(--wh);
  border-radius: 50%;
  box-shadow: 0 0 4px #ddd;
  transition: transform 0.2s;
}
.toggle-switch input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 12px;
}
.btn-cookie.save {
  background: var(--brand-success);
  color: var(--dark);
}


/* ===========================================================
   ANIMATIONS & MICROINTERACTIONS
   =========================================================== */
.card, .feature, .case-study, .service-item, .testimonial-card, article {
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.25s;
}
.card:hover, .feature:hover, .case-study:hover, .service-item:hover, .testimonial-card:hover, article:hover {
  box-shadow: 0 8px 32px 0 var(--brand-info);
  transform: translateY(-6px) scale(1.035) rotate(-2deg);
  border-color: var(--brand-bright);
}
.cta-btn, .btn-cookie, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.2s, color 0.23s, box-shadow 0.25s, transform 0.2s;
}
.cta-btn:active, .btn-cookie:active {
  transform: scale(0.95) rotate(2.5deg);
}

/* Fun bounce on CTA – playful!! */
.cta-btn.primary:hover, .cta-btn.primary:focus {
  animation: bounceBtn 0.35s cubic-bezier(.63,2,.68,-0.21) 1;
}
@keyframes bounceBtn {
  0%   { transform: scale(1.0); }
  40%  { transform: scale(1.12) rotate(-2deg); }
  70%  { transform: scale(0.94) rotate(3deg); }
  100% { transform: scale(1.0) rotate(0deg); }
}

/* ===========================================================
   RESPONSIVE STYLES
   =========================================================== */
@media (max-width: 900px) {
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  .footer-flex {
    flex-direction: column;
    gap: 13px;
    text-align: center;
    align-items: center;
  }
  .header-flex {
    gap: 7px;
    flex-wrap: wrap;
  }
  .feature-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 0;
    gap: 18px;
  }
  .section, section {
    padding: 26px 5px;
    margin-bottom: 32px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
  .card-container, .case-study-list, .testimonials-slider, .service-list, .article-list {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-slider {
    flex-direction: column;
    align-items: center;
    gap: 17px;
  }
  .testimonial-card {
    padding: 19px 12px;
  }
  .footer-flex {
    gap: 7px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .faq-list, .service-highlights, .process-steps, .article-categories ul {
    gap: 10px;
  }
  .pricing-table th, .pricing-table td {
    padding: 9px 6px;
    font-size: 15px;
  }
}

/* Small mobile tweaks */
@media (max-width: 480px) {
  h1 { font-size: 21px; }
  h2 { font-size: 19px; }
  h3 { font-size: 16px; }
  .logo-link img {
    height: 33px;
  }
  .card, .feature, .testimonial-card {
    padding: 12px 7px;
    font-size: 15px;
  }
  .cta-btn, .header-flex .cta-btn {
    font-size: 15px;
    padding: 9px 14px;
  }
  .cookie-banner {
    padding: 11px 5vw 9px 5vw;
    font-size: 14px;
  }
}

/*****************************************
   PLAYFUL DYNAMIC DECORATIVE DETAILS
*****************************************/
h1, h2, h3, .cta-btn, .btn-cookie {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
}
.card, .feature, .testimonial-card, .service-item {
  border-radius: 20px 15px 22px 17px;
}
.testimonial-card {
  border-radius: 19px 17px 17px 25px;
}
.feature:after,
.card:after {
  content: '';
  position: absolute;
  top: -12px; right: 12px;
  width: 28px; height: 28px;
  background: var(--brand-bright);
  border-radius: 50%;
  opacity: 0.16;
  z-index: 1;
  pointer-events: none;
}
.feature:nth-child(even):after,
.card:nth-child(even):after {
  left: 12px;
  right: auto;
  background: var(--brand-info);
  opacity: 0.17;
}

/* Extra fun shadows */
.card, .feature, .testimonial-card { box-shadow: 0 6px 32px 0 #FFD1660A, 0 1.5px 7px 1.5px #71D99E15; }

/**************************************************************
   UTILITIES
**************************************************************/
.text-center { text-align: center; }
.text-left { text-align: left; }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.mt-3 { margin-top: 18px; }
.mb-3 { margin-bottom: 18px; }
.mt-2 { margin-top: 8px; }
.mb-2 { margin-bottom: 8px; }

/**************************************************************
   PRINT/ACCESSIBILITY IMPROVEMENTS
**************************************************************/
@media print {
 * { box-shadow:none!important; background:none!important; color:#000!important; }
 .header-flex, .main-nav, .footer-flex, .cookie-banner, .mobile-menu { display: none !important; }
}

/************************************************************
   ENSURE FLEXBOX-ONLY LAYOUT – NO GRID, NO COLUMNS
************************************************************/
/* Never use display: grid or columns here. Only Flexbox is used. */
