.navbar {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, calc(100% - 40px));
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(226, 232, 240, 0.18);
  background: rgba(6, 14, 25, 0.22);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(2, 8, 23, 0.12);
  transition: background 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
  overflow: hidden;
  isolation: isolate;
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 72%);
  opacity: 0.58;
  transition: opacity 0.3s ease;
}

.navbar.navbar-solid {
  border-color: rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.navbar.navbar-solid::before {
  opacity: 0.24;
}

.navbar .brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: #f8fafc;
  text-decoration: none;
  white-space: nowrap;
}

.navbar.navbar-solid .brand {
  color: #0f172a;
}

.navbar .brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ffffff, #e9eff8);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08), 0 12px 28px rgba(21, 93, 252, 0.18);
  position: relative;
  overflow: hidden;
}

.navbar .brand-icon::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 4px solid #155dfc;
  border-right-color: #00b8d9;
  border-radius: 50%;
  animation: rotate 4s linear infinite;
}

.navbar .brand-icon::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff7a1a;
  z-index: 1;
  box-shadow: 0 0 18px rgba(255, 122, 26, 0.75);
}

.navbar .menu {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 0;
  background: transparent;
  border: none;
}

.navbar .menu a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(226, 232, 240, 0.88);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
  white-space: nowrap;
}

.navbar .menu a:hover,
.navbar .menu a.active {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(2, 8, 23, 0.2);
}

.navbar.navbar-solid .menu a {
  color: #475569;
}

.navbar.navbar-solid .menu a:hover,
.navbar.navbar-solid .menu a.active {
  background: #fff;
  color: #155dfc;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(226, 232, 240, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.2);
  transition: all 0.25s ease;
}

.navbar .social-links a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(226, 232, 240, 0.32);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(2, 8, 23, 0.24);
}

.navbar.navbar-solid .social-links a {
  background: rgba(246, 248, 251, 0.8);
  color: #64748b;
  border-color: transparent;
}

.navbar.navbar-solid .social-links a:hover {
  background: #fff;
  color: #155dfc;
  border-color: rgba(21, 93, 252, 0.2);
  box-shadow: 0 8px 24px rgba(21, 93, 252, 0.12);
}

.navbar .social-links svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.navbar .nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #0f6fdf);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.3);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
}

.navbar .nav-action:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #1d4ed8, #0b63c7);
  box-shadow: 0 14px 30px rgba(29, 78, 216, 0.34);
}

.navbar-white,
.navbar-white.navbar-solid {
  border-color: rgba(226, 232, 240, 0.86);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.12);
}

.navbar-white::before,
.navbar-white.navbar-solid::before {
  opacity: 0.24;
}

.navbar-white .brand,
.navbar-white.navbar-solid .brand {
  color: #0f172a;
}

.navbar-white .menu a,
.navbar-white.navbar-solid .menu a {
  color: #475569;
}

.navbar-white .menu a:hover,
.navbar-white .menu a.active,
.navbar-white.navbar-solid .menu a:hover,
.navbar-white.navbar-solid .menu a.active {
  background: #fff;
  color: #155dfc;
}

.navbar-white .social-links a,
.navbar-white.navbar-solid .social-links a {
  background: rgba(246, 248, 251, 0.88);
  color: #64748b;
  border-color: transparent;
}

.navbar-white .social-links a:hover,
.navbar-white.navbar-solid .social-links a:hover {
  background: #fff;
  color: #155dfc;
}

.navbar .nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(226, 232, 240, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  transition: 0.25s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.navbar .nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.navbar .nav-toggle:hover {
  transform: translateY(-1px);
}

.navbar-white .nav-toggle {
  color: #0b1220;
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.52);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.navbar:not(.navbar-white) .nav-toggle {
  color: #f8fafc;
  border-color: rgba(248, 250, 252, 0.44);
  background: rgba(15, 23, 42, 0.3);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.28);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.28s ease;
  z-index: 220;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100vh;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  border-left: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: -16px 0 34px rgba(2, 8, 23, 0.14);
  transform: translateX(100%);
  transition: transform 0.26s ease;
  z-index: 230;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 24px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.mobile-nav-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.mobile-nav-links a {
  padding: 9px 6px;
  border-radius: 0;
  color: #1e293b;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  background: transparent;
  border: none;
  transition: color 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-links a.active {
  color: #2563eb;
  background: transparent;
  font-weight: 600;
}

.mobile-nav-links a:hover {
  color: #1d4ed8;
  background: transparent;
}

.mobile-nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.mobile-nav-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #334155;
  background: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.95);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-social a:hover {
  color: #155dfc;
  background: #ffffff;
}

.mobile-nav-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-nav-social svg polygon {
  fill: currentColor;
  stroke: none;
}

.mobile-nav-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #2563eb, #0f6fdf);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.28);
  transition: background 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-cta:hover {
  background: linear-gradient(135deg, #1d4ed8, #0b63c7);
}

html.mobile-nav-open,
body.mobile-nav-open {
  overflow: hidden;
}

html.mobile-nav-open .mobile-nav-overlay,
body.mobile-nav-open .mobile-nav-overlay {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

html.mobile-nav-open .mobile-nav-drawer,
body.mobile-nav-open .mobile-nav-drawer {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 28% 30%, #3df084, #25d366 64%, #159c46 100%);
  color: #fff;
  border: 3px solid rgba(255, 255, 255, 0.94);
  box-shadow:
    0 20px 40px rgba(37, 211, 102, 0.45),
    0 0 0 1px rgba(3, 105, 41, 0.22);
  z-index: 170;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 24px 44px rgba(37, 211, 102, 0.52);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.breadcrumb-nav {
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.breadcrumb-nav ol {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 8px 12px;
  list-style: none;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(14px);
}

.breadcrumb-nav li {
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.breadcrumb-nav li + li::before {
  content: "›";
  color: #94a3b8;
  font-weight: 900;
  line-height: 1;
}

.breadcrumb-nav a {
  color: #155dfc;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.breadcrumb-nav a:hover {
  color: #0f172a;
  transform: translateY(-1px);
}

.breadcrumb-nav span {
  color: #0f172a;
  max-width: 68ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .navbar {
    top: 14px;
    width: calc(100% - 24px);
    border-radius: 18px;
    padding: 10px 12px;
  }

  .navbar .menu,
  .navbar .nav-right {
    display: none;
  }

  .navbar .nav-toggle {
    display: inline-flex;
  }

  .navbar .brand {
    font-size: 15px;
  }
}

@media (max-width: 680px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 62px;
    height: 62px;
  }

  .breadcrumb-nav {
    width: 1px;
    height: 1px;
  }

  .breadcrumb-nav ol {
    padding: 7px 10px;
    border-radius: 16px;
    font-size: 11px;
  }

  .breadcrumb-nav span {
    max-width: 46vw;
  }
}

footer.site-footer,
.site-footer,
footer.footer,
.footer,
.site > footer {
  margin: 0 !important;
  padding: 0 !important;
  border-top: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

footer.site-footer .footer-inner,
.site-footer .footer-inner,
footer.footer .footer-inner,
.footer .footer-inner,
.site > footer .footer-inner {
  width: min(1200px, calc(100% - 32px)) !important;
  min-height: 92px !important;
  margin: 0 auto !important;
  padding: 10px 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  color: #475569 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  text-align: center !important;
  border: 0 !important;
}

.content-guide {
  width: 100%;
  margin: 0;
  padding: 42px 0;
}

.content-guide-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 36px;
  padding: clamp(24px, 4vw, 42px);
  background:
    radial-gradient(circle at 8% 12%, rgba(21, 93, 252, 0.10), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(0, 184, 217, 0.10), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.92));
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.container > .content-guide {
  padding: 34px 0;
}

.container > .content-guide .content-guide-inner {
  width: 100%;
}

.content-guide-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(120deg, black, transparent 68%);
  opacity: 0.62;
}

.content-guide-inner > * {
  position: relative;
  z-index: 1;
}

.content-guide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #155dfc;
  background: #eef5ff;
  border: 1px solid #dbeafe;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-guide-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff7a1a;
  box-shadow: 0 0 0 6px rgba(255, 122, 26, 0.12);
}

.content-guide h2 {
  max-width: 820px;
  margin: 0 0 14px;
  color: #0f172a;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.content-guide p {
  max-width: 920px;
  margin: 0 0 18px;
  color: #475569;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.78;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.guide-card {
  position: relative;
  min-height: 158px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.guide-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #155dfc, #00b8d9);
}

.guide-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 93, 252, 0.22);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.11);
}

.guide-card h3 {
  margin: 0 0 9px;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.guide-card p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.68;
}

.guide-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.guide-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 15px;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.guide-links a:first-child {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #155dfc, #00b8d9);
}

.guide-links a:hover {
  transform: translateY(-2px);
  color: #155dfc;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.guide-links a:first-child:hover {
  color: #ffffff;
}

@media (max-width: 980px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  img,
  svg,
  video,
  canvas,
  iframe {
    max-width: 100%;
  }

  main,
  section,
  .site,
  .container,
  .hero,
  .article,
  .article-content,
  .section,
  .products,
  .blog-grid,
  .contact-grid,
  .services-grid,
  .feature-grid,
  .process-grid,
  .quality-grid,
  .industries-grid,
  .stats,
  .bottom-cta,
  .cta {
    min-width: 0 !important;
  }

  h1 {
    font-size: clamp(34px, 11vw, 48px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.045em !important;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(25px, 8vw, 36px) !important;
    line-height: 1.12 !important;
    overflow-wrap: anywhere;
  }

  p,
  li,
  .lead {
    overflow-wrap: anywhere;
  }

  .container {
    width: min(100% - 28px, 1200px) !important;
  }

  .content-guide {
    padding: 28px 0;
  }

  .content-guide-inner {
    width: min(100% - 28px, 1200px);
    border-radius: 26px;
    padding: 22px;
  }

  .container > .content-guide .content-guide-inner {
    width: 100%;
  }

  .bottom-cta,
  .cta,
  .toolbar,
  .section-head,
  .post-footer,
  .article-meta,
  .actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .btn,
  .nav-action,
  .product-quote {
    width: 100%;
    text-align: center;
  }
}

.footer-inner {
  text-align: center;
}

@media (max-width: 760px) {
  footer.site-footer .footer-inner,
  .site-footer .footer-inner,
  .footer .footer-inner {
    min-height: 0;
    font-size: 12px;
    line-height: 1.5;
    padding: 10px 0 12px;
  }

  .footer-inner {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
