/* Shared public navigation, footer and live callback controls. */
:root {
  --site-white: #fff;
  --site-ink: #10261b;
  --site-muted: #657269;
  --site-ivory: #faf8f3;
  --site-line: #e2e6df;
  --site-green: #22c55e;
  --site-forest: #123b2a;
  --site-action-wash: #eff8ee;
  --site-brand-gradient: linear-gradient(120deg, #22c55e, #123b2a);
}
.site-header.concept-nav {
  position: relative;
  inset: auto;
  transform: none;
  width: min(1220px, calc(100% - 80px));
  height: 84px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #ffffffed;
  border: 0;
  box-shadow: none;
  z-index: 40;
  padding: 0;
}
.concept-nav .brand {
  flex-shrink: 0;
}
.concept-nav .brand-wordmark {
  width: 164px;
  height: auto;
}
.concept-nav .desktop-nav {
  display: flex;
  align-items: center;
  gap: 21px;
  font-size: 12px;
  margin-left: auto;
}
.concept-nav summary {
  cursor: pointer;
  list-style: none;
}
.concept-nav summary::-webkit-details-marker {
  display: none;
}
.nav-menu {
  position: relative;
}
.nav-menu summary > span {
  margin-left: 4px;
}
.nav-dropdown {
  position: absolute;
  left: -18px;
  top: 32px;
  width: 290px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--site-line);
  border-radius: 14px;
  box-shadow: 0 12px 30px #14352612;
}
.nav-dropdown > a {
  display: block;
  padding: 11px;
  border-radius: 8px;
}
.nav-dropdown > a:hover {
  background: var(--site-ivory);
}
.nav-dropdown b {
  display: block;
  font-size: 13px;
  font-weight: 500;
}
.nav-dropdown small {
  display: block;
  font-size: 12px;
  color: var(--site-muted);
  margin-top: 4px;
  line-height: 1.6;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 12px;
}
.header-cta,
.mobile-menu-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 15px;
  border-radius: 9px;
  background: var(--site-forest);
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
}
.language-picker {
  position: relative;
}
.language-picker > div {
  position: absolute;
  top: 30px;
  right: 0;
  background: white;
  border: 1px solid var(--site-line);
  padding: 6px;
  border-radius: 9px;
  min-width: 72px;
}
.language-picker a {
  display: block;
  padding: 7px 12px;
}
.language-picker a.current {
  background: var(--site-action-wash);
  border-radius: 5px;
}
.concept-nav .menu-toggle {
  display: none;
}
.mobile-menu {
  position: fixed;
  inset: 84px 0 0;
  z-index: 35;
  overflow-y: auto;
  background: #fff;
  padding: 24px max(20px, 6vw) max(28px, env(safe-area-inset-bottom));
  color: var(--site-ink);
}
.mobile-menu nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.mobile-menu nav > p {
  grid-column: 1/-1;
  font-size: 12px;
  color: var(--site-muted);
  margin-bottom: 8px;
}
.mobile-menu nav > a {
  font-size: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--site-line);
}
.mobile-languages {
  grid-column: 1/-1;
  display: flex;
  gap: 20px;
  margin: 18px 0;
  font-size: 13px;
}
.mobile-menu-cta {
  margin-top: 12px;
  min-height: 44px;
}
.mobile-menu .menu-product {
  display: none;
}
.menu-open {
  overflow: hidden;
}
.menu-open .site-header {
  position: sticky;
  top: 0;
}
.site-footer.concept-footer {
  background: var(--site-ivory);
  color: var(--site-ink);
  border-top: 1px solid var(--site-line);
  padding: 46px max(40px, calc((100% - 1220px) / 2))
    max(24px, env(safe-area-inset-bottom));
  margin: 36px 0 0;
  width: 100%;
  font:
    400 12px/1.7 Sora,
    sans-serif;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 30px;
}
.footer-grid > div {
  min-width: 0;
}
.footer-grid > div > strong {
  display: block;
  margin-bottom: 13px;
  font-size: 12px;
  font-weight: 550;
}
.footer-grid > div > a:not(.footer-logo) {
  display: block;
  margin: 8px 0;
  color: var(--site-muted);
  font-size: 12px;
}
.footer-wordmark {
  width: 160px;
  height: auto;
}
.footer-brand .footer-by {
  margin: 9px 0;
  font-size: 12px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--site-muted);
  line-height: 1.7;
  margin: 16px 0;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 16px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 40px;
  border-radius: 8px;
  color: var(--site-forest);
}
.footer-social a:hover {
  background: #e8efe4;
}
.footer-social svg {
  width: 17px;
  height: 17px;
}
.concept-footer .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0 0;
  margin-top: 30px;
  border-top: 1px solid #dce2d7;
  font-size: 12px;
  color: var(--site-muted);
}
.footer-bottom b {
  font-weight: 500;
}
.live-demo-form {
  margin-top: 19px;
}
.demo-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid #d7e0d4;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  min-height: 48px;
}
.demo-prefix {
  padding: 0 13px;
  font-size: 13px;
  border-right: 1px solid #d7e0d4;
  color: #526950;
}
.demo-phone {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 12px;
  color: #10261b;
  background: white;
  font:
    400 16px Sora,
    sans-serif;
}
.demo-phone:focus {
  outline: none;
}
.demo-input-wrap:focus-within {
  outline: 2px solid #299d57;
  outline-offset: 2px;
}
.demo-input-wrap.invalid {
  border-color: #b42318;
}
.demo-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  margin: 12px 0;
  padding: 12px;
  border: 1px solid #b5dfbf;
  border-radius: 10px;
  background: linear-gradient(115deg, #e2f8df, #c5eecf);
  color: #123b2a;
  font:
    500 13px/1.4 Sora,
    sans-serif;
}
.demo-call-btn:not(:disabled):hover {
  background: linear-gradient(115deg, #d4f4d9, #b4e9c4);
  border-color: #93cea4;
}
.demo-call-btn > svg {
  width: 17px;
  height: 17px;
  flex: none;
}
.demo-call-btn:disabled {
  opacity: 0.7;
}
.demo-turnstile {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px auto;
}
.demo-consent {
  font-size: 12px;
  color: #657269;
  line-height: 1.6;
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid #e8ece5;
}
.demo-consent a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.demo-status {
  font-size: 12px;
  line-height: 1.7;
  color: #23673d;
}
.demo-status.active {
  padding: 10px 0;
}
.demo-status[data-state="error"] {
  color: #b42318;
}
.demo-call-wave {
  display: none;
}
.callback-form .callback-form-heading h3 {
  font-size: 18px;
  font-weight: 450;
}
.callback-form .callback-form-heading p {
  color: #657269;
}
.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.section-intro > p {
  margin: 14px auto;
}
.section-intro h2 {
  font-size: 32px;
}
.legal-page {
  background: #fff;
}
@media (max-width: 1120px) {
  .concept-nav .desktop-nav {
    gap: 13px;
  }
  .header-actions {
    gap: 11px;
  }
  .concept-nav .brand-wordmark {
    width: 143px;
  }
  .concept-nav .login-link {
    display: none;
  }
}
@media (max-width: 960px) {
  .site-header.concept-nav {
    width: calc(100% - 40px);
    height: 74px;
    gap: 12px;
  }
  .concept-nav .desktop-nav {
    display: none;
  }
  .header-actions {
    margin-left: auto;
  }
  .concept-nav .menu-toggle {
    display: grid;
    gap: 5px;
    align-content: center;
    justify-content: center;
    width: 40px;
    height: 42px;
    flex-shrink: 0;
  }
  .menu-toggle span {
    display: block;
    width: 19px;
    height: 1px;
    background: var(--site-ink);
  }
  .mobile-menu {
    top: 74px;
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-social {
    margin-top: 10px;
  }
}
@media (max-width: 600px) {
  .site-header.concept-nav {
    width: calc(100% - 32px);
    height: 64px;
    gap: 7px;
  }
  .concept-nav .brand-wordmark {
    width: 128px;
  }
  .header-actions {
    gap: 10px;
  }
  .header-cta {
    padding: 9px 10px;
    font-size: 12px;
    gap: 4px;
    white-space: nowrap;
    text-align: center;
    max-width: none;
  }
  .header-cta > span {
    display: none;
  }
  .language-picker summary {
    font-size: 12px;
  }
  .mobile-menu {
    top: 64px;
  }
  .site-footer.concept-footer {
    padding: 24px 18px max(20px, env(safe-area-inset-bottom));
    margin-top: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-grid > div > a:not(.footer-logo) {
    margin: 0;
    min-height: 36px;
    display: flex;
    align-items: center;
  }
  .footer-wordmark {
    width: 145px;
  }
  .footer-brand p {
    margin: 12px 0;
  }
  .footer-social a {
    width: 40px;
    height: 44px;
  }
  .concept-footer .footer-bottom {
    display: grid;
    gap: 8px;
    text-align: left;
    line-height: 1.7;
    margin-top: 20px;
    padding-top: 15px;
  }
  .callback-form .callback-form-heading h3 {
    font-size: 16px;
  }
}
.concept-nav a {
  color: var(--site-ink);
  text-decoration: none;
}
.concept-nav .header-cta {
  color: #fff;
}
.language-picker summary {
  white-space: nowrap;
}
@media (max-width: 600px) {
  .concept-nav .menu-toggle {
    min-height: 44px;
  }
  .concept-nav .header-cta {
    min-height: 44px;
    padding: 8px 4px;
    background: transparent;
    border: 0;
    color: var(--site-forest);
    font-weight: 400;
    box-shadow: none;
    border-radius: 4px;
  }
  .header-actions .language-picker {
    display: none;
  }
}
@media (max-width: 360px) {
  .concept-nav .brand-wordmark {
    width: 110px;
  }
  .header-actions {
    gap: 7px;
  }
  .header-cta {
    max-width: none;
    padding-inline: 8px;
  }
  .concept-nav .menu-toggle {
    width: 34px;
  }
  .site-header.concept-nav {
    gap: 6px;
    height: 64px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .demo-call-btn,
  .nav-dropdown {
    transition: none;
  }
}
