/* ======== 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,
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, 
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F8FB;
  color: #1C2C39;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  margin-left: 22px;
}
button, input, select, textarea {
  font-family: inherit;
}
a {
  color: #004A8F;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #F2AD3A;
}

/* ======== VARIABLES (With Fallbacks) ======== */
:root {
  --color-primary: #004A8F;
  --color-secondary: #1C2C39;
  --color-accent: #F2AD3A;
  --color-bg: #F8F8FB;
  --color-light: #FFF;
  --color-dark: #18202B;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow-lg: 0 8px 40px 0 rgba(28, 44, 57, 0.10);
  --shadow-md: 0 2px 12px 0 rgba(31,56,85,.10);
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

/* ====== TYPOGRAPHY ====== */
h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.13;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 16px;
  line-height: 1.18;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.22;
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-secondary);
}
p, li, blockquote, footer {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
  letter-spacing: 0.01em;
}
p, ul, ol, blockquote {
  margin-bottom: 18px;
}
blockquote {
  font-style: italic;
  background: #FFFBE6;
  border-left: 5px solid var(--color-accent);
  padding: 20px 24px 20px 30px;
  border-radius: var(--radius-md);
  color: var(--color-secondary);
}
strong {
  font-weight: 700;
  color: var(--color-accent);
}
em {
  font-style: italic;
  color: var(--color-primary);
}

/* ======= CONTAINERS & SPACING ====== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius-lg);
}
.section:last-child,
section:last-child {
  margin-bottom: 0;
}

/* ====== HEADER & NAVIGATION ====== */
header {
  background: var(--color-light);
  box-shadow: var(--shadow-md);
  z-index: 40;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 0;
  position: relative;
}
.main-nav > a img {
  height: 46px;
  width: auto;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  list-style: none;
}
.main-nav ul li a {
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  padding: 6px 1px;
  border-bottom: 2px solid transparent;
  transition: border-color .19s, color .21s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 28px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .21s;
  letter-spacing: 0.03em;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 3px 16px 0 rgba(0,74,143,0.13);
}

/* MOBILE BURGER MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 102;
  background: var(--color-accent);
  color: var(--color-secondary);
  border: none;
  border-radius: var(--radius-md);
  width: 46px;
  height: 46px;
  font-size: 2rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background .18s, color .18s;
}
.mobile-menu-toggle:active {
  background: var(--color-primary);
  color: #fff;
}

 /* ====== MOBILE MENU NAVIGATION ====== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,44,57,0.97);
  transform: translateX(105%);
  transition: transform .42s cubic-bezier(0.8,0.05,0.21,1);
  z-index: 110;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 22px 22px 26px;
}
.mobile-menu.open {
  transform: translateX(0%);
  box-shadow: -8px 0 24px -10px rgba(31,56,85,0.20);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-accent);
  color: var(--color-secondary);
  border: none;
  border-radius: var(--radius-md);
  font-size: 2.1rem;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background .18s, color .18s;
  z-index: 115;
}
.mobile-menu-close:active {
  background: var(--color-primary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.17rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: none;
  padding: 10px 0 10px 2px;
  border-radius: var(--radius-md);
  transition: background 0.15s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(242,173,58,0.22);
  color: var(--color-accent);
}

/* ====== HERO SECTION ====== */
.hero {
  background: linear-gradient(105deg, #EAF4FF 0%, #FAEDDD 60%, #FCE281 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  box-shadow: 0 1px 22px 0 rgba(0,74,143,0.08);
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 60px 0 40px 0;
  gap: 28px;
}
.hero h1 {
  font-size: 2.6rem;
  color: var(--color-secondary);
}
.hero p {
  font-size: 1.18rem;
  color: var(--color-primary);
  margin-bottom: 18px;
  max-width: 500px;
}
.hero .btn-primary {
  margin-top: 18px;
}


/* ========== FLEX LAYOUTS (MANDATORY) ========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  min-width: 260px;
  max-width: 350px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(0,74,143,0.13);
  transform: translateY(-7px) scale(1.02);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #FFF;
  padding: 20px 32px;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 18px 0 rgba(242,173,58,0.09);
  min-width: 250px;
  max-width: 520px;
  transition: box-shadow .19s, border-color .18s;
  border-left: 4px solid var(--color-accent);
}
.testimonial-card blockquote {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 1.15rem;
  color: #222;
  line-height: 1.32;
}
.testimonial-card footer {
  font-size: 0.98rem;
  font-style: normal;
  color: var(--color-primary);
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== CARDS & GRID ELEMENTS ========== */
.feature-grid, .service-list, .industry-list, .benefit-grid, .case-study-teasers, .news-teasers, .article-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 24px;
  margin-top: 18px;
}
.feature, .service, .industry, .benefit, .case-study, .news, .article {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 3px 14px 0 rgba(28,44,57,0.11);
  padding: 32px 22px 28px 22px;
  min-width: 234px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .16s, transform .18s;
  position: relative;
}
.feature:hover, .service:hover, .industry:hover, .benefit:hover, .case-study:hover, .news:hover, .article:hover {
  box-shadow: 0 8px 24px 0 rgba(242,173,58,0.11);
  transform: translateY(-4px) scale(1.01);
}
.feature img, .service img, .industry img {
  height: 56px;
  width: 56px;
  margin-bottom: 12px;
  border-radius: 50%;
  border: 2.5px solid var(--color-accent);
  background: #FFFBF4;
  box-shadow: 0 2px 6px 0 rgba(242,173,58,0.09);
  object-fit: contain;
}
.feature h3, .service h2, .industry h2, .benefit h3, .case-study h3, .news h2, .article h3 {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
}
.feature strong, .service strong {
  color: var(--color-accent);
  font-size: 1.12rem;
}
.trust-badges {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.trust-badges img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFF3DB;
  box-shadow: 0 1px 6px 0 rgba(242,173,58,0.06);
}

/* ========== STEP LISTS & FAQ ACCORDION ========== */
.step-list {
  display: flex;
  gap: 24px 20px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.step {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  flex: 1 1 250px;
  min-width: 216px;
  padding: 28px 24px 24px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow .18s, transform .18s;
  position: relative;
}
.step img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
  background: #EAF4FF;
  border-radius: 50%;
  box-shadow: 0 1px 4px 0 rgba(0,74,143,0.07);
}
.step:hover {
  box-shadow: 0 8px 22px 0 rgba(0,74,143,0.10);
  transform: translateY(-4px) scale(1.01);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.faq-item {
  background: #FFF8EC;
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px 0 rgba(242,173,58,0.09);
  margin-bottom: 20px;
  cursor: pointer;
}
.faq-item h3 {
  margin-bottom: 12px;
  color: var(--color-secondary);
  font-size: 1.07rem;
  font-weight: 600;
}
.faq-answer {
  display: none;
  margin-top: 6px;
  font-size: 0.98rem;
}
.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn .38s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(105deg, #d9eaf7 0%, #f9f4e3 100%);
  padding: 0;
  box-shadow: 0 -2px 14px 0 rgba(28,44,57,0.12);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}
footer .container {
  padding: 32px 18px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
footer img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-bottom: 8px;
}
.footer-menu a {
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 1rem;
  padding-bottom: 1.5px;
  border-bottom: 2px solid transparent;
  transition: border-color .16s, color .19s;
}
.footer-menu a:hover, .footer-menu a:focus {
  border-bottom: 2px solid var(--color-accent);
  color: var(--color-accent);
}
.contact-info p {
  font-size: 0.98rem;
  color: #333;
  margin-bottom: 2px;
}
.social-links {
  display: flex;
  gap: 11px;
  margin-bottom: 10px;
}
.social-links img {
  width: 32px;
  height: 32px;
  background: #fff;
  padding: 3px;
  border-radius: 50%;
  box-shadow: 0 1px 5px 0 rgba(28,44,57,0.06);
  transition: box-shadow 0.17s;
  cursor: pointer;
}
.social-links img:hover {
  box-shadow: 0 4px 14px 0 rgba(242,173,58,0.16);
}
footer p {
  color: #353535;
  font-size: 0.94rem;
  margin-top: 7px;
}

/* ========== CTA SECTION ========== */
.cta {
  background: linear-gradient(100deg, #FFFBE7 44%, #E8F2FC 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 0;
  text-align: center;
  padding: 60px 20px;
  box-shadow: 0 2px 14px 0 rgba(242,173,58,0.07);
}
.cta .content-wrapper {
  align-items: center;
  gap: 24px;
}
.cta h2 {
  color: var(--color-primary);
  font-size: 2.1rem;
}
.cta .btn-primary {
  font-size: 1.15rem;
  padding: 14px 34px;
}

/* ========== POLICY PAGES ========== */
.policy {
  background: #FDF6EA;
  border-radius: var(--radius-lg);
}
.policy .text-section {
  background: transparent;
  padding: 6px 0;
  border-radius: 0;
}
.policy h1 {
  color: var(--color-secondary);
  margin-bottom: 14px;
}
.policy h2 {
  color: var(--color-primary);
  margin-top: 26px;
  margin-bottom: 7px;
  font-size: 1.2rem;
  font-weight: 700;
}
.policy ul {
  margin-bottom: 6px;
}

/* ========== ABOUT, TEAM, TRUST, etc ========== */
.about, .team, .trust {
  background: #E1F0FA;
  border-radius: var(--radius-lg);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
}
.text-section ul li {
  margin-bottom: 6px;
  list-style: disc inside;
}

/* ========== CONTACT ========== */
.contact-details, .contact-form-section {
  background: #fffbe7;
  border-radius: var(--radius-lg);
}
.contact-form-fields {
  background: #F7F8FB;
  border-radius: var(--radius-sm);
  padding: 18px 18px;
  margin-top: 12px;
  color: var(--color-secondary);
  font-size: 1.05rem;
}

/* ========== THANK YOU PAGE ========== */
.thank-you {
  background: #E1F0FA;
  border-radius: var(--radius-lg);
  text-align: center;
  padding-top: 55px;
}
.thank-you .content-wrapper {
  align-items: center;
  gap: 24px;
}
.thank-you h1 {
  color: var(--color-accent);
  margin-bottom: 18px;
  font-size: 2.2rem;
}
.thank-you .btn-primary {
  margin-top: 25px;
  font-size: 1.13rem;
  padding: 13px 30px;
}

/* ========== ANIMATIONS/MICRO-INTERACTIONS ========== */
.btn-primary,
.main-nav ul li a,
.footer-menu a,
.article, .news, .case-study, .feature, .service, .industry, .benefit, .step,
.card {
  transition: box-shadow 0.18s, background 0.18s, color 0.15s, transform 0.18s;
}

/* ========== COOKIE CONSENT BANNER/MODAL ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe7;
  color: var(--color-secondary);
  width: 100%;
  box-shadow: 0 -3px 20px 0 rgba(28,44,57,0.16);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  z-index: 9999;
  padding: 22px 20px 20px 20px;
  font-size: 1.01rem;
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  animation: slideInUp 0.48s;
}
@keyframes slideInUp {
  from { transform: translateY(112%); }
  to { transform: translateY(0); }
}
.cookie-banner-btns {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-btn {
  border: none;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  color: var(--color-secondary);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.99rem;
  padding: 7px 17px;
  cursor: pointer;
  box-shadow: 0 1px 7px 0 rgba(242,173,58,0.07);
  transition: background 0.18s, color 0.17s, box-shadow 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(0,74,143,0.12);
}
.cookie-btn.reject {
  background: #e8503a;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #c11f15;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #EAF4FF;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(31,44,55,0.36);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.33s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fffbe7;
  color: var(--color-secondary);
  min-width: 320px;
  max-width: 94vw;
  padding: 36px 36px 24px 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 36px 0 rgba(28,44,57,0.17);
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cookie-modal-header h2 {
  font-size: 1.35rem;
  color: var(--color-primary);
}
.cookie-modal-close {
  background: var(--color-accent);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.42rem;
  color: var(--color-secondary);
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
  margin-left: 12px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-primary);
  color: #FFF;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1.03rem;
  font-weight: 500;
}
.cookie-category.essential label {
  color: #666;
}
.cookie-category.essential input[type="checkbox"] {
  cursor: not-allowed;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1199px) {
  .container {
    max-width: 980px;
  }
  h1 { font-size: 2.1rem; }
  .hero h1 { font-size: 2.1rem; }
}
@media (max-width: 900px) {
  .container { max-width: 96vw; }
  .hero .content-wrapper { padding: 48px 0 32px 0; gap: 18px; }
  .feature-grid, .service-list, .industry-list, .benefit-grid, .case-study-teasers, .news-teasers, .article-previews, .step-list {
    gap: 20px 12px;
    flex-wrap: wrap;
  }
  .feature, .service, .industry, .benefit, .case-study, .news, .article, .step {
    min-width: 200px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none !important;
  }
  .btn-primary {
    font-size: 0.99rem;
    padding: 10px 18px;
  }
  .main-nav {
    padding-right: 58px;
    gap: 8px;
  }
  .mobile-menu-toggle {
    display: block;
    top: 16px;
    right: 10px;
  }
  .feature-grid, .service-list, .industry-list, .benefit-grid, .case-study-teasers, .news-teasers, .article-previews, .step-list {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 96vw;
    padding: 15px 13px;
  }
  .hero .content-wrapper, .cta .content-wrapper, .thank-you .content-wrapper {
    align-items: flex-start;
    text-align: left;
  }
  .cta {
    padding: 28px 8px;
  }
  .policy {
    padding: 28px 10px;
  }
  .section, section {
    margin-bottom: 36px;
    padding: 26px 10px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 5px 0;
  }
  footer .container {
    padding: 18px 8px;
  }
}
@media (max-width: 480px) {
  html { font-size: 94%; }
  .container { padding: 0 6px; }
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.11rem; }
}

/* ========== FOCUS & ACCESSIBILITY ========== */
a:focus, button:focus, .btn-primary:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1.5px;
}

/* ========== CUSTOM ARTISTIC FONTS (Google Fonts Recommended) ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;0,900;1,700&family=Roboto:wght@400;500;700&display=swap');

/* ========== DYNAMIC ELEMENTS HINT ========== */
/*
  When the menu is not open, .mobile-menu is off-canvas (translateX).
  When it has .open, it's on-canvas.
  For cookies: .cookie-banner shows at bottom, .cookie-modal.open covers with pop-up.
*/
