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

:root {
  --labbet-ink: #111827;
  --labbet-text: #1f2937;
  --labbet-muted: #6b7280;
  --labbet-soft: #9ca3af;
  --labbet-line: #e5e7eb;
  --labbet-line-soft: #eef0f3;
  --labbet-page: #ffffff;
  --labbet-paper: #ffffff;
  --labbet-faint: #f8fafc;
  --labbet-baby: #eef6ff;
  --labbet-baby-strong: #dbeafe;
  --labbet-baby-text: #2563eb;
  --labbet-dark: #111827;
  --labbet-success: #15803d;
  --labbet-warning: #b45309;
  --labbet-radius: 8px;
  --labbet-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--labbet-text);
  background: var(--labbet-page);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.labbet-public {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0, rgba(255, 255, 255, 0.95) 430px, #ffffff 650px),
    linear-gradient(135deg, #eaf6ff 0%, #dcefff 47%, #f8fbff 100%);
}

.labbet-nav-shell,
.labbet-nav-shell * ,
.labbet-footer-wrap,
.labbet-footer-wrap * {
  box-sizing: border-box;
}

.labbet-nav-shell {
  position: fixed;
  inset: 0 0 auto;
  z-index: 2000;
  height: 58px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
}

.labbet-nav {
  width: min(1420px, calc(100% - 44px));
  height: 58px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1fr 190px;
  align-items: center;
}

.labbet-brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--labbet-ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.labbet-brand img {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}

.labbet-brand-fallback {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #111827, #374151);
}

.labbet-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.labbet-nav-link,
.labbet-menu-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: rgba(31, 41, 55, 0.86);
  font: 600 14px/1 Inter, system-ui, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.labbet-nav-link:hover,
.labbet-nav-link.active,
.labbet-menu-button:hover,
.labbet-menu-button.is-open {
  color: #000;
}

.labbet-menu-button svg {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.labbet-menu-button.is-open svg {
  transform: rotate(180deg);
}

.labbet-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.labbet-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(17, 24, 39, 0.13);
  border-radius: var(--labbet-radius);
  padding: 0 13px;
  color: var(--labbet-ink);
  background: rgba(255, 255, 255, 0.62);
  font: 700 14px/1 Inter, system-ui, sans-serif;
  text-decoration: none;
}

.labbet-button:hover {
  background: #f3f4f6;
}

.labbet-button.primary {
  color: #fff;
  background: #111827;
  border-color: #111827;
}

.labbet-button.primary:hover {
  background: #374151;
}

.labbet-mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  justify-self: end;
  place-items: center;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--labbet-radius);
  background: rgba(255, 255, 255, 0.70);
  color: var(--labbet-ink);
  cursor: pointer;
}

.labbet-mobile-toggle svg {
  width: 20px;
  height: 20px;
}

.labbet-mega {
  position: fixed;
  top: 58px;
  left: 50%;
  z-index: 1990;
  width: min(880px, calc(100vw - 28px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-5px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.labbet-mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.labbet-mega-card {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 285px;
  gap: 12px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: var(--labbet-radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--labbet-shadow);
  padding: 12px;
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.labbet-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.labbet-mega-item {
  min-height: 74px;
  display: block;
  border-radius: var(--labbet-radius);
  padding: 13px;
  color: var(--labbet-ink);
  text-decoration: none;
}

.labbet-mega-item:hover {
  background: #f8fafc;
}

.labbet-mega-item strong,
.labbet-announcement strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.labbet-mega-item span,
.labbet-announcement span {
  display: block;
  margin-top: 5px;
  color: var(--labbet-muted);
  font-size: 13px;
  line-height: 1.35;
}

.labbet-announcement {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--labbet-radius);
  padding: 18px;
  overflow: hidden;
  color: var(--labbet-ink);
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.86)),
    linear-gradient(135deg, #eaf6ff 0%, #dbeafe 58%, #f8fbff 100%);
  border: 1px solid rgba(37, 99, 235, 0.10);
}

.labbet-mobile-menu {
  display: none;
}

.labbet-page-offset {
  padding-top: 58px;
}

.labbet-hero-band {
  min-height: 490px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 92px 20px 54px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.80), rgba(255,255,255,0.10) 120px, rgba(255,255,255,0.74) 100%),
    linear-gradient(135deg, #eaf6ff 0%, #dbeafe 40%, #f4fbff 100%);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.labbet-hero-band h1,
.labbet-hero-title {
  margin: 0;
  color: #0b1728;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.labbet-hero-band p,
.labbet-hero-text {
  max-width: 680px;
  margin: 20px auto 0;
  color: rgba(17, 24, 39, 0.66);
  font-size: 18px;
  line-height: 1.65;
}

.labbet-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 0;
}

.labbet-section.tight {
  padding-top: 48px;
}

.labbet-section-head {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.labbet-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--labbet-baby-text);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.labbet-section h2,
.labbet-section-title {
  margin: 0;
  color: var(--labbet-ink);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.labbet-section-lead {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--labbet-muted);
  font-size: 17px;
  line-height: 1.65;
}

.labbet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.labbet-partner-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.labbet-three-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.labbet-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--labbet-line);
  border-radius: var(--labbet-radius);
  padding: 22px;
  color: var(--labbet-ink);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.03);
}

.labbet-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
}

.labbet-card-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: var(--labbet-radius);
  color: var(--labbet-baby-text);
  background: var(--labbet-baby);
  border: 1px solid var(--labbet-baby-strong);
}

.labbet-card h3 {
  margin: 26px 0 10px;
  color: var(--labbet-ink);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
}

.labbet-card p {
  margin: 0;
  color: var(--labbet-muted);
  font-size: 15px;
  line-height: 1.55;
}

.labbet-card-link {
  margin-top: 22px;
  color: var(--labbet-baby-text);
  font-size: 14px;
  font-weight: 800;
}

.labbet-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.labbet-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 16px;
}

.labbet-product {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border: 1px solid var(--labbet-line);
  border-radius: var(--labbet-radius);
  padding: 24px;
  color: var(--labbet-ink);
  background: #fff;
  text-decoration: none;
}

.labbet-product h3 {
  margin: 18px 0 10px;
  color: var(--labbet-ink);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.labbet-product p {
  margin: 0;
  color: var(--labbet-muted);
  font-size: 15px;
  line-height: 1.58;
}

.labbet-product.featured {
  border-color: #111827;
}

.labbet-price {
  margin: 18px 0 8px;
  color: var(--labbet-ink);
  font-size: 42px;
  font-weight: 800;
}

.labbet-price small {
  color: var(--labbet-muted);
  font-size: 14px;
  font-weight: 600;
}

.labbet-feature-list {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
  color: var(--labbet-muted);
  font-size: 14px;
  line-height: 1.45;
}

.labbet-feature-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--labbet-baby-text);
  vertical-align: 1px;
}

.labbet-logo-strip {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  border-block: 1px solid var(--labbet-line-soft);
  background: #fbfdff;
}

.labbet-logo-track {
  display: flex;
  width: max-content;
  animation: labbetMarquee 28s linear infinite;
}

.labbet-logo-item {
  min-width: 220px;
  height: 116px;
  display: grid;
  place-items: center;
  color: rgba(17, 24, 39, 0.44);
  font-size: 25px;
  font-weight: 800;
}

@keyframes labbetMarquee {
  to { transform: translateX(-50%); }
}

.labbet-faq {
  width: min(720px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.labbet-faq-item {
  border: 1px solid var(--labbet-line);
  border-radius: var(--labbet-radius);
  background: #fff;
  overflow: hidden;
}

.labbet-faq-button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  color: var(--labbet-ink);
  font: 800 16px/1.25 Inter, system-ui, sans-serif;
  text-align: left;
  cursor: pointer;
}

.labbet-faq-content {
  display: none;
  padding: 0 18px 18px;
  color: var(--labbet-muted);
  font-size: 15px;
  line-height: 1.62;
}

.labbet-faq-item.is-open .labbet-faq-content {
  display: block;
}

.labbet-blog-list {
  display: grid;
  gap: 16px;
}

.labbet-post-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 22px;
  align-items: stretch;
  border: 1px solid var(--labbet-line);
  border-radius: var(--labbet-radius);
  padding: 18px;
  color: var(--labbet-ink);
  background: #fff;
  text-decoration: none;
}

.labbet-post-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.08);
}

.labbet-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--labbet-muted);
  font-size: 13px;
}

.labbet-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  border: 1px solid var(--labbet-baby-strong);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--labbet-baby-text);
  background: var(--labbet-baby);
  font-size: 12px;
  font-weight: 800;
}

.labbet-post-card h2,
.labbet-post-title {
  margin: 12px 0 10px;
  color: var(--labbet-ink);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 800;
}

.labbet-post-card p {
  margin: 0;
  color: var(--labbet-muted);
  line-height: 1.62;
}

.labbet-post-thumb {
  min-height: 150px;
  border-radius: var(--labbet-radius);
  overflow: hidden;
  background: linear-gradient(135deg, #eaf6ff, #dbeafe);
}

.labbet-post-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.labbet-article {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 0;
}

.labbet-article-header {
  text-align: center;
  margin-bottom: 34px;
}

.labbet-article-content {
  color: #374151;
  font-size: 18px;
  line-height: 1.78;
}

.labbet-article-content p {
  margin: 0 0 24px;
}

.labbet-article-content h2,
.labbet-article-content h3,
.labbet-article-content h4 {
  color: var(--labbet-ink);
  line-height: 1.18;
}

.labbet-article-content img {
  max-width: 100%;
  border-radius: var(--labbet-radius);
}

.labbet-footer-wrap {
  width: 100vw;
  margin-left: 50%;
  margin-top: 82px;
  padding: 54px 22px 60px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.44), rgba(255,255,255,0.16)),
    linear-gradient(135deg, #eaf7ff 0%, #dcefff 52%, #f4fbff 100%);
}

.labbet-footer {
  width: min(1120px, 100%);
  min-height: 270px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px repeat(4, minmax(0, 1fr));
  gap: 28px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--labbet-radius);
  background: rgba(255, 255, 255, 0.86);
  padding: 34px 38px;
  box-shadow: var(--labbet-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.labbet-footer-brand {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.labbet-footer-brand img {
  width: 120px;
  max-height: 52px;
  height: auto;
  object-fit: contain;
}

.labbet-footer-brand small {
  color: var(--labbet-muted);
  font-weight: 600;
  line-height: 1.5;
}

.labbet-footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.labbet-footer-column h3 {
  margin: 0 0 2px;
  color: rgba(17, 24, 39, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.labbet-footer-column a {
  width: fit-content;
  color: rgba(17, 24, 39, 0.88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.labbet-footer-column a:hover {
  color: var(--labbet-baby-text);
}

.labbet-empty {
  border: 1px dashed var(--labbet-line);
  border-radius: var(--labbet-radius);
  padding: 42px 24px;
  text-align: center;
  color: var(--labbet-muted);
  background: #fff;
}

.notice {
  border-radius: var(--labbet-radius);
  padding: 12px 14px;
  color: var(--labbet-muted);
  background: #f8fafc;
  border: 1px solid var(--labbet-line);
  font-size: 14px;
}

.notice.success {
  color: var(--labbet-success);
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.notice.error {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

@media (max-width: 1080px) {
  .labbet-grid,
  .labbet-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .labbet-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .labbet-footer-brand {
    grid-column: 1 / -1;
    min-height: auto;
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 980px) {
  .labbet-nav-shell,
  .labbet-nav {
    height: 64px;
  }

  .labbet-nav {
    width: min(100%, calc(100% - 28px));
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .labbet-links,
  .labbet-actions,
  .labbet-mega {
    display: none;
  }

  .labbet-mobile-toggle {
    display: grid;
  }

  .labbet-mobile-menu {
    position: fixed;
    top: 76px;
    left: 14px;
    right: 14px;
    z-index: 1980;
    display: block;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: var(--labbet-radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--labbet-shadow);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .labbet-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .labbet-mobile-group {
    display: grid;
    gap: 4px;
    margin-bottom: 8px;
    padding: 8px;
    border: 1px solid var(--labbet-line-soft);
    border-radius: var(--labbet-radius);
    background: #f8fafc;
  }

  .labbet-mobile-group strong {
    padding: 7px 8px 4px;
    color: var(--labbet-muted);
    font-size: 12px;
    text-transform: uppercase;
  }

  .labbet-mobile-group a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: var(--labbet-radius);
    padding: 10px 11px;
    color: var(--labbet-ink);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
  }

  .labbet-mobile-group a:hover {
    background: #fff;
  }

  .labbet-page-offset {
    padding-top: 64px;
  }
}

@media (max-width: 680px) {
  .labbet-grid,
  .labbet-partner-grid,
  .labbet-three-grid,
  .labbet-product-grid,
  .labbet-contact-grid,
  .labbet-footer,
  .labbet-post-card {
    grid-template-columns: 1fr;
  }

  .labbet-section {
    width: min(100%, calc(100% - 22px));
    padding-top: 58px;
  }

  .labbet-hero-band {
    min-height: 390px;
    padding-top: 78px;
  }

  .labbet-hero-band h1,
  .labbet-hero-title {
    font-size: 38px;
  }

  .labbet-footer {
    padding: 26px;
  }
}
