@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap");

:root {
  --page-bg: #f6f7fb;
  --text: #0f172a;
  --muted: #374151;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(1200px circle at 15% 20%, rgba(96, 165, 250, 0.18), transparent),
    radial-gradient(900px circle at 80% 10%, rgba(37, 99, 235, 0.12), transparent), var(--page-bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  z-index: 5;
  pointer-events: none;
}

.page {
  max-width: 1220px;
  margin: 0 auto;
  padding: 22px 22px 64px;
}

@media (max-width: 1150px) {
  .page {
    max-width: none;
    width: 100%;
    padding: 12px 0 48px;
  }
}

.page-shell {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

main {
  margin-top: 6px;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  margin: 0;
}

a {
  transition: color 0.2s ease;
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}


  .topbar.svelte-1h259us {
    position: sticky;
    top: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid #e4e9f2;
    backdrop-filter: blur(10px);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }

  .brand.svelte-1h259us {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    color: #111827;
  }

  .brand.svelte-1h259us:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 4px;
  }

  .brand-mark.svelte-1h259us {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: transparent;
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  .brand-mark.svelte-1h259us img:where(.svelte-1h259us) {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .brand-name.svelte-1h259us {
    font-weight: 800;
    letter-spacing: 0.02em;
  }

  .brand-tagline.svelte-1h259us {
    color: #6b7280;
    font-size: 12px;
  }

  .nav-links.svelte-1h259us {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    position: relative;
  }

  .nav-links.svelte-1h259us a:where(.svelte-1h259us) {
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    color: #4b5563;
    font-weight: 600;
    transition: 0.2s ease;
    text-decoration: none;
  }

  .nav-links.svelte-1h259us a:where(.svelte-1h259us):hover {
    color: #111827;
    background: #f3f4f6;
  }

  .nav-links.svelte-1h259us a.selected:where(.svelte-1h259us) {
    color: #0f172a;
    border-color: #e5e7eb;
    background: #eef2ff;
  }

  .nav-links.svelte-1h259us > div:where(.svelte-1h259us) {
    display: flex;
    gap: 10px;
  }

  .lang-switch.svelte-1h259us {
    display: flex;
    gap: 8px;
  }

  .lang-switch.svelte-1h259us button:where(.svelte-1h259us) {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
    min-width: 46px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    gap: 8px;
  }

  .lang-switch.svelte-1h259us button.selected:where(.svelte-1h259us) {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #f8fafc;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
  }

  .hamburger.svelte-1h259us {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
  }

  .hamburger.svelte-1h259us span:where(.svelte-1h259us) {
    display: block;
    width: 100%;
    height: 2px;
    background: #111827;
    transition: 0.2s ease;
  }

  .hamburger.open.svelte-1h259us span:where(.svelte-1h259us):nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .hamburger.open.svelte-1h259us span:where(.svelte-1h259us):nth-child(2) {
    opacity: 0;
  }

  .hamburger.open.svelte-1h259us span:where(.svelte-1h259us):nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .menu-overlay.svelte-1h259us {
    position: fixed;
    inset: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 6;
  }

  .lang-switch.svelte-1h259us button:where(.svelte-1h259us):hover:not(.selected) {
    background: #f9fafb;
  }

  @media (max-width: 900px) {
    .topbar.svelte-1h259us {
      grid-template-columns: auto 1fr auto;
      text-align: left;
      gap: 12px;
      position: relative;
      z-index: 6;
    }

    .brand.svelte-1h259us {
      justify-content: flex-start;
    }

    .nav-links.svelte-1h259us {
      justify-content: flex-start;
    }

    .nav-links.svelte-1h259us > div:where(.svelte-1h259us) {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding: 12px;
      border: 1px solid #e5e7eb;
      background: #fff;
      border-radius: 12px;
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      right: 0;
      box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
      z-index: 7;
      opacity: 0;
      transform: translateY(-8px);
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .nav-links.svelte-1h259us > div.open:where(.svelte-1h259us) {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }

    .lang-switch.svelte-1h259us {
      display: none;
    }

    .hamburger.svelte-1h259us {
      display: inline-flex;
      justify-self: end;
    }
  }


  .hero.svelte-7sbq87 {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 26px;
    overflow: hidden;
    min-height: 360px;
    display: grid;
    align-items: end;
    padding: 32px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  }

  .hero.svelte-7sbq87::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at 20% 30%, rgba(96, 165, 250, 0.35), transparent);
    pointer-events: none;
  }

  .hero-content.svelte-7sbq87 {
    position: relative;
    max-width: 680px;
    z-index: 1;
    color: #f8fafc;
  }

  .eyebrow.svelte-7sbq87 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: #c7d2fe;
    margin: 0 0 6px;
    font-weight: 800;
  }

  h1.svelte-7sbq87 {
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.2;
    color: #f8fafc;
    text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  }

  .lead.svelte-7sbq87 {
    margin: 0;
    color: #e9edf5;
    font-size: 16px;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  }

  .hero-actions.svelte-7sbq87 {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
  }

  button.primary.svelte-7sbq87,
  button.ghost.svelte-7sbq87 {
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.2s ease;
  }

  button.primary.svelte-7sbq87 {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #f8fafc;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
  }

  button.primary.svelte-7sbq87:hover {
    transform: translateY(-1px);
  }

  button.ghost.svelte-7sbq87 {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: #f8fafc;
  }

  button.ghost.svelte-7sbq87:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  @media (max-width: 900px) {
    .hero.svelte-7sbq87 {
      padding: 22px;
      min-height: 320px;
    }
  }


  .card-grid.svelte-13saiya {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
  }

  .card.svelte-13saiya {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .card.svelte-13saiya:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(15, 23, 42, 0.1);
  }

  .card-dot.svelte-13saiya {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    margin-bottom: 12px;
  }

  h3.svelte-13saiya {
    margin: 0 0 8px;
    color: #0f172a;
  }

  p.svelte-13saiya {
    margin: 0;
    color: #4b5563;
  }


  .panel.svelte-bblpi7 {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
  }

  .panel-header.svelte-bblpi7 h2:where(.svelte-bblpi7) {
    margin: 4px 0 8px;
    font-size: 22px;
    color: #0f172a;
  }

  .panel-text.svelte-bblpi7 {
    margin: 8px 0 0;
    color: #4b5563;
  }

  .eyebrow.svelte-bblpi7 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: #2563eb;
    margin: 0;
    font-weight: 800;
  }


  .pillars.svelte-344rjl {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pill.svelte-344rjl {
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    font-weight: 700;
    color: #0f172a;
  }


  .section-stack.svelte-srqxov {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
  }

  .panel.svelte-srqxov {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  }

  h3.svelte-srqxov {
    margin: 6px 0 10px;
    color: #0f172a;
  }

  .panel-text.svelte-srqxov {
    margin: 0 0 10px;
    color: #4b5563;
  }

  .bullet-list.svelte-srqxov {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #4b5563;
  }

  .bullet-list.svelte-srqxov li:where(.svelte-srqxov) {
    padding-left: 18px;
    position: relative;
    margin-bottom: 8px;
  }

  .bullet-list.svelte-srqxov li:where(.svelte-srqxov)::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 0;
    top: 8px;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
  }

  .eyebrow.svelte-srqxov {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: #2563eb;
    margin: 0;
    font-weight: 800;
  }


  .panel.svelte-1g37sn2 {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
  }

  .panel-header.svelte-1g37sn2 h2:where(.svelte-1g37sn2) {
    margin: 4px 0 8px;
    font-size: 22px;
    color: #0f172a;
  }

  .panel-header.svelte-1g37sn2 .eyebrow:where(.svelte-1g37sn2) {
    margin: 0;
  }

  .gallery-grid.svelte-1g37sn2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 10px;
  }

  .gallery-card.svelte-1g37sn2 {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
  }

  .gallery-card.svelte-1g37sn2 img:where(.svelte-1g37sn2) {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #e5e7eb;
  }

  .gallery-card.svelte-1g37sn2 figcaption:where(.svelte-1g37sn2) {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #0f172a;
  }

  .gallery-card.svelte-1g37sn2 span:where(.svelte-1g37sn2) {
    color: #4b5563;
    font-size: 14px;
  }

  .eyebrow.svelte-1g37sn2 {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: #2563eb;
    font-weight: 800;
  }


  .stats.svelte-e2lbya {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  }

  .stats-grid.svelte-e2lbya {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
  }

  .stat-card.svelte-e2lbya {
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
    border: 1px solid #e0e7ff;
    border-radius: 14px;
    padding: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  .stat-value.svelte-e2lbya {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
  }

  .stat-label.svelte-e2lbya {
    color: #4b5563;
  }

  .eyebrow.svelte-e2lbya {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: #2563eb;
    margin: 0 0 8px;
    font-weight: 800;
  }


  .quote.svelte-1r41tsb {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(96, 165, 250, 0.05));
    color: #0f172a;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  }

  p.svelte-1r41tsb {
    margin: 0;
  }


  .cta.svelte-1lhq85f {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 18px;
    align-items: start;
    padding: 26px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    background: linear-gradient(145deg, #ffffff, #f3f6ff);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.07);
    position: relative;
    overflow: hidden;
  }

  .cta-grid.svelte-1lhq85f {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    width: 100%;
  }

  .cta-info.svelte-1lhq85f {
    display: grid;
    gap: 16px;
    align-content: start;
    position: relative;
    z-index: 1;
  }

  .cta-head.svelte-1lhq85f p:where(.svelte-1lhq85f) {
    margin: 0;
    color: #4b5563;
    text-align: left;
  }

  .cta-head.svelte-1lhq85f {
    text-align: left;
  }

  .cta-info.svelte-1lhq85f {
    justify-self: center;
    max-width: 560px;
  }

  .cta-detail.svelte-1lhq85f {
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
  }

  .cta-detail.link.svelte-1lhq85f {
    color: #2563eb;
  }

  .panel-text.svelte-1lhq85f {
    margin: 8px 0 0;
    color: #4b5563;
    line-height: 1.6;
  }

  .eyebrow.svelte-1lhq85f {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: #2563eb;
    margin: 0 0 6px;
    font-weight: 800;
  }

  .cta-card.svelte-1lhq85f {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    height: 100%;
  }

  h3.svelte-1lhq85f {
    margin: 4px 0 6px;
    color: #0f172a;
  }

  .contact-form.svelte-1lhq85f {
    display: grid;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
    position: relative;
    z-index: 1;
  }

  .contact-form.svelte-1lhq85f label:where(.svelte-1lhq85f) {
    display: grid;
    gap: 6px;
    color: #0f172a;
    font-weight: 700;
    font-size: 14px;
  }

  .contact-form.svelte-1lhq85f input:where(.svelte-1lhq85f),
  .contact-form.svelte-1lhq85f textarea:where(.svelte-1lhq85f) {
    width: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    font-family: inherit;
    font-size: 14px;
    background: #f8fafc;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .contact-form.svelte-1lhq85f input:where(.svelte-1lhq85f):focus,
  .contact-form.svelte-1lhq85f textarea:where(.svelte-1lhq85f):focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  }

  .contact-form.svelte-1lhq85f button:where(.svelte-1lhq85f) {
    padding: 12px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #60a5fa);
    color: #f8fafc;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
    justify-self: start;
  }

  .contact-form.svelte-1lhq85f button:where(.svelte-1lhq85f):hover {
    transform: translateY(-1px);
  }

  .cta.svelte-1lhq85f::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at -10% 20%, rgba(96, 165, 250, 0.12), transparent),
      radial-gradient(480px circle at 110% 80%, rgba(37, 99, 235, 0.08), transparent);
    pointer-events: none;
    z-index: 0;
  }

  @media (max-width: 1150px) {
    .cta.svelte-1lhq85f {
      grid-template-columns: 1fr;
      padding: 20px;
    }

    .cta-head.svelte-1lhq85f,
    .cta-head.svelte-1lhq85f p:where(.svelte-1lhq85f) {
      text-align: center;
    }

    .cta-info.svelte-1lhq85f {
      justify-items: center;
      text-align: center;
    }

    .cta-grid.svelte-1lhq85f {
      justify-items: center;
    }
  }

  @media (max-width: 900px) {
    .cta.svelte-1lhq85f {
      grid-template-columns: 1fr;
    }
  }


  .footer.svelte-1hb6xao {
    margin-top: 32px;
    padding: 22px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f4f6fb);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    align-items: start;
    gap: 18px;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  }

  .footer-col.svelte-1hb6xao {
    display: grid;
    gap: 10px;
  }

  .footer-brand.svelte-1hb6xao {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
  }

  .brand-mark.svelte-1hb6xao {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: transparent;
    display: grid;
    place-items: center;
    overflow: hidden;
  }

  .brand-mark.svelte-1hb6xao img:where(.svelte-1hb6xao) {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .brand-name.svelte-1hb6xao {
    font-weight: 800;
  }

  .brand-tagline.svelte-1hb6xao {
    color: #6b7280;
    font-size: 12px;
  }

  .foot-note.svelte-1hb6xao {
    color: #1f2937;
    margin: 0;
  }

  .col-title.svelte-1hb6xao {
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.01em;
  }

  .footer-links.svelte-1hb6xao {
    display: grid;
    gap: 8px;
  }

  .footer.svelte-1hb6xao a:where(.svelte-1hb6xao) {
    color: #4b5563;
  }

  .footer.svelte-1hb6xao a:where(.svelte-1hb6xao):hover {
    color: #111827;
  }

  .footer-contact.svelte-1hb6xao {
    display: grid;
    gap: 6px;
    color: #4b5563;
  }

  @media (max-width: 900px) {
    .footer.svelte-1hb6xao {
      text-align: center;
    }

    .footer-brand.svelte-1hb6xao {
      justify-content: center;
    }

    .footer-contact.svelte-1hb6xao {
      align-items: center;
    }
  }

