/* RESET & BASE STYLES -------------------------------------------------- */
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.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #121f26;
  color: #e0e8ef;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
}
img {
  max-width: 100%; display: block; height: auto;
}
a { text-decoration: none; color: inherit; }
ul, ol { margin-left: 24px; margin-bottom: 16px; }
li { margin-bottom: 6px; }

/* TYPOGRAPHY -------------------------------------------------------------- */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #f8f9fa;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #72b9c4;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #94e7ff;
  margin-bottom: 14px;
}
h4, .h4 { font-size: 1.1rem; margin-bottom: 12px; }
p, blockquote, table, ul {color: #e0e8ef; margin-bottom: 1.2em;}
blockquote {
  font-style: italic;
  background: rgba(34,54,72, 0.7);
  border-left: 4px solid #13c8ff;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 14px;
  font-size: 1.16em;
  color: #d9f4fc;
  letter-spacing: 0.3px;
}
strong {color: #fff; font-weight: 700;}

body, input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.subheadline { 
  font-family: 'Roboto', Arial, sans-serif; 
  font-size: 1.25rem; 
  color: #a8e8ff; 
  margin-bottom: 24px;
  font-weight: 400;
}

/* COLORS & EFFECTS -------------------------------------------------------- */
:root {
  --primary: #356f8c;
  --primary-dark: #234058;
  --secondary: #72b9c4;
  --accent: #f8f9fa;
  --neon: #20ffe2;
  --neon-blue: #13c8ff;
  --section-bg: #152333;
  --card-bg: #1a2e40;
  --card-glow: 0 3px 24px 0 #13c8ff44;
  --shadow-md: 0 2px 8px 0 rgba(32,154,190,0.14);
  --shadow-lg: 0 4px 24px 0 #13c8ff45;
  --danger: #fe4848;
  --success: #36efba;
  --warn: #ffe16a;
}

/* LAYOUT STRUCTURE & CONTAINER STYLES ------------------------------------- */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 14px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  background: var(--section-bg);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 40px;
    border-radius: 14px;
  }
}

/* HERO SECTION WITH FUTURISTIC ACCENTS ----------------------------------- */
.hero {
  background: linear-gradient(120deg, #213647 10%, #234058 70%, #13c8ff 130%);
  min-height: 360px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  border-bottom: 4px solid var(--neon-blue);
  box-shadow: 0 6px 30px 0 #13c8ff22;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  padding: 48px 0;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--neon);
  text-shadow: 0 2px 40px #1ae8ff66, 0 1px 10px #233650;
}
.hero .cta-primary {
  margin-top: 18px;
}

/* NAVIGATION STYLES -------------------------------------------------------- */
header {
  width: 100%;
  background: #182734;
  padding: 0;
  z-index: 50;
  box-shadow: 0 1px 7px 0 #13c8ff1a;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 64px;
  padding: 0 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: #e0e8ef;
  padding: 6px 18px;
  font-size: 1.08rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 16px;
  transition: color 0.22s, background 0.24s, box-shadow 0.27s;
  position: relative;
  z-index: 1;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--neon-blue);
  color: #12212a;
  box-shadow: 0 0 10px 0 var(--neon-blue);
}
.brand-logo img {
  height: 38px;
  width: auto;
  margin-right: 18px;
  filter: drop-shadow(0 0 12px #1ae8ff66);
}
.cta-primary {
  background: var(--neon-blue);
  color: #0b2736;
  border: none;
  border-radius: 18px;
  padding: 9px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1.3px;
  box-shadow: 0 0 28px 0 #20ffe270, 0 2px 8px 0 #13c8ff30;
  transition: background 0.24s, box-shadow 0.23s, color 0.22s;
  text-shadow: 0 2px 10px #1ae8ff66;
  font-size: 1.08rem;
  margin-top: 10px;
  position: relative;
  cursor: pointer;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #20ffe2;
  color: #10202a;
  box-shadow: 0 0 44px 0 #1ae8ffc5;
  text-decoration: none;
}

/* MOBILE BURGER MENU ------------------------------------------------------ */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--neon-blue);
  font-size: 2.1rem;
  border: none;
  margin-right: 12px;
  margin-top: 10px;
  cursor: pointer;
  z-index: 130;
  position: absolute;
  right: 8px; top: 14px;
  height: 40px; width: 42px;
  border-radius: 10px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #13c8ff19;
}
.mobile-menu {
  display: flex;
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #132232ee;
  transform: translateX(-102vw);
  transition: transform 0.35s cubic-bezier(.83,-0.01,0,1);
  z-index: 9999;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: var(--neon-blue);
  font-size: 2.3rem;
  position: absolute;
  right: 30px;
  top: 26px;
  border: none;
  cursor: pointer;
  z-index: 11000;
  outline: none;
  padding: 8px 12px;
  border-radius: 9px;
  transition: background 0.17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #13c8ff23;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100vw;
  margin-top: 90px;
  padding-left: 34px;
}
.mobile-nav a {
  font-size: 1.32rem;
  color: #e0e8ef;
  width: 80vw;
  padding: 12px 0 12px 2px;
  border-radius: 9px;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--neon-blue);
  color: #092736;
}

@media (max-width: 980px) {
  .main-nav {
    gap: 9px;
  }
  .brand-logo img {
    margin-right: 10px;
    height: 31px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    font-size: 0.97rem;
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header {
    min-height: 64px;
    height: auto;
  }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* FOOTER ------------------------------------------------------------------ */
footer {
  width: 100%;
  background: #16292b;
  color: #d7fdff;
  padding: 38px 0 12px 0;
  margin-top: 60px;
  border-top: 3px solid #09fff7;
}
.footer-brand img {
  height: 42px;
  filter: drop-shadow(0 0 22px #13c8ff70);
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 12px 0;
  align-items: center;
  justify-content: center;
}
.footer-nav a {
  color: #d7fdff;
  font-size: 1rem;
  padding: 6px 13px;
  border-radius: 9px;
  transition: background 0.18s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--neon-blue);
  color: #01252d;
  text-decoration: none;
}
.footer-contact {
  margin: 18px auto 0 auto;
  max-width: 420px;
  font-size: 0.98rem;
  color: #d2f2ff;
}
@media (max-width: 700px) {
  .footer-brand, .footer-nav, .footer-contact {
    text-align: center;
    margin: 0 auto 10px auto;
  }
  footer {
    padding: 30px 0 7px 0;
  }
}

/* FLEXBOX: SECTIONS & CARDS ----------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: 18px;
  box-shadow: var(--card-glow);
  padding: 30px 26px;
  transition: box-shadow 0.23s, background 0.2s;
  position: relative;
  z-index: 1;
  min-width: 240px;
  flex: 1 1 340px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 44px 0 var(--neon-blue), var(--shadow-lg);
  background: #253b52;
}
.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;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .card-container {
    gap: 14px;
  }
}

/* FEATURES GRID ----------------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.feature-item {
  background: #1a2e40;
  box-shadow: var(--card-glow), var(--shadow-md);
  border-radius: 15px;
  padding: 27px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  flex: 1 1 218px;
  border: 1.5px solid #19e4ff55;
  transition: box-shadow 0.18s, border 0.16s, background 0.19s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 7px #1ae8ff9a);
  margin-bottom: 3px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 0 29px 0 var(--neon);
  border: 1.5px solid var(--neon);
  background: #233d54;
  z-index: 2;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    min-width: 120px;
    flex: 1 1 140px;
  }
}

/* TESTIMONIALS ------------------------------------------------------------ */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  color: #212c37;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 #356f8c34, 0 0px 7px 0 #13c8ff40;
  margin-bottom: 20px;
  margin-top: 5px;
  flex-wrap: wrap;
  position: relative;
}
.testimonial-card blockquote {
  background: transparent;
  border-left: 4px solid var(--primary);
  color: #212c37;
  margin-bottom: 4px;
  font-size: 1.08em;
  font-style: italic;
  padding: 0 0 0 14px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .98em;
  color: #356f8c !important;
}
.testimonial-meta strong {
  color: #234058;
}
.testimonial-meta img {
  width: 22px;
  height: 22px;
  margin: 0;
}
@media (max-width: 720px) {
  .testimonial-card {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-meta {
    margin-top: 2px;
  }
}

/* Cards: Blog etc --------------------------------------------------------- */
article {
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  padding: 22px 16px; 
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
  border-left: 4px solid #20ffe2;
}
article:hover {
  box-shadow: 0 0 32px 0 #13c8ff60;
}

/* Pricing Table ------------------------------------------------------------*/
.pricing-table {
  width: 100%;
  border-radius: 13px;
  background: #182734;
  box-shadow: var(--card-glow);
  border-collapse: collapse;
  margin-bottom: 22px;
  font-size: 1.06em;
}
.pricing-table th,
.pricing-table td {
  padding: 12px 8px;
  border-bottom: 1px solid #1ae8ff33;
  text-align: left;
  color: #d1fbff;
}
.pricing-table th {
  color: #1ae8ff;
  font-weight: 700;
  background: #183342;
}
.pricing-table tr:hover {
  background: #193c47;
}
@media (max-width: 670px) {
  .pricing-table {
    font-size: 0.98em;
    min-width: unset;
  }
}

.special-offers {
  background: #233e47;
  border-radius: 10px;
  padding: 12px 18px;
  margin-top: 18px;
  box-shadow: 0 2px 8px 0 #13c8ff18;
}
/* FAQs -------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #142231;
  border-radius: 13px;
  box-shadow: var(--shadow-md);
  padding: 14px 18px 9px 16px;
  border-left: 4px solid #20ffe2;
}
.faq-item h3 {
  color: #13c8ff;
  margin-bottom: 4px;
  font-size: 1.09em;
}

/* CASE STUDY ------------------------------------------------------------- */
.case-study {
  background: #1c2a3a;
  border-left: 4px solid #19e4ff90;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 #13c8ff20;
  padding: 17px 14px 7px 20px;
  margin-bottom: 20px;
}
.case-study h3 {
  color: #19e4ff;
  margin-bottom: 5px;
}

.partner-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
  margin: 14px 0 0 0;
}
.partner-logos img {
  height: 44px;
  filter: drop-shadow(0 0 5px #13c8ff55);
}
@media (max-width: 520px) {
  .partner-logos {
    gap: 10px;
  }
  .partner-logos img {
    height: 34px;
  }
}

/* CONTACT, FORMS, MAP ------------------------------------------------------*/
.contact-methods ul,
.contact-summary {
  list-style: none;
  margin: 10px 0 13px 0;
  padding: 0;
  color: #23e5ff;
}
.contact-methods li,
.contact-summary > * {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 9px;
  color: #1ae8ff;
  font-size: 1.05rem;
}
.contact-methods img,
.contact-summary img {
  width: 24px; height: 24px;
  filter: drop-shadow(0 0 5px #1ae8ff80);
}
input, textarea, select {
  background: #1b2c3b;
  border: 1.5px solid #19e4ff75;
  color: #e5fcfc;
  padding: 10px 12px;
  border-radius: 7px;
  width: 100%;
  font-size: 1em;
  margin-bottom: 16px;
  transition: border 0.21s, background 0.19s;
}
input:focus, textarea:focus {
  border: 1.5px solid #13c8ff;
  background: #1e364a;
  outline: none;
}

/* COOKIE CONSENT BANNER & MODAL --------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #152333fa;
  color: #e0e8ef;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 18px 12px 16px 12px;
  font-size: 1rem;
  z-index: 9000;
  box-shadow: 0 -2px 16px 0 #13c8ff30;
  transition: transform 0.3s, opacity 0.25s;
  opacity: 1;
  transform: translateY(0);
  flex-wrap: wrap;
  border-top: 3px solid #13c8ff;
  border-radius: 13px 13px 0 0;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(180px);
  pointer-events: none;
}
.cookie-banner .cookie-buttons {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: var(--neon-blue);
  color: #1c2a3a;
  border: none;
  border-radius: 11px;
  padding: 8px 19px;
  font-weight: 600;
  margin: 0 2px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 0 12px 0 #1ae8ff52;
  transition: background 0.19s, box-shadow 0.20s, color 0.18s;
}
.cookie-btn:hover,.cookie-btn:focus {
  background: #20ffe2; color: #193c47;
  box-shadow: 0 0 36px 0 #19e4ffbb;
}
.cookie-btn.secondary {
  background: none;
  color: #1ae8ff;
  border: 1.5px solid #1ae8ff;
  box-shadow: none;
}
.cookie-btn.secondary:hover,
.cookie-btn.secondary:focus {
  background: #183342; color: #20ffe2;
}

.cookie-modal-backdrop {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0;
  height: 100vh; width: 100vw;
  background: #132232d8;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #1c2a3a;
  border-radius: 22px;
  box-shadow: 0 2px 28px 0 #13c8ff75;
  padding: 34px 25px;
  max-width: 410px;
  width: 94vw;
  z-index: 110000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  position: relative;
  margin: 0 auto;
  color: #e0e8ef;
  outline: none;
}
.cookie-modal h2 {
  color: #20ffe2;
  font-size: 1.22rem;
  margin-bottom: 4px;
}
.cookie-pref-category {
  padding: 12px 0;
  border-bottom: 1.5px solid #13c8ff33;
}
.cookie-pref-category:last-child { border-bottom: none; }
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
}
.cookie-switch {
  width: 40px; height: 22px;
  background: #133445; border-radius: 15px;
  position: relative;
  border: 1.5px solid #13c8ff55;
  margin-left: 9px;
  cursor: pointer;
  transition: background 0.24s;
}
.cookie-switch.active { background: #13c8ff; }
.cookie-switch .slider {
  display: block;
  height: 18px;
  width: 18px;
  background: #f8f9fa;
  border-radius: 50%;
  position: absolute;
  left: 2px; top: 1.5px;
  transition: left 0.23s;
}
.cookie-switch.active .slider { left: 19px; background: #0d515b; }
.cookie-modal .close-modal {
  position: absolute; right: 16px; top: 14px;
  background: none;
  border: none;
  color: #20ffe2; font-size: 1.8rem;
  cursor: pointer;
  padding: 0 6px;
  border-radius: 7px;
  transition: background 0.18s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #13c8ff17;
}
@media (max-width:540px) {
  .cookie-modal {padding: 20px 7px; border-radius:13px;}
}
/* Special blocks ---------------------------------------------------------- */
.quality-guarantee, .team-intro, .benefit-list {
  background: #1a2e48;
  color: #1ae8ff;
  border-radius: 11px;
  padding: 14px 16px;
  margin: 16px 0 13px 0;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: 0 1px 9px 0 #13c8ff21;
}
.quality-guarantee img {
  width: 30px; height: 30px;
  filter: drop-shadow(0 0 6px #1ae8ffaa);
}

/* TABLE, LISTS ----------------------------------------------------------- */
table { width: 100%; border-spacing: 0; }
th, td { font-size:1rem; }
tr { transition: background 0.19s; }
ul, ol {
  margin-bottom: 15px;
  color: #def9fb;
}
ul li, ol li {line-height: 1.7;}

/* COMPONENT UTILITIES ------------------------------------------------------*/
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
.gap-32 { gap: 32px !important; }
.text-center { text-align:center !important; }

/* SPACING & FLEXBOX UTILITIES ----------------------------------------------*/
.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 alignment as per requirements ----------------------------------*/
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-grid { flex-direction: column; gap: 15px; }
}

/* ANIMATIONS & MICRO-INTERACTIONS -------------------------------------------*/
.cta-primary, .cookie-btn {
  transition: background 0.21s, color 0.17s, box-shadow 0.15s, transform 0.13s;
}
.cta-primary:active, .cookie-btn:active {
  transform: scale(0.97);
}
.card, .feature-item, .testimonial-card, .faq-item, .case-study, .article {
  transition: box-shadow 0.19s, background 0.19s, border 0.17s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .faq-item:hover, .case-study:hover {
  box-shadow: 0 10px 38px 0 #1ae8ff71, 0 5px 13px 0 #1ae8ff38;
}

/* Hide scroll when modal/menu open ------------------------------------------*/
.body-modal-open, .body-menu-open { overflow: hidden !important; }

/* Hide content visually but keep for screen readers -------------------------*/
.sr-only { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* Responsive body font scale ------------------------------------------------*/
@media (max-width: 480px) {
  body { font-size: 15px; }
  h1 { font-size: 1.58rem; }
  h2 { font-size: 1.21rem; }
}

/* Z-INDEX safety when overlay is open -------------------------------------- */
.mobile-menu { z-index: 9999; }
.cookie-banner { z-index: 9000; }
.cookie-modal-backdrop { z-index: 99999; }

/*--- END STYLES */
