/**
 * Landing / marketing base: variables, reset, container, nav, footer.
 * Used by base_landing.html so navbar and footer can be reused on other pages.
 */
@font-face {
  font-family: 'Google Sans Flex';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex@latest/latin-400-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex@latest/latin-400-normal.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Google Sans Flex';
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex@latest/latin-500-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex@latest/latin-500-normal.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Google Sans Flex';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex@latest/latin-600-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex@latest/latin-600-normal.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Google Sans Flex';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url(https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex@latest/latin-700-normal.woff2) format('woff2'), url(https://cdn.jsdelivr.net/fontsource/fonts/google-sans-flex@latest/latin-700-normal.woff) format('woff');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
  --bg-deep: #040810;
  --bg-dark: #0A1020;
  --bg-nav-hero: #0a1628;
  --bg-card: #0D1528;
  --bg-card2: #111D35;
  --text: #E8EDF5;
  --text-muted: #7B8BA5;
  --accent: #3FA9F5;
  --accent2: #5AF0B5;
  --gold: #FFD166;
  --red: #F6465D;
  --green: #2EBD85;
  --border: #1A2744;
  --glow: rgba(63, 169, 245, 0.15);
  --font-sans: 'Google Sans Flex', 'DM Sans', sans-serif;
  /* Landing layout: one source of truth for alignment */
  --landing-container-max: 1140px;
  --landing-nav-clearance: 100px;
  --landing-container-padding: 24px;
  --landing-container-padding-tablet: 20px;
  --landing-container-padding-mobile: 16px;
  --landing-container-padding-sm: 12px;
  --landing-section-padding-y: 72px;
  --landing-section-padding-y-tablet: 56px;
  --landing-section-padding-y-mobile: 48px;
  --landing-section-padding-y-sm: 40px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body.landing-page {
  font-family: var(--font-sans);
  background-color: #040810;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  background-attachment: fixed;
  color: var(--text);
  overflow-x: hidden;
  min-width: 320px;
}
body.landing-page h1,
body.landing-page h2,
body.landing-page h3 { font-family: var(--font-sans); }
body.landing-page a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
body.landing-page a:hover { color: var(--accent2); }

.landing-page .container {
  max-width: var(--landing-container-max);
  margin: 0 auto;
  padding: 0 var(--landing-container-padding);
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .landing-page .container { padding: 0 var(--landing-container-padding-tablet); }
}
@media (max-width: 480px) {
  .landing-page .container { padding: 0 var(--landing-container-padding-mobile); }
}
@media (max-width: 360px) {
  .landing-page .container { padding: 0 var(--landing-container-padding-sm); }
}

/* Landing content: aligned sections, no horizontal overflow */
.landing-content {
  display: block;
  overflow-x: hidden;
  box-sizing: border-box;
}
.landing-content .container {
  box-sizing: border-box;
}

/* === Landing Nav (fixed, transparent + blur only) === */
.landing-page nav.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.3s ease, border-color 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Google Sans Flex', var(--font-sans), sans-serif;
}
.landing-page nav.landing-nav.nav-hidden {
  transform: translateY(-100%);
}
.landing-page nav.landing-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.landing-page nav.landing-nav.scrolled {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.landing-page nav.landing-nav.scrolled::before { opacity: 0; }

/* --- Nav: layout, logo, mobile toggle, links, dropdown, btn (all navbar UI) --- */
@keyframes drawerItemIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .landing-page nav.landing-nav .links,
  .landing-page nav.landing-nav .links a,
  .landing-page .nav-overlay { transition: none !important; animation: none !important; }
}

.landing-page nav.landing-nav .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}
.landing-page nav.landing-nav .logo { order: 1; }
.landing-page nav.landing-nav .logo img {
  height: 36px;
  width: auto;
  display: block;
  transition: transform 0.2s;
}
.landing-page nav.landing-nav .mobile-toggle {
  position: absolute;
  left: 6px;
  top: 40%;
  transform: translateY(-50%);
  order: 2;
  display: none;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  padding: 12px;
  font-size: 28px;
  line-height: 1;
  font-family: 'Google Sans Flex', var(--font-sans), sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.26s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 10px;
  -webkit-tap-highlight-color: transparent;
  min-width: 52px;
  min-height: 52px;
}
.landing-page nav.landing-nav .mobile-toggle .hamburger-box {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  position: relative;
}
.landing-page nav.landing-nav .mobile-toggle .hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
  transform-origin: center;
}
.landing-page nav.landing-nav .mobile-toggle.is-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.landing-page nav.landing-nav .mobile-toggle.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.landing-page nav.landing-nav .mobile-toggle.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.landing-page nav.landing-nav .mobile-toggle:hover {
  color: #fff;
}
.landing-page nav.landing-nav .mobile-toggle.is-open {
  color: #fff;
}
.landing-page nav.landing-nav .mobile-toggle.is-open:hover {
  color: rgba(255, 255, 255, 0.9);
}
.landing-page nav.landing-nav .links {
  display: flex;
  gap: clamp(20px, 3vw, 32px);
  align-items: center;
  order: 2;
  flex-wrap: wrap;
  justify-content: center;
}
.landing-page nav.landing-nav .links a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Google Sans Flex', var(--font-sans), sans-serif;
  transition: color 0.2s;
}
.landing-page nav.landing-nav .links a:not(.btn-nav):hover { color: rgba(255, 255, 255, 0.85); }
.landing-page nav.landing-nav .links a:not(.btn-nav).active {
  color: rgba(7, 224, 253, 0.85);
  font-weight: 600;
}
.landing-page nav.landing-nav .links .btn-nav { margin-left: 0; }

/* Demo dropdown (desktop) */
.landing-page nav.landing-nav .nav-dropdown {
  position: relative;
}
.landing-page nav.landing-nav .nav-dropdown-trigger {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Google Sans Flex', var(--font-sans), sans-serif;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.landing-page nav.landing-nav .nav-dropdown-trigger:hover {
  color: rgba(255, 255, 255, 0.85);
}
.landing-page nav.landing-nav .nav-dropdown-trigger.active {
  color: rgba(7, 224, 253, 0.85);
  font-weight: 600;
}
.landing-page nav.landing-nav .nav-dropdown-trigger::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.landing-page nav.landing-nav .nav-dropdown.open .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}
.landing-page nav.landing-nav .nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px) scale(0.96);
  transform-origin: top center;
  min-width: 200px;
  background: rgba(10, 16, 40, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 8px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 0.28s,
              transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 100;
}
.landing-page nav.landing-nav .nav-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(6px) scale(1);
}
.landing-page nav.landing-nav .nav-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
}
.landing-page nav.landing-nav .nav-dropdown-menu a:hover {
  background: rgba(63, 169, 245, 0.12);
  color: #fff;
}

/* Nav Login button (desktop) */
.landing-page nav.landing-nav .links .btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 6px 30px;
  border-radius: 9px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #294884;
  background: linear-gradient(90deg, #54308C 0%, #247CC6 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(36, 124, 198, 0.35);
  white-space: nowrap;
}
.landing-page nav.landing-nav .links .btn-nav:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(36, 124, 198, 0.5);
  color: #ffffff !important;
}
.landing-page nav.landing-nav .links .btn-nav:active {
  transform: translateY(-1px) scale(1.01);
  transition-duration: 0.1s;
}

@media (max-width: 768px) {
  .landing-page nav.landing-nav {
    min-height: 72px;
    padding: 16px 0;
    transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .landing-page nav.landing-nav.nav-hidden {
    transform: translateY(-100%);
  }
  .landing-page nav.landing-nav.menu-open {
    z-index: 201;
  }
  .landing-page nav.landing-nav.menu-open .mobile-toggle {
    z-index: 202;
  }
  .landing-page nav.landing-nav .mobile-toggle { display: block !important; }

  .landing-page .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    z-index: 199;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.38s ease;
  }
  .landing-page .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .landing-page nav.landing-nav .links {
    position: fixed;
    top: 0;
    left: 0;
    width: min(300px, 80vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 56px 20px 40px;
    z-index: 200;
    overflow-y: auto;
    font-family: 'Google Sans Flex', var(--font-sans), sans-serif;
    background: rgba(12, 18, 32, 0.35);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: none;
    border-radius: 0 16px 16px 0;
    overflow-x: hidden;
    box-shadow: 24px 0 64px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
    display: flex;
    isolation: isolate;
  }
  .landing-page nav.landing-nav .links::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
  }
  .landing-page nav.landing-nav .links.open {
    transform: translateX(0);
    margin-top: 0;
  }
  .landing-page nav.landing-nav .links.open a {
    animation: drawerItemIn 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
  }
  .landing-page nav.landing-nav .links.open a:nth-child(1) { animation-delay: 0.08s; }
  .landing-page nav.landing-nav .links.open a:nth-child(2) { animation-delay: 0.13s; }
  .landing-page nav.landing-nav .links.open a:nth-child(3) { animation-delay: 0.18s; }
  .landing-page nav.landing-nav .links.open a:nth-child(4) { animation-delay: 0.22s; }
  .landing-page nav.landing-nav .links.open a:nth-child(5) { animation-delay: 0.26s; }
  .landing-page nav.landing-nav .links.open a:nth-child(6) { animation-delay: 0.30s; }
  .landing-page nav.landing-nav .links.open a:nth-child(7) { animation-delay: 0.34s; }
  .landing-page nav.landing-nav .links.open a:nth-child(8) { animation-delay: 0.38s; }
  .landing-page nav.landing-nav .links.open a:nth-child(9) { animation-delay: 0.42s; }

  .landing-page nav.landing-nav .links.open a:not(.btn-nav):hover,
  .landing-page nav.landing-nav .links.open .nav-dropdown-trigger:hover,
  .landing-page nav.landing-nav .links.open .nav-dropdown-menu a:hover {
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    border-left-color: transparent;
    transform: none;
  }

  .landing-page nav.landing-nav .links .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .landing-page nav.landing-nav .links .nav-dropdown-trigger {
    width: 100%;
    justify-content: flex-start;
    padding: 13px 16px;
    min-height: 48px;
    text-align: left;
    border-radius: 10px;
    border-left: 2px solid transparent;
    color: rgba(255, 255, 255, 0.82);
  }
  .landing-page nav.landing-nav .links .nav-dropdown-trigger:hover {
    background: rgba(63, 169, 245, 0.08);
    color: #fff;
    border-left-color: rgba(63, 169, 245, 0.55);
  }
  .landing-page nav.landing-nav .links .nav-dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 12px;
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .landing-page nav.landing-nav .links .nav-dropdown-menu.open {
    max-height: 200px;
    opacity: 1;
  }
  .landing-page nav.landing-nav .links .nav-dropdown-menu a {
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 8px;
    border-left: 2px solid transparent;
  }
  .landing-page nav.landing-nav .links .nav-dropdown-menu a:hover {
    background: rgba(63, 169, 245, 0.08);
    border-left-color: rgba(63, 169, 245, 0.55);
  }

  .landing-page nav.landing-nav .links a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 13px 16px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    border-radius: 10px;
    border-left: 2px solid transparent;
    transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
    min-height: 48px;
  }
  .landing-page nav.landing-nav .links a:not(.btn-nav):hover {
    background: rgba(63, 169, 245, 0.08);
    color: #fff;
    border-left-color: rgba(63, 169, 245, 0.55);
    transform: translateX(4px);
  }
  .landing-page nav.landing-nav .links a:not(.btn-nav).active {
    color: rgba(7, 224, 253, 0.85);
    font-weight: 600;
    border-left-color: rgba(7, 224, 253, 0.7);
    box-shadow: none;
  }
  .landing-page nav.landing-nav .links .nav-dropdown-trigger.active {
    color: rgba(7, 224, 253, 0.85);
    font-weight: 600;
    border-left-color: rgba(7, 224, 253, 0.7);
    box-shadow: none;
  }

  .landing-page nav.landing-nav .links .btn-nav {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    min-height: 48px;
    padding: 6px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid #294884;
    background: linear-gradient(90deg, #54308C 0%, #247CC6 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(36, 124, 198, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .landing-page nav.landing-nav .links .btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(36, 124, 198, 0.5);
  }
  .landing-page nav.landing-nav .logo img { height: 40px; }
}

@media (max-width: 480px) {
  .landing-page nav.landing-nav .logo img { height: 36px; }
}

/* Hapësirë nën navbar fixed që përmbajtja të mos mbulohet (të gjitha faqet) */
.landing-page .landing-main {
  padding-top: 100px;
  min-height: 40vh;
}

/* === Footer (reusable on landing and other marketing pages) === */
.landing-page footer.landing-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 0 36px;
}
.landing-page .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.landing-page .footer-brand .footer-logo {
  display: inline-block;
  text-decoration: none;
}
.landing-page .footer-brand .footer-logo:hover { opacity: 0.9; }
.landing-page footer.landing-footer .footer-brand .footer-logo-img {
  height: 40px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}
.landing-page .footer-brand .footer-logo-img {
  height: 40px;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}
.landing-page .footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 320px;
}
.landing-page .footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.landing-page .footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: opacity 0.25s ease, transform 0.2s ease;
}
.landing-page .footer-social-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.landing-page .footer-social-link img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}
.landing-page .footer-col h4 {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}
.landing-page .footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  margin-bottom: 10px;
}
.landing-page .footer-col a:hover { color: rgba(255, 255, 255, 0.95); }
.landing-page .footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 24px;
}
.landing-page .footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.landing-page .footer-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.landing-page .footer-logo-img {
  height: 18px;
  width: auto;
  max-width: 56px;
  object-fit: contain;
  opacity: 0.9;
}
.landing-page .footer-logos .footer-logo-link .footer-logo-img {
  height: 24px;
  max-width: 80px;
}
.landing-page .footer-logo-link:hover .footer-logo-img,
.landing-page .footer-logo-img:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .landing-page .footer-logos { gap: 18px; margin-bottom: 18px; }
  .landing-page .footer-logos .footer-logo-img { height: 16px; max-width: 50px; }
  .landing-page .footer-logos .footer-logo-link .footer-logo-img { height: 20px; max-width: 64px; }
  .landing-page .footer-brand .footer-logo-img { height: 40px; max-width: none; }
}
@media (max-width: 480px) {
  .landing-page .footer-logos { gap: 14px; margin-bottom: 16px; }
  .landing-page .footer-logos .footer-logo-img { height: 14px; max-width: 42px; }
  .landing-page .footer-logos .footer-logo-link .footer-logo-img { height: 18px; max-width: 56px; }
  .landing-page .footer-brand .footer-logo-img { height: 40px; max-width: none; }
}
@media (max-width: 360px) {
  .landing-page .footer-logos { gap: 12px; }
  .landing-page .footer-logos .footer-logo-img { height: 13px; max-width: 38px; }
  .landing-page .footer-logos .footer-logo-link .footer-logo-img { height: 16px; max-width: 48px; }
}
.landing-page .footer-bottom {
  border-top: none;
  padding-top: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

@media (max-width: 768px) {
  .landing-page .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .landing-page .landing-main { padding-top: 88px; }
  .landing-page .footer-brand p { font-size: 13px; max-width: 100%; }
}
@media (max-width: 480px) {
  .landing-page .footer-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .landing-page .landing-main { padding-top: 80px; }
  .landing-page .footer-brand { text-align: center; }
  .landing-page .footer-brand p { margin-left: auto; margin-right: auto; }
  .landing-page .footer-social { justify-content: center; }
  .landing-page footer.landing-footer { padding: 40px 0 28px; }
  .landing-page .footer-bottom { font-size: 12px; padding: 0 8px; }
}
@media (max-width: 360px) {
  .landing-page footer.landing-footer { padding: 32px 0 24px; }
  .landing-page .footer-col h4 { font-size: 13px; margin-bottom: 12px; }
  .landing-page .footer-col a { font-size: 13px; }
}

/* ─── Landing Flash Messages ─────────────────────────────────── */
.landing-flash-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.landing-flash {
  padding: 12px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.landing-flash-ok {
  background: #1a3a2a;
  color: #2EBD85;
  border-bottom: 1px solid rgba(46, 189, 133, 0.2);
}
.landing-flash-fail {
  background: #3a1a1a;
  color: #F6465D;
  border-bottom: 1px solid rgba(246, 70, 93, 0.2);
}
