/* ========================================
   CSS RESET & NORMALIZE
======================================== */
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 {
  line-height: 1.5;
  background: #1e2933;
  color: #F2F5F7;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input, button, textarea, select {
  font: inherit;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #F2F5F7;
}
h1 { font-size: 2.25rem; margin-bottom: 16px; }
h2 { font-size: 1.75rem; margin-bottom: 14px; }
h3 { font-size: 1.20rem; margin-bottom: 10px; }
h4 { font-size: 1.05rem; margin-bottom: 8px; }
p {
  color: #C8DEE7;
  font-size: 1rem;
  margin-bottom: 12px;
}
strong { color: #F2F5F7; }

/* ========================================
   COLORS / VARIABLES
======================================== */
:root {
  --color-primary: #283E50;
  --color-secondary: #799CAB;
  --color-accent: #90ffe3;
  --color-light: #F2F5F7;
  --color-dark: #1e2933;
  --color-bg-gradient: linear-gradient(120deg, #283E50 0%, #18232e 100%);
  --color-bg-gradient-section: linear-gradient(135deg, #253647 75%, #22303e 100%);
  --color-secondary-bg: #2b3e46;
  --color-btn-glow: #62f7db;
  --color-testimonial-bg: #F2F5F7;
  --color-testimonial-text: #263543;
  --color-shadow: 0 2px 12px rgba(46,255,225,0.12), 0 1.5px 4px rgba(40,62,80,0.15);
  --radius: 14px;
  --transition: 0.18s cubic-bezier(.7,.16,0,1);
}

/* ===================
  CONTAINER RULES
===================*/
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

/* ========================================
   HEADER & MAIN NAVIGATION
======================================== */
header {
  position: relative;
  width: 100%;
  background: var(--color-primary);
  box-shadow: 0 4px 22px rgba(40,62,80, 0.08);
  z-index: 10;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}
.logo-link img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #F2F5F7;
  padding: 8px 0 5px 0;
  position: relative;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.18s, color var(--transition);
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
.primary-cta {
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 32px;
  border-radius: var(--radius);
  box-shadow: 0 2px 22px rgba(46,255,225,0.14);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border: none;
  outline: none;
  margin-left: 16px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  text-align: center;
}
.primary-cta:hover, .primary-cta:focus {
  background: #62f7db;
  color: var(--color-dark);
  box-shadow: 0 4px 28px 3px #1de9b6aa;
}

/* ================= MOBILE MENU ===============*/
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--color-accent);
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 8px;
  z-index: 21;
  position: absolute;
  right: 16px;
  top: 14px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(46,255,225, 0.09);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  box-shadow: 0 0 40px 6px #1de9b643;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.74,-0.04,.19,1.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 36px;
  padding-bottom: 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-accent);
  font-size: 2.2rem;
  border-radius: 8px;
  margin: 8px 18px 16px 16px;
  align-self: flex-end;
  padding: 2px 8px;
  transition: background 0.16s;
}
.mobile-menu-close:hover {
  background: rgba(46,255,225, 0.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 24px 32px;
  width: 100%;
}
.mobile-nav a {
  color: #F2F5F7;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 0 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.18s, color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}

@media (max-width: 990px) {
  .main-nav ul {
    display: none;
  }
  .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========================================
   HERO/BANNER + GENERAL SECTIONS
======================================== */
.hero, .section, .features, .about-preview, .team, .values, .services, .service-detail, .faq, .contact, .process, .cta, .testimonials, .thank-you, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-gradient-section);
  border-radius: var(--radius);
  box-shadow: var(--color-shadow);
}
.hero {
  background: var(--color-bg-gradient);
  padding-top: 56px;
  padding-bottom: 56px;
  text-align: left;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #fafdff;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.018em;
}
.hero p {
  color: #C8DEE7;
  font-size: 1.13rem;
  margin-bottom: 22px;
  margin-top: 2px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* FEATURE SECTIONS */
.features .feature-grid, .services .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.feature {
  background: #293849;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px 0 rgba(46,255,225,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 270px;
  padding: 28px 24px 24px 24px;
  position: relative;
  transition: box-shadow var(--transition), background 0.21s;
  border: 1px solid rgba(95,255,230,0.08);
  margin-bottom: 20px;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 32px 4px #1de9b622;
  background: #22303e;
}
.feature img {
  width: 44px;
  margin-bottom: 6px;
}
.feature h3 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1.075rem;
  font-weight: 700;
}
.feature p {
  font-size: 0.99rem;
  color: #bdedf6;
  margin-bottom: 4px;
}
.feature .feature-price {
  display: inline-block;
  font-weight: 600;
  color: var(--color-accent);
  font-size: 1.01rem;
  background: rgba(146,255,227,0.05);
  padding: 6px 13px;
  border-radius: 8px;
  margin-top: 8px;
}
.pricing-summary, .service-pricing {
  margin-top: 10px;
  background: #18232e;
  color: #e7f5fd;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.97rem;
}
.pricing-summary h4 {
  color: var(--color-accent);
  font-size: 1.1rem;
}

/* ABOUT PREVIEW SECTION, TEAM, VALUES, CONTACT, FAQ, LEGAL, THANK-YOU */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1rem;
}
.text-section ul,
.text-section ol {
  margin-left: 20px;
  margin-bottom: 10px;
  color: #bdeaf7;
}
.text-section li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #c3e4ef;
  position: relative;
  padding-left: 14px;
}
.text-section li:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-right: 9px;
  position: absolute;
  left: 0;
  top: 12px;
}
.text-section h3, .text-section h2 {
  margin-top: 16px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  background: #203040;
  padding: 14px 20px;
  border-radius: 10px;
  color: #F2F5F7;
  font-weight: 500;
  font-size: 0.95rem;
}
.map-placeholder img {
  width: 32px;
  height: 32px;
}

.section, .about, .team, .values, .services, .service-detail, .faq, .process, .contact, .legal, .thank-you {
  background: var(--color-bg-gradient-section);
  box-shadow: var(--color-shadow);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* CTA SECTION */
.cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #2e4258;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px 0 #10d3ca13;
  min-height: 180px;
  padding: 40px 20px;
  margin-bottom: 60px;
}
.cta h2 {
  color: var(--color-accent);
  font-size: 1.45rem;
}
.cta ul, .cta p {
  margin-top: 10px;
  color: #c7e9f5;
}
.cta .primary-cta { margin-top: 16px; }

/* TESTIMONIALS */
.testimonials .content-wrapper {
  gap: 26px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 26px;
  background: var(--color-testimonial-bg);
  color: var(--color-testimonial-text);
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(36,51,68, 0.09);
  border: 1px solid #e5f3ff;
  font-size: 1rem;
  transition: box-shadow var(--transition);
}
.testimonial-card p {
  color: var(--color-testimonial-text);
  font-size: 1.04rem;
  margin-bottom: 2px;
  line-height: 1.65;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #548ab2;
  letter-spacing: 0.01em;
  font-style: italic;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 26px 0 #1de9b632;
}

/* ========================================
   FLEXBOX LAYOUTS
======================================== */
.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; }

/* ========================================
   FOOTER
======================================== */
footer {
  background: #243447;
  color: #d8eaf7;
  box-shadow: 0 -2px 16px rgba(46,255,225,0.04);
  padding-top: 26px;
  padding-bottom: 22px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #81ffd6;
  font-size: 1rem;
  transition: color var(--transition);
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #0fe9c7;
}
.footer-contact {
  font-size: 0.98rem;
  color: #b3e3fd;
  margin-top: 6px;
  line-height: 1.7;
}
footer img {
  width: 45px;
  height: auto;
  margin-bottom: 6px;
}

/* ========================================
   BUTTONS / INTERACTIVE
======================================== */
button, .primary-cta, .cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  outline: none;
  border: none;
  box-shadow: none;
  user-select: none;
}
.secondary-btn {
  background: #223038;
  color: var(--color-accent);
  padding: 9px 26px;
  border-radius: 7px;
  font-size: 0.98rem;
  margin-left: 16px;
  transition: background var(--transition), color var(--transition);
  border: 1.5px solid #62f7dbaa;
}
.secondary-btn:hover,
.secondary-btn:focus {
  background: #314b5d;
  color: #84ffe7;
  border: 1.5px solid #62f7db;
}
a, button, .primary-cta, .secondary-btn {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

/* Inputs (generic styling for future forms) */
input, textarea, select {
  border-radius: 8px;
  border: 1.5px solid #36526b;
  background: #283E50;
  color: #F2F5F7;
  font-size: 1rem;
  padding: 11px 16px;
  margin-top: 2px;
  margin-bottom: 16px;
  width: 100%;
  transition: border var(--transition), background var(--transition);
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #62f7db;
  outline: none;
  background: #22303e;
}

/* ========================================
   COOKIE BANNER & MODAL
======================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #17212b;
  color: #F2F5F7;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 14px;
  box-shadow: 0 -3px 24px #0de9b609;
  border-top: 2px solid #62f7db;
  gap: 32px;
  animation: slideUpBanner 0.36s cubic-bezier(.4,1.4,.7,1);
}
@keyframes slideUpBanner {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0 22px 0 0;
  color: #E6FAFF;
  font-size: 1rem;
}
.cookie-banner button {
  border-radius: 9px;
  font-size: 1rem;
  margin-left: 10px;
  margin-right: 8px;
  padding: 10px 22px;
  background: #223647;
  color: #afeee6;
  border: 1.5px solid #62f7db55;
  transition: box-shadow var(--transition), background var(--transition), color var(--transition);
  box-shadow: 0 1px 7px 0 #1de9b630;
}
.cookie-banner button.accept {
  background: var(--color-accent);
  color: var(--color-dark);
  font-weight: 700;
  border: 1.5px solid var(--color-accent);
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #52f7cd;
  color: #1e2933;
}
.cookie-banner button.reject {
  background: #192733;
  color: var(--color-accent);
  border: 1.5px solid #62f7db;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #20316f;
  color: #90ffe3;
}
.cookie-banner button.settings {
  background: #17212b;
  color: #62f7db;
  border: 1.5px solid #228b97;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #20316f;
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 3001;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(30, 62, 80, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeModalBackdrop 0.23s cubic-bezier(.7,.16,0,1);
}
@keyframes fadeModalBackdrop {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #232b39;
  color: #eafcff;
  border-radius: 15px;
  max-width: 370px;
  width: 93vw;
  padding: 28px 18px 22px 22px;
  box-shadow: 0 7px 38px 2px #1de9b629;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popModal 0.28s cubic-bezier(.6,1.8,.48,1);
}
@keyframes popModal {
  0% { transform: scale(.94); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-accent);
  font-size: 1.22rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
}
.cookie-cat strong { color: #eafff8; }
.cookie-modal label {
  font-size: 0.98rem;
  color: #bdeaf7;
}
.cookie-modal-close {
  position: absolute;
  top: 10px;
  right: 13px;
  background: transparent;
  border: none;
  color: var(--color-accent);
  font-size: 1.75rem;
  line-height: 1;
  padding: 0 4px;
  border-radius: 7px;
  transition: background 0.14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #192733;
}
.cookie-modal .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  border-radius: 18px;
  background: #22303e;
  border: 1.5px solid #62f7db55;
  outline: none;
  position: relative;
  transition: background 0.22s, border 0.18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--color-accent);
  border: 1.5px solid #68fdd9;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  transition: all 0.17s;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 #1de9b614;
}
.cookie-toggle:checked::before {
  left: 18px;
  background: #283E50;
}

/* ========================================
   ANIMATIONS & TRANSITIONS
======================================== */
.section, .hero, .about, .team, .values, .services, .service-detail, .faq, .process, .contact, .legal, .thank-you {
  transition: background 0.26s, box-shadow 0.18s;
}
.card, .feature, .testimonial-card {
  transition: box-shadow 0.18s, background 0.18s;
}

/* ========================================
   MEDIA QUERIES - RESPONSIVE FLEX LAYOUT
======================================== */
@media (max-width: 1210px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 14px; 
  }
}
@media (max-width: 800px) {
  .footer-nav, .footer-contact {
    font-size: 0.98rem;
    gap: 6px;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .hero, .section, .about, .team, .values, .services, .service-detail, .faq, .process, .contact, .legal, .thank-you, .cta, .testimonials {
    padding: 28px 7px;
    border-radius: 10px;
  }
  .feature {
    min-width: 98vw;
    max-width: 98vw;
    width: 100%;
  }
  .features .feature-grid,
  .services .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .testimonial-card {
    font-size: 0.99rem;
    padding: 14px 10px;
  }
  .map-placeholder {
    flex-direction: column;
    gap: 8px;
    padding: 12px 10px;
  }
}
@media (max-width: 650px) {
  .hero h1 {
    font-size: 1.42rem;
  }
  .main-nav {
    padding: 9px 0;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
}
@media (max-width: 512px) {
  .hero, .section, .about, .team, .values, .services, .service-detail, .faq, .process, .contact, .legal, .thank-you, .cta, .testimonials {
    padding: 15px 1px;
    border-radius: 8px;
  }
  .feature {
    padding: 12px 7px 17px 7px;
    border-radius: 8px;
  }
  .testimonial-card {
    padding: 10px 6px;
    border-radius: 8px;
  }
  .feature .feature-price {
    padding: 4px 7px;
    font-size: 0.98rem;
  }
  h1 { font-size: 1.14rem; }
  h2 { font-size: 1.01rem; }
  h3 { font-size: 0.97rem; }
}
@media (max-width: 480px) {
  .footer-nav, .footer-contact {
    font-size: 0.92rem;
  }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.hide { display: none !important; }
.text-center { text-align: center !important; }
.mt-24 { margin-top: 24px !important; }
.mb-16 { margin-bottom: 16px !important; }
.gap-20 { gap: 20px !important; }

/* ========================================
   CUSTOM SCROLLBAR 
======================================== */
::-webkit-scrollbar {
  width: 10px;
  background: #253647;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: #2FCFC1;
  border-radius: 8px;
}

/* ========================================
   A11Y: FOCUS & ACTIVE
======================================== */
a:focus, button:focus, .primary-cta:focus {
  outline: 2px dashed #52ffc9;
  outline-offset: 2px;
}

/* ========================================
   FUTURISTIC NEON/TECH ACCENTS
======================================== */
.feature:before,
.primary-cta:before {
  content: '';
  opacity: 0.23;
  pointer-events: none;
  position: absolute;
  top: -10px; left: -10px; right: -10px; bottom: -10px;
  border-radius: inherit;
  box-shadow: 0 0 22px 6px #62f7db;
  transition: opacity 0.25s;
  z-index: 0;
  display: none;
}
.feature:focus-within:before,
.feature:hover:before,
.primary-cta:focus:before,
.primary-cta:hover:before {
  display: block;
  opacity: 0.42;
}

/* ========================================
   PRINT SUPPORT (FOR DOCUMENT PAGES)
======================================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner {
    display: none !important;
  }
  body, .container, main, .section, .content-wrapper {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }
  * { color: #000 !important; }
}

/* ========================================
   END
======================================== */
