* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: #F5F5F7;
  color: #1D1D1F;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

input,
button {
  font-family: inherit;
}

::selection {
  background: rgba(255, 138, 0, 0.2);
}

.site-shell {
  min-height: 100vh;
  background: #F5F5F7;
  overflow-x: hidden;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 245, 247, 0.72);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.site-nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.site-nav__logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(140deg, #FF9F0A, #FF7A00 55%, #12B6BD);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(255, 138, 0, 0.32);
}

.site-nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.site-nav__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-nav__phone {
  font-size: 12px;
  color: #11B5BC;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: flex-end;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14.5px;
  font-weight: 500;
  color: #424245;
}

.site-nav__links a {
  white-space: nowrap;
}

.site-nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 980px;
  background: linear-gradient(135deg, #FF9F0A, #FF7A00);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(255, 138, 0, 0.32);
  white-space: nowrap;
  flex-shrink: 0;
}

.site-nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.site-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #1D1D1F;
  border-radius: 2px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: transparent;
  border: none;
  font: inherit;
  color: inherit;
  padding: 0;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(20, 30, 50, 0.14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  transform: translateX(-50%) translateY(6px);
  z-index: 120;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__item {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  color: #424245;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown__item:hover,
.nav-dropdown__item.is-active {
  background: rgba(255, 138, 0, 0.08);
  color: #FF8A00;
}

.nav-dropdown__item--muted {
  color: #A1A1A6;
  cursor: default;
}

.nav-dropdown__divider {
  display: block;
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 6px 8px;
}

.site-footer {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: 48px;
}

.site-footer__grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 28px 0;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.site-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(140deg, #FF9F0A, #FF7A00 55%, #12B6BD);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.site-footer__domain {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer__domain span {
  color: #11B5BC;
}

.site-footer__tagline {
  font-size: 12.5px;
  color: #86868B;
  margin-top: 2px;
}

.site-footer__intro {
  font-size: 14px;
  color: #6E6E73;
  line-height: 1.6;
  margin-top: 18px;
  max-width: 330px;
}

.site-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.site-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #F0F0F2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__heading {
  font-size: 13px;
  font-weight: 700;
  color: #1D1D1F;
  margin-bottom: 16px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 14px;
}

.site-footer__links a {
  color: #6E6E73;
  text-decoration: none;
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #6E6E73;
}

.site-footer__contact span {
  color: #11B5BC;
  font-weight: 600;
}

.site-footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 20px;
  border-radius: 980px;
  background: linear-gradient(135deg, #FF9F0A, #FF7A00);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(255, 138, 0, 0.3);
}

.site-footer__notice-wrap {
  max-width: 1240px;
  margin: 48px auto 0;
  padding: 0 28px;
}

.site-footer__notice {
  background: #F5F5F7;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  padding: 22px 28px;
  text-align: center;
}

.site-footer__notice p {
  font-size: 14px;
  line-height: 1.6;
  color: #6E6E73;
}

.site-footer__bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: 36px;
  font-size: 13.5px;
  color: #86868B;
}

.site-footer__legal {
  display: flex;
  gap: 24px;
  font-size: 13.5px;
}

.site-footer__legal a {
  color: #6E6E73;
  text-decoration: none;
}

.site-footer__disclaimer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px 28px;
}

.site-footer__disclaimer p {
  font-size: 12.5px;
  line-height: 1.6;
  color: #A1A1A6;
}

.site-footer__credit {
  background: #F5F5F7;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.site-footer__credit > div {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13.5px;
  color: #86868B;
}

.site-footer__credit span:first-of-type {
  font-weight: 600;
  color: #11B5BC;
}

.site-footer__credit .heart {
  color: #FF8A00;
}

.hb-hover-btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.hb-hover-link:hover {
  color: #FF8A00 !important;
}

.hb-hover-social:hover {
  background: #e8e8ea !important;
}

.hb-hover-card-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
}

.hb-hover-card-lift-soft:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.hb-hover-muted-link:hover {
  color: #FF8A00 !important;
}

.hb-hover-white-cta:hover {
  transform: translateY(-1px);
}

.hb-hover-white-secondary:hover {
  background: #fafafa !important;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-nav__links {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .site-nav__toggle {
    display: flex;
  }

  .site-nav__menu {
    position: fixed;
    inset: 72px 16px auto;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: saturate(180%) blur(22px);
    -webkit-backdrop-filter: saturate(180%) blur(22px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(20, 30, 50, 0.18);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  .site-nav.is-open .site-nav__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .site-nav__cta {
    justify-content: center;
  }

  .nav-dropdown__menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: #F5F5F7;
    margin-top: 8px;
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: block;
  }
}

@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
