/* --- 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;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #F8F9FA;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #20324A;
  background: #F8F9FA;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #5FAFC2;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #20324A;
  text-decoration: underline;
}

/* --- Typography Hierarchy --- */
h1, .hero h1, .about h1, .legal h1, .thank-you h1, .pricing h1, .contact h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #20324A;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h2 {
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #20324A;
  letter-spacing: -0.01em;
}
h3 {
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #20324A;
}
h4, h5, h6 {
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 500;
  color: #20324A;
}
p, ul, ol, blockquote {
  margin-bottom: 16px;
}
ul, ol {
  margin-bottom: 24px;
  margin-left: 24px;
}
strong {
  font-weight: bold;
  color: #20324A;
}
blockquote {
  border-left: 6px solid #5FAFC2;
  padding-left: 18px;
  background: #F8F9FA;
  font-style: italic;
  color: #20324A;
  margin: 0 0 16px 0;
}

/* --- Layout Containers --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* --- Header --- */
header {
  background: #FFF;
  box-shadow: 0 2px 12px rgba(32,50,74,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #20324A;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #5FAFC2;
  color: #fff;
}
.cta-btn {
  background: #20324A;
  color: #fff !important;
  border: none;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 10px 36px;
  margin-left: 8px;
  box-shadow: 0 4px 18px rgba(32,50,74,0.08);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #5FAFC2!important;
  color: #20324A !important;
  box-shadow: 0 6px 22px rgba(95,175,194,.15);
}

.mobile-menu-toggle {
  display: none;
  background: #5FAFC2;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1.75rem;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.15s;
  z-index: 150;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #20324A;
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #20324A;
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.6,.01,.5,1.02);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: #5FAFC2;
  margin-bottom: 24px;
  padding: 8px 8px 8px 8px;
  cursor: pointer;
  border-radius: 4px;
  transition: background .16s, color .16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #5FAFC2;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  transition: background .18s, color .18s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #5FAFC2;
  color: #20324A;
}

@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1023px) {
  .mobile-menu {
    display: flex;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: #20324A;
  color: #fff;
  padding: 70px 0 50px 0;
  position: relative;
  overflow: hidden;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.hero p {
  color: #F8F9FA;
  font-size: 1.12rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 620px;
}
.hero .cta-btn {
  background: #5FAFC2;
  color: #20324A !important;
  font-size: 1.18rem;
  padding: 14px 36px;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-left: 0;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #fff!important;
  color: #20324A!important;
}

/* --- Section Features & Cards --- */
.features {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(32,50,74,.06);
  margin-bottom: 60px;
  padding: 40px 12px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 22px;
}
.features-grid > div {
  background: #F8F9FA;
  border-radius: 14px;
  flex: 1 1 200px;
  min-width: 210px;
  max-width: 262px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(32,50,74,0.06);
  border: 2.5px solid #5FAFC222;
  transition: transform .18s, box-shadow .18s, border .18s;
}
.features-grid > div:hover {
  transform: translateY(-6px) scale(1.03);
  border: 2.5px solid #5FAFC2;
  box-shadow: 0 10px 32px rgba(95,175,194,0.11);
}
.features-grid img {
  width: 48px;
  margin-bottom: 10px;
}
.features-grid h3 {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* --- Security Badges (trust section) --- */
.trust {
  background: #F8F9FA;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(32,50,74,.07);
  padding: 40px 12px;
  margin-bottom: 60px;
}
.security-badges {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 20px;
}
.security-badges img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: grayscale(0.4)
}
.trust ul {
  padding-left: 20px;
  margin-bottom: 16px;
  list-style: disc inside;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* --- Testimonials --- */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 28px 24px 18px 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(95,175,194,0.11);
  margin-bottom: 20px;
  margin-top: 14px;
  max-width: 540px;
}
.testimonial-card blockquote {
  border-left: 4px solid #5FAFC2;
  color: #20324A;
  background: none;
  font-size: 1.1rem;
  margin: 0 0 10px 0;
}
.testimonial-card p {
  color: #20324A;
  opacity: 1;
  margin-bottom: 0px!important;
}
.testimonial-card strong {
  color: #5FAFC2;
  font-weight: bold;
}

/* --- Pricing Table --- */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
  margin-top: 16px;
}
.pricing-table > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(32,50,74,.07);
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 320px;
  padding: 28px 24px 18px 28px;
  margin-bottom: 20px;
  border: 2.5px solid #5FAFC222;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  transition: transform .18s, box-shadow .18s, border .18s;
}
.pricing-table > div:hover {
  border: 2.5px solid #5FAFC2;
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 10px 40px rgba(32,50,74,0.13);
}
.pricing-table h3 {
  font-size: 1.28rem;
}
.pricing-table p {
  font-size: 1.16rem;
  margin-bottom: 8px;
}
.pricing-table ul {
  margin-bottom: 8px;
  padding-left: 18px;
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  margin-top: 14px;
  margin-bottom: 24px;
  background: #F8F9FA;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(32,50,74,0.07);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(32,50,74,0.05);
  margin-bottom: 8px;
}
.comparison-table th, .comparison-table td {
  padding: 10px 16px;
  border-bottom: 1.5px solid #E9F0F3;
  text-align: left;
  font-size: 1rem;
}
.comparison-table th {
  background: #5FAFC2;
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: bold;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.comparison-table ul {
  margin-left: 24px;
}

/* --- Section & Cards General --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* --- Other Sections --- */
.numbers ul, .team-leads,
.integration-logos, .industry-icons,
.service-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.team-leads > div, .service-boxes > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(32,50,74,0.04);
  padding: 18px 16px;
  min-width: 200px;
  max-width: 260px;
  flex: 1 1 180px;
  transition: box-shadow .17s, transform .16s;
}
.team-leads > div:hover, .service-boxes > div:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(32,50,74,0.12);
}
.integration-logos img, .industry-icons img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin-right: 14px;
}
.integration-logos {
  margin-bottom: 18px;
}

/* --- Contact Section --- */
.contact-info {
  background: #F8F9FA;
  border-radius: 10px;
  padding: 16px 22px;
  font-size: 1.1rem;
  margin-bottom: 13px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  word-break: break-word;
}
.address-map {
  display: flex;
  align-items: center;
  gap: 26px;
  background: #FFF;
  border-radius: 12px;
  padding: 14px 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(32,50,74,.05);
}
.address-map img {
  width: 62px;
  min-width: 48px;
  height: auto;
}

/* --- Footer --- */
footer {
  background: #20324A;
  color: #fff;
  padding: 38px 0 30px 0;
  margin-top: 60px;
  border-top: 4px solid #5FAFC2;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-links, .footer-legal, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a, .footer-legal a {
  color: #F8F9FA;
  margin-bottom: 4px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color .14s;
}
.footer-links a:hover, .footer-legal a:hover {
  color: #5FAFC2;
}
.footer-contact span {
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.footer-social img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.3) brightness(1.1) contrast(1.12);
  transition: filter .15s, transform .15s;
  border-radius: 7px;
}
.footer-social img:hover, .footer-social img:focus {
  filter: none;
  transform: scale(1.07);
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #20324A;
  color: #fff;
  z-index: 5000;
  box-shadow: 0 -2px 18px rgba(32,50,74,.13);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  width: 100vw;
  font-size: 1rem;
  animation: cookie-slideup 0.5s;
}
@keyframes cookie-slideup {
  from { opacity: 0; transform: translateY(80px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 10px 24px;
  margin-right: 2px;
  border: none;
  cursor: pointer;
  transition: background .16s, color .16s;
}
.cookie-accept {
  background: #5FAFC2;
  color: #20324A;
}
.cookie-accept:hover {
  background: #39a0bc;
  color: #fff;
}
.cookie-reject {
  background: #F8F9FA;
  color: #20324A;
  border: 1.5px solid #20324A;
}
.cookie-reject:hover {
  background: #5FAFC2;
  color: #fff;
}
.cookie-settings {
  background: transparent;
  color: #5FAFC2;
  border: 1.5px solid #5FAFC2;
}
.cookie-settings:hover {
  background: #5FAFC2;
  color: #fff;
}

.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,50,74,0.6);
  z-index: 6000;
  animation: fade-in .3s;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  color: #20324A;
  border-radius: 14px;
  box-shadow: 0 10px 50px rgba(32,50,74,0.22);
  z-index: 9001;
  min-width: 330px;
  max-width: 98vw;
  width: 435px;
  padding: 30px 32px 18px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modal-pop .33s cubic-bezier(.62,.1,.38,1.01);
}
@keyframes modal-pop {
  from { opacity: 0; transform: translate(-50%,-42%) scale(.98); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  color: #20324A;
  margin-bottom: 8px;
  font-size: 1.33rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #20324A;
}
.cookie-modal input[type=checkbox],
.cookie-modal input[type=radio] {
  accent-color: #5FAFC2;
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.cookie-modal .cookie-save {
  background: #5FAFC2;
  color: #20324A;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
.cookie-modal .cookie-save:hover {
  background: #20324A;
  color: #fff;
}
.cookie-modal .cookie-cancel {
  background: #F8F9FA;
  color: #20324A;
  border: 1px solid #5FAFC2;
  border-radius: 8px;
  padding: 10px 24px;
  cursor: pointer;
}
.cookie-modal .cookie-cancel:hover {
  background: #5FAFC2;
  color: #fff;
}

/* --- CTA Section --- */
.cta {
  background: #5FAFC2;
  color: #20324A;
  border-radius: 16px;
  padding: 48px 0 42px 0;
  text-align: center;
  box-shadow: 0 4px 38px rgba(32,50,74,.10);
  margin-bottom: 60px;
}
.cta h2 {
  color: #20324A;
  margin-bottom: 13px;
}
.cta p {
  color: #20324A;
  margin-bottom: 22px;
  font-size: 1.17rem;
}
.cta .cta-btn {
  background: #20324A;
  color: #fff;
  padding: 15px 38px;
  margin-top: 14px;
  font-size: 1.23rem;
  border-radius: 8px;
}
.cta .cta-btn:hover {
  background: #fff!important;
  color: #20324A!important;
}

/* --- FAQ and Legal --- */
.faq ul, .legal ul {
  list-style-type: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}
.faq li, .legal li {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #20324A;
}
.faq h3, .legal h3 {
  font-size: 1.04rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.legal section, .faq section {
  background: #F8F9FA;
  border-radius: 12px;
  margin-bottom: 40px;
  padding: 38px 18px 30px 18px;
  box-shadow: 0 2px 16px rgba(32,50,74,.03);
}

/* --- Numbers Section --- */
.numbers ul {
  gap: 24px;
  margin-bottom: 12px;
}
.numbers li strong {
  color: #5FAFC2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
}

/* --- Office hours --- */
.office-hours ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.office-hours li {
  font-size: 1.04rem;
  margin-bottom: 6px;
}

/* --- Steps/Process --- */
.process ol, .cta ol {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.process ol li, .cta ol li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(32,50,74,0.07);
  flex: 1 1 180px;
  min-width: 195px;
  max-width: 266px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: box-shadow .14s, transform .14s;
}
.process ol li img, .cta ol li img {
  width: 46px;
  margin-bottom: 8px;
}
.process ol li:hover {
  box-shadow: 0 8px 26px rgba(32,50,74,0.11);
  transform: translateY(-4px) scale(1.03);
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1023px) {
  .features-grid, .pricing-table, .numbers ul, .service-boxes, .team-leads, .integration-logos, .industry-icons, .process ol, .cta ol, .footer-links, .footer-legal, .footer-contact, .footer-social, .security-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-links, .footer-legal, .footer-contact, .footer-social {
    width: 100%;
  }
  footer .container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 11px;
  }
  .section, .features, .trust, .testimonials, .cta {
    padding: 28px 4px;
    margin-bottom: 32px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .features-grid, .pricing-table {
    gap: 14px;
  }
  .hero {
    padding: 40px 0 20px 0;
  }
  h1, .hero h1, .about h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  .process ol, .cta ol, .numbers ul, .service-boxes, .team-leads {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 14px 10px 10px 14px;
  }
  .address-map {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .security-badges {
    gap: 22px;
  }
  .integration-logos, .industry-icons {
    gap: 16px;
  }
}
@media (max-width: 520px) {
  header .container {
    height: auto;
    flex-direction: column;
    gap: 6px;
    padding: 10px 4px 10px 4px;
  }
  .hero {
    padding: 18px 0 0 0;
  }
  .features[
    padding: 14px 2px;
  ]
  .footer-social img {
    width: 28px;
    height: 28px;
  }
  .cookie-modal {
    min-width: 90vw;
    width: 98vw;
    padding: 16px 5vw 10px 5vw;
  }
  .cookie-modal h2 {
    font-size: 1.07rem;
  }
}

/* --- General Utility Classes --- */
.hide-on-mobile {
  display: block;
}
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none!important;
  }
}

.show-on-mobile {
  display: none;
}
@media (max-width: 1023px) {
  .show-on-mobile {
    display: block!important;
  }
}

/* --- Misc Flex for alignment strictness --- */
.footer-links, .footer-legal, .footer-contact, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* --- Focus Styles for Accessibility --- */
a:focus, button:focus, input:focus, .cta-btn:focus, .mobile-menu-close:focus {
  outline: 2px solid #5FAFC2;
  outline-offset: 2px;
}

/* --- Subtle transitions for interactive elements --- */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background .14s, color .14s, box-shadow .14s;
}

/* --- Hide scroll for open mobile menu on body (for JS) --- */
body.body-no-scroll {
  overflow: hidden;
}
