/* ========================
   Energyscape Legal Frankfurt – style.css
   Futuristic Tech-Inspired UI (flexbox-only)
======================== */

/* 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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #1A2938;
  color: #E2E7EB;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #8ABCD2; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #61e8ff; text-decoration: underline; }


/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: 'Merriweather', serif;
  color: #E2E7EB;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5 { font-size: 1.1rem; margin-bottom: 10px; }
p, ul, li, strong, label, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #E2E7EB;
}
strong { font-weight: 700; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}


/* =========== LAYOUT CONTAINERS =========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 20px auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(26,41,56,0.98);
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(0,80,130,0.06), 0 0 0 1.5px #2a4157 inset;
  transition: box-shadow 0.25s;
}

@media (max-width: 768px) {
  .section {
    padding: 24px 6px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 4vw;
  }
  .content-wrapper {
    gap: 16px;
  }
}


/* =========== HEADER & NAVIGATION =========== */
header {
  width: 100%;
  background: #1A2938;
  z-index: 100;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.11);
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  gap: 24px;
}
header img {
  height: 38px;
}
nav {
  display: flex;
  gap: 28px;
}
nav a {
  color: #E2E7EB;
  font-weight: 400;
  font-size: 1rem;
  opacity: 0.87;
  position: relative;
  transition: color 0.18s, opacity 0.18s;
}
nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg,#8ABCD2 20%,#61e8ff 100%);
  border-radius: 2px;
  transition: width .2s;
  margin-top: 4px;
}
nav a:hover:after, nav a:focus:after {
  width: 100%;
}
.cta-button {
  background: linear-gradient(90deg,#8ABCD2 0%,#61e8ff 90%);
  color: #1A2938;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 12px 30px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 rgba(0,255,255,0.10), 0 0 0 1.2px #61e8ff;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  text-shadow: 0 1px 10px rgba(97, 232, 255, .09);
  margin-left: 18px;
}
.cta-button:hover,
.cta-button:focus {
  background: linear-gradient(90deg,#61e8ff 0%,#8ABCD2 100%);
  color: #20334C;
  box-shadow: 0 4px 24px 0 rgba(97,232,255,0.23), 0 0 0 2px #61e8ff;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 1000px) {
  header .container { flex-wrap: wrap; height: auto; }
  nav { gap: 14px; }
  .cta-button { padding: 11px 20px; margin-left: 8px; }
}

/* =============== MOBILE MENU =============== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 22px;
  top: 22px;
  z-index: 150;
  width: 46px;
  height: 46px;
  background: rgba(26,41,56,0.95);
  border: none;
  color: #61e8ff;
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #20334C;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #1A2938;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(26, 41, 56, 0.98);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform .35s cubic-bezier(.5,1.5,.7,1);
  box-shadow: 0 4px 64px 0 rgba(97,232,255,0.13);
  padding-top: 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: 24px;
  margin-bottom: 16px;
  background: none;
  border: none;
  color: #8ABCD2;
  font-size: 2.2rem;
  cursor: pointer;
  transition: color .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100vw;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  color: #e2e7eb;
  font-size: 1.18rem;
  padding: 10px 4px 10px 0;
  border-left: 5px solid transparent;
  transition: border-color .2s, color .2s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #61e8ff;
  border-left: 5px solid #61e8ff;
}

@media (max-width: 900px) {
  nav,
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}


/* ================ HERO SECTION ================ */
.hero {
  padding: 0 0 70px 0;
  background: linear-gradient(90deg, #243952 70%, #155268 100%); /* subtle tech grad */
  position: relative;
  box-shadow: 0 4px 50px 0 rgba(0,188,255,0.10);
}
.hero .container {
  flex-direction: column;
  align-items: center;
  min-height: 340px;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 22px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 22px #20334C, 0 0 2px #061a2c;
}
.hero p {
  font-size: 1.2rem;
  color: #c5dde9;
}
.hero .cta-button {
  margin-top: 12px;
}

@media (max-width: 720px) {
  .hero {
    padding-bottom: 32px;
  }
  .hero .container {
    min-height: 180px;
  }
  .hero .content-wrapper { gap: 14px; }
}


/* ============== FLEX CHILD COMPOSITIONS ============== */
/* For lists with icon & text features, team, grid, etc. */
.feature-grid, .advantages-grid, .service-grid, .lawyer-profiles-grid,
.card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.feature-grid li, .advantages-grid li, .service-grid li, .lawyer-card, .card {
  background: #22344a;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(97,232,255,0.04), 0 0 0 1px #30526C inset;
  padding: 24px 20px 18px 20px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 230px;
  transition: box-shadow .18s, transform .14s;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid li:hover,
.advantages-grid li:hover,
.service-grid li:hover,
.lawyer-card:hover,
.card:hover {
  box-shadow: 0 4px 24px 0 rgba(97,232,255,0.14), 0 0 0 2px #61e8ff;
  transform: translateY(-4px) scale(1.015);
}
.feature-grid img {
  width: 50px; height: 50px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 4px #1570B3);
}

@media (max-width: 768px) {
  .feature-grid, .advantages-grid, .service-grid, .lawyer-profiles-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .advantages-grid li, .service-grid li, .lawyer-card, .card {
    min-width: 0;
    width: 100%;
    padding: 17px 10px;
  }
}

/* CARD CONTAINERS (MANDATORY PADDING) */
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ========== TESTIMONIALS / REVIEWS ========== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #22344a;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 1.5px 12px 0 rgba(0,80,180,0.07), 0 0 0 1.5px #8ABCD2 inset;
  margin-bottom: 20px;
  flex: 1 1 340px;
  transition: box-shadow .17s;
  flex-direction: column;
}
.testimonial-card p {
  color: #22344a;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: #155268;
  font-size: 1rem;
  margin-top: 10px;
}
.testimonial-card:hover {
  box-shadow: 0 2px 24px 0 rgba(97,232,255,0.13), 0 0 0 2.2px #61e8ff;
}

/* For multiple testimonials on same row (desktop) */
@media (min-width: 1000px) {
  .testimonial-card {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    min-width: 340px;
    max-width: 480px;
    margin-right: 20px;
  }
}


/* ========== TEAM / PROFILE AND SNIPPETS ========= */
.lawyer-profiles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.lawyer-card {
  background: #22344a;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(97,232,255,0.04), 0 0 0 1px #30526C inset;
  padding: 18px 20px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 210px;
  transition: box-shadow .18s, transform .14s;
  align-items: flex-start;
  gap: 12px;
}
.lawyer-card strong { color: #8ABCD2; font-size: 1.08rem; }
.lawyer-card p { color: #a5dde7; font-size: 1rem; }

@media (max-width: 768px) {
  .lawyer-profiles-grid {
    flex-direction: column;
    gap: 15px;
  }
  .lawyer-card { min-width: 0; width: 100%; }
}

.team-snippet {
  margin-top: 16px;
  padding: 16px 18px;
  background: rgba(138,188,210,0.12);
  border-radius: 12px;
  color: #c5dde9;
  font-size: 1rem;
}


/* ============== LISTS AND ULs =============== */
ul {
  margin-left: 1.5em;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
ul ul {
  margin-left: 1.2em;
  gap: 8px;
  font-size: 1em;
}
li {
  position: relative;
  color: #E2E7EB;
  font-size: 1rem;
  line-height: 1.5;
}
ul li strong { color: #8ABCD2; }


/* =============== SPECIAL SECTIONS =============== */
.next-steps-info {
  background: #202c3e;
  border-radius: 10px;
  margin: 16px 0 18px 0;
  padding: 14px 20px;
  color: #c2ddee;
  box-shadow: 0 1.5px 10px 0 rgba(97,232,255,0.06);
}
.next-steps-info strong { color: #61e8ff; margin-bottom: 10px; display:block; }
.alert-box {
  background: #fffbe4;
  color: #1A2938;
  border-left: 6px solid #8ABCD2;
  border-radius: 8px;
  padding: 13px 20px;
  margin-top: 16px;
  box-shadow: 0 1.5px 10px 0 rgba(239,206,99,0.07);
  font-size: 1rem;
}

/* =============== BUTTONS & LINKS =============== */
button, .cta-button, .login-link, .whatsapp-link {
  font-family: 'Merriweather', serif;
  appearance: none;
  outline: none;
}
.login-link, .whatsapp-link {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  padding: 11px 22px;
  border: none;
  border-radius: 24px;
  margin-left: 7px;
  background: #222e41;
  color: #8ABCD2;
  transition: background .15s, color .15s, box-shadow .14s;
  box-shadow: 0 0 0 1px #26486b inset;
}
.login-link:hover, .login-link:focus, .whatsapp-link:hover, .whatsapp-link:focus {
  background: #61e8ff;
  color: #1A2938;
  box-shadow: 0 2px 14px 0 rgba(97,232,255,0.13);
}
.whatsapp-link img {
  height: 18px;
  margin-right: 7px;
}

/* ============= CONTACT DETAILS ============= */
.contact-details ul {
  margin-left: 0;
  gap: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  color: #E2E7EB;
  font-size: 1.08rem;
}
.contact-details img {
  width: 22px; height: 22px; margin-right: 6px;
  filter: brightness(1.3) drop-shadow(0 1.5px 2px #8ABCD2);
}


/* ============= FOOTER ============= */
footer {
  width: 100%;
  padding: 44px 0 14px 0;
  background: #121d26;
  border-top: 2.7px solid #30526C;
  box-shadow: 0 -2px 20px 0 rgba(23,66,101,.12);
}
footer .container {
  flex-direction: column;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #8ABCD2;
  font-size: 0.98rem;
  gap: 7px;
  margin-bottom: 8px;
}
.footer-nav a { color: #8ABCD2; opacity: 0.74; transition: opacity .13s; }
.footer-nav a:hover { opacity: 1; color: #61e8ff; }
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.footer-brand img {
  height: 32px;
}
.footer-contact {
  text-align: center;
  color: #8ABCD2;
  font-size: 0.98rem;
}
.footer-contact a { color: #61e8ff; }
.footer-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 22px;
  margin-top: 3px;
  margin-bottom: 9px;
}
.footer-social a img {
  height: 28px;
  filter: brightness(1.2) drop-shadow(0 2px 5px #13e2cf60);
  transition: filter .15s;
}
.footer-social a:hover img {
  filter: drop-shadow(0 2px 8px #8aebfa);
}
.footer-copyright {
  color: #377ca0;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-align: center;
}

@media (max-width: 720px) {
  .footer-nav { flex-direction: column; gap: 2px; }
  .footer-brand img { height: 26px; }
}

  
/* ===================== COOKIE CONSENT ==================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #061a2c;
  color: #E2E7EB;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding: 22px 14px 22px 14px;
  box-shadow: 0 -4px 28px 0 rgba(97,232,255,0.11);
  transition: transform .3s cubic-bezier(.7,1.5,.7,1.05), opacity .25s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(80px);
}
.cookie-banner-content {
  max-width: 680px;
  color: #E2E7EB;
  font-size: 1rem;
  line-height: 1.7;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
.cookie-banner-btn {
  background: linear-gradient(90deg,#8ABCD2 0%,#61e8ff 90%);
  color: #1A2938;
  border: none;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  border-radius: 22px;
  padding: 8px 24px;
  font-weight: 700;
  cursor: pointer;
  margin-right: 5px;
  transition: box-shadow .16s, background .14s, color .14s;
  box-shadow: 0 0 0 1px #61e8ff inset;
}
.cookie-banner-btn.accept {
  background: linear-gradient(90deg,#61e8ff 0%,#8ABCD2 90%);
  color: #1A2938;
}
.cookie-banner-btn.reject {
  background: #122a3d;
  color: #8ABCD2;
}
.cookie-banner-btn.settings {
  background: none;
  color: #61e8ff;
  box-shadow: 0 0 0 1.2px #8ABCD2 inset;
  padding: 8px 22px;
}
.cookie-banner-btn:focus,
.cookie-banner-btn:hover {
  box-shadow: 0 2px 8px 0 rgba(97,232,255,0.12),0 0 0 2px #61e8ff;
  background: #8ABCD2;
  color: #1A2938;
}
.cookie-banner-btn.settings:focus,
.cookie-banner-btn.settings:hover {
  background: #22344a;
  color: #61e8ff;
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 13px; }
  .cookie-banner-btns { flex-wrap: wrap; gap: 10px; }
  .cookie-banner-content { max-width: 100%; font-size: 0.98rem;}
}

/* ==== COOKIE POPUP MODAL ==== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(17,36,68,.85);
  z-index: 10001;
  display: flex;
  align-items: center; justify-content: center;
  animation: fadeIn .22s;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #1A2938;
  color: #E2E7EB;
  min-width: 312px;
  max-width: 99vw;
  width: 420px;
  border-radius: 16px;
  box-shadow: 0 6px 40px 0 rgba(97,232,255,0.14), 0 0 0 2.7px #61e8ff inset;
  padding: 32px 32px 24px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popupOpen .33s cubic-bezier(.4,1.7,.7,1);
}
@keyframes popupOpen {
  0% { transform: scale(.9) translateY(30px); opacity:0 }
  80% { transform: scale(1.021) translateY(-8px); opacity:.97 }
  100% { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h2 {
  color: #E2E7EB;
  font-size: 1.45rem;
  margin-bottom: 9px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #8ABCD2;
  cursor: pointer;
  margin-right: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
}
.cookie-modal input[type="checkbox"],
.cookie-modal input[type="radio"] {
  accent-color: #8ABCD2;
}
.cookie-modal .cookie-essential[disabled] + label {
  opacity: 0.7;
  color: #aac1d8;
  cursor: not-allowed;
}
.cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-btn {
  background: linear-gradient(90deg,#8ABCD2 0%,#61e8ff 90%);
  color: #1A2938;
  border: none;
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  border-radius: 18px;
  padding: 8px 24px;
  font-weight: 700;
  cursor: pointer;
  transition: background .14s, color .14s, box-shadow .13s;
}
.cookie-modal-btn.secondary {
  background: #22344a;
  color: #8ABCD2;
}
.cookie-modal-btn:focus, .cookie-modal-btn:hover {box-shadow: 0 1px 10px #61e8ff80; background: #61e8ff;color: #1A2938;}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #8ABCD2;
  cursor: pointer;
}
.cookie-modal-close:hover { color: #61e8ff; }
@media (max-width: 499px) {
  .cookie-modal { padding:20px 6vw; min-width:0; width:98vw; }
}


/* =============== SPACING & FLEXBOX ENSURED =============== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* All sections have a minimum 20px margin between content cards */
.section > .card-container > *,
.section > .feature-grid > *,
.section > .advantages-grid > *,
.section > .lawyer-profiles-grid > *,
.section > .testimonial-card,
.section > .content-grid > *,
.section > .service-grid > * {
  margin-bottom: 20px;
}

/* Ensure z-index for positioned elements doesn't overlap */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 100;
}
.mobile-menu { z-index: 200; }
.cookie-banner, .cookie-modal-overlay { z-index: 3000; }

/* Utility: visually hide on mobile, show on desktop and vice versa */
.desktop-only { display: block; }
.mobile-only { display: none; }
@media (max-width: 900px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

/* Misc responsive fixes */
@media (max-width: 490px) {
  .cta-button, .login-link, .whatsapp-link { font-size:0.95rem; padding: 9px 12px; }
  .next-steps-info, .alert-box { padding: 10px 8px; font-size: .98rem; }
  .testimonial-card { padding: 12px 7px; }
  ul { margin-left:1em; }
}

/* ========= SCROLLBAR STYLING (OPTIONAL modern polish) ========= */
html::-webkit-scrollbar { width: 9px; background: #192936; }
html::-webkit-scrollbar-thumb { background: #29526d; border-radius: 5px; }


/* =========== SIMPLE SMOOTH MICRO-INTERACTIONS =========== */
.cta-button, .login-link, .cookie-banner-btn, .cookie-modal-btn {
  transition: box-shadow 0.16s, background 0.14s, color 0.14s, transform 0.12s;
}
.cta-button:active,
.login-link:active,
.cookie-banner-btn:active,
.cookie-modal-btn:active {
  transform: scale(0.97);
}

/* =========== FOCUS INDICATORS =========== */
a:focus, button:focus, .cta-button:focus, .cookie-banner-btn:focus, .cookie-modal-btn:focus {
  outline: 2px solid #61e8ff;
  outline-offset: 2px;
}

/* =========== PRINT OPTIMIZATION =========== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; color: #22344a; }
}

/* ================= CUSTOM FONT LOADING =================== */
@font-face {
  font-family: 'Merriweather';
  src: local('Merriweather'), local('Merriweather-Regular'), url('https://fonts.gstatic.com/s/merriweather/v28/u-440qyriQwlOrhSvowK_l5-fCZJ.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: local('Open Sans'), local('OpenSans-Regular'), url('https://fonts.gstatic.com/s/opensans/v34/mem8YaGs126MiZpBA-UFWJ0i.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
