/*!
Theme Name: USJDM
Theme URI: https://usjdm.local/
Author: USJDM
Description: Clean block-based starter aligned with USJDMThemeSkill.
Version: 1.0.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: usjdm
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

:root {
  --usjdm-bg: #ffffff;
  --usjdm-text: #111111;
  --usjdm-accent: #d90514;
  --usjdm-contact-surface: #2c2c2c;
  --usjdm-fw-base: 400;
  --usjdm-fw-strong: 600;
  --usjdm-fs-text: 1rem;
  --usjdm-fs-text-sm: clamp(0.9rem, 0.95vw, 1rem);
  --usjdm-fs-caption: clamp(0.76rem, 0.8vw, 0.84rem);
  --usjdm-fs-heading-2: clamp(2rem, 3.5vw, 3.1rem);
  --usjdm-fs-button: clamp(1rem, 1.1vw, 1.18rem);
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/clash-display/clash-display-200.woff2") format("woff2"),
       url("assets/fonts/clash-display/clash-display-200.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/clash-display/clash-display-300.woff2") format("woff2"),
       url("assets/fonts/clash-display/clash-display-300.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/clash-display/clash-display-400.woff2") format("woff2"),
       url("assets/fonts/clash-display/clash-display-400.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/clash-display/clash-display-500.woff2") format("woff2"),
       url("assets/fonts/clash-display/clash-display-500.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/clash-display/clash-display-600.woff2") format("woff2"),
       url("assets/fonts/clash-display/clash-display-600.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("assets/fonts/clash-display/clash-display-700.woff2") format("woff2"),
       url("assets/fonts/clash-display/clash-display-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--usjdm-bg);
  color: var(--usjdm-text);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Clash Display", sans-serif;
  font-size: var(--usjdm-fs-text);
  line-height: 1.55;
  font-weight: var(--usjdm-fw-base);
}

button,
input,
select,
textarea {
  font-family: "Clash Display", sans-serif;
  font-weight: var(--usjdm-fw-base);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
label,
small,
figcaption,
blockquote {
  font-weight: var(--usjdm-fw-base);
}

strong,
b {
  font-weight: var(--usjdm-fw-strong);
}

.usjdm-section-heading {
  display: block;
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: inherit;
  font-family: "Clash Display", sans-serif !important;
  font-size: clamp(2rem, 3vw, 3.15rem) !important;
  line-height: 1.02 !important;
  font-weight: 400 !important;
  letter-spacing: -0.03em !important;
  text-wrap: balance;
}

.usjdm-section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d93a3a;
  font-family: "Clash Display", sans-serif !important;
  font-size: 0.74rem;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.usjdm-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  border-radius: 999px;
  text-decoration: none;
  padding: 13px 26px;
  border: 2px solid transparent;
  font-family: "Clash Display", sans-serif;
  font-size: var(--usjdm-fs-button);
  line-height: 1;
  font-weight: 500;
  transition: transform 220ms ease, box-shadow 220ms ease, outline-offset 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease, opacity 220ms ease;
  will-change: transform;
}

.usjdm-cta.is-disabled,
.usjdm-cta[aria-disabled="true"] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.usjdm-cta.is-primary {
  background: #d93a3a;
  border-color: #d93a3a;
  color: #ffffff;
}

.usjdm-cta.is-secondary {
  background: transparent;
  border-color: #111111;
  color: #111111;
  font-weight: 400;
}

.usjdm-cta.is-lined {
  background: transparent;
  border-width: 0 0 2px;
  border-style: solid;
  border-color: #111111;
  border-radius: 0;
  padding: 13px 15px;
  gap: 10px;
  color: #111111;
  font-weight: 400;
}

.usjdm-cta:hover {
  transform: translateY(-2px);
}

.usjdm-cta.is-primary:hover {
  background-color: #d90514;
  color: #ffffff;
}

.usjdm-cta.is-secondary:hover {
  background-color: rgba(17, 17, 17, 0.04);
}

.usjdm-cta.is-lined:hover {
  background: transparent;
  border-color: #111111;
  color: #111111;
}

.usjdm-cta.has-hero-border.is-primary {
  box-shadow: inset 0 0 0 2px #343434;
}

.usjdm-cta.has-hero-border.is-secondary {
  box-shadow: inset 0 0 0 2px #ffffff;
}

.usjdm-cta__label {
  display: inline-block;
}

.usjdm-cta__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  right: 0px;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid #d93a3a;
  color: #d93a3a;
  font-size: 0.68rem;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease, opacity 220ms ease;
  z-index: 1;
}

.usjdm-cta:hover .usjdm-cta__badge {
  transform: translateY(-1px) scale(1.02);
}

.usjdm-cta__badge.is-primary {
  background: #ffffff;
}

.usjdm-cta__badge.is-secondary {
  background: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

.usjdm-btn:not(.is-disabled):not([aria-disabled="true"]):hover {
  --usjdm-btn-shell-border: var(--usjdm-btn-shell-border-hover, var(--usjdm-btn-shell-border, #111111));
  --usjdm-btn-shell-bg: var(--usjdm-btn-shell-bg-hover, var(--usjdm-btn-shell-bg, transparent));
  --usjdm-btn-inner-bg: var(--usjdm-btn-inner-bg-hover, var(--usjdm-btn-inner-bg, #ffffff));
  --usjdm-btn-inner-border: var(--usjdm-btn-inner-border-hover, var(--usjdm-btn-inner-border, #111111));
  --usjdm-btn-inner-color: var(--usjdm-btn-inner-color-hover, var(--usjdm-btn-inner-color, #111111));
  --usjdm-btn-badge-bg: var(--usjdm-btn-badge-bg-hover, var(--usjdm-btn-badge-bg, #d90514));
  --usjdm-btn-badge-border: var(--usjdm-btn-badge-border-hover, var(--usjdm-btn-badge-border, #ffffff));
  --usjdm-btn-badge-color: var(--usjdm-btn-badge-color-hover, var(--usjdm-btn-badge-color, #ffffff));
}

.usjdm-btn.v-primary-white {
  --usjdm-btn-shell-border: rgba(255, 255, 255, 0.92);
  --usjdm-btn-shell-bg: transparent;
  --usjdm-btn-inner-bg: #ffffff;
  --usjdm-btn-inner-border: #2a2a2a;
  --usjdm-btn-inner-color: #1f1f1f;
  --usjdm-btn-badge-bg: #d90514;
  --usjdm-btn-badge-border: #ffffff;
  --usjdm-btn-badge-color: #ffffff;

  --usjdm-btn-shell-border-hover: #ffffff;
  --usjdm-btn-shell-bg-hover: rgba(255, 255, 255, 0.08);
  --usjdm-btn-inner-bg-hover: #d90514;
  --usjdm-btn-inner-border-hover: #2a2a2a;
  --usjdm-btn-inner-color-hover: #ffffff;
  --usjdm-btn-badge-bg-hover: #bf0411;
  --usjdm-btn-badge-border-hover: #ffffff;
  --usjdm-btn-badge-color-hover: #ffffff;
}

.usjdm-btn.v-primary-dark {
  --usjdm-btn-shell-border: rgba(17, 17, 17, 0.9);
  --usjdm-btn-shell-bg: transparent;
  --usjdm-btn-inner-bg: #111111;
  --usjdm-btn-inner-border: #2a2a2a;
  --usjdm-btn-inner-color: #ffffff;
  --usjdm-btn-badge-bg: #d90514;
  --usjdm-btn-badge-border: #111111;
  --usjdm-btn-badge-color: #ffffff;

  --usjdm-btn-shell-border-hover: #111111;
  --usjdm-btn-shell-bg-hover: rgba(17, 17, 17, 0.08);
  --usjdm-btn-inner-bg-hover: #d90514;
  --usjdm-btn-inner-border-hover: #2a2a2a;
  --usjdm-btn-inner-color-hover: #ffffff;
  --usjdm-btn-badge-bg-hover: #bf0411;
  --usjdm-btn-badge-border-hover: #111111;
  --usjdm-btn-badge-color-hover: #ffffff;
}

.usjdm-btn.v-secondary-white {
  --usjdm-btn-shell-border: rgba(255, 255, 255, 0.92);
  --usjdm-btn-shell-bg: transparent;
  --usjdm-btn-inner-bg: rgba(0, 0, 0, 0.34);
  --usjdm-btn-inner-border: transparent;
  --usjdm-btn-inner-color: #ffffff;
  --usjdm-btn-badge-bg: #ffffff;
  --usjdm-btn-badge-border: #ffffff;
  --usjdm-btn-badge-color: #111111;

  --usjdm-btn-shell-border-hover: #ffffff;
  --usjdm-btn-shell-bg-hover: rgba(255, 255, 255, 0.04);
  --usjdm-btn-inner-bg-hover: rgba(0, 0, 0, 0.46);
  --usjdm-btn-inner-border-hover: transparent;
  --usjdm-btn-inner-color-hover: #ffffff;
  --usjdm-btn-badge-bg-hover: #ffffff;
  --usjdm-btn-badge-border-hover: #ffffff;
  --usjdm-btn-badge-color-hover: #111111;
}

.usjdm-btn.v-secondary-dark {
  --usjdm-btn-shell-border: rgba(17, 17, 17, 0.9);
  --usjdm-btn-shell-bg: transparent;
  --usjdm-btn-inner-bg: rgba(17, 17, 17, 0.06);
  --usjdm-btn-inner-border: transparent;
  --usjdm-btn-inner-color: #111111;
  --usjdm-btn-badge-bg: #111111;
  --usjdm-btn-badge-border: #111111;
  --usjdm-btn-badge-color: #ffffff;

  --usjdm-btn-shell-border-hover: #111111;
  --usjdm-btn-shell-bg-hover: rgba(17, 17, 17, 0.04);
  --usjdm-btn-inner-bg-hover: rgba(17, 17, 17, 0.12);
  --usjdm-btn-inner-border-hover: transparent;
  --usjdm-btn-inner-color-hover: #111111;
  --usjdm-btn-badge-bg-hover: #1b1b1b;
  --usjdm-btn-badge-border-hover: #111111;
  --usjdm-btn-badge-color-hover: #ffffff;
}

.usjdm-btn.v-lined {
  --usjdm-btn-shell-border: transparent;
  --usjdm-btn-shell-bg: transparent;
  --usjdm-btn-inner-bg: transparent;
  --usjdm-btn-inner-border: transparent;
  --usjdm-btn-inner-color: #111111;
  --usjdm-btn-badge-bg: transparent;
  --usjdm-btn-badge-border: transparent;
  --usjdm-btn-badge-color: #111111;
}

.usjdm-btn.v-lined-white {
  --usjdm-btn-shell-border: transparent;
  --usjdm-btn-shell-bg: transparent;
  --usjdm-btn-inner-bg: transparent;
  --usjdm-btn-inner-border: transparent;
  --usjdm-btn-inner-color: #ffffff;
  --usjdm-btn-badge-bg: transparent;
  --usjdm-btn-badge-border: transparent;
  --usjdm-btn-badge-color: #ffffff;
}

.usjdm-btn.v-lined .usjdm-btn__shell {
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.usjdm-btn.v-lined .usjdm-btn__inner {
  border: 0;
  border-bottom: 2px solid #111111;
  border-radius: 0;
  background: transparent;
  color: #111111;
  padding-left: 15px;
  padding-right: 15px;
}

.usjdm-btn.v-lined .usjdm-btn__badge {
  display: none;
}

.usjdm-btn.v-lined-white .usjdm-btn__shell {
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.usjdm-btn.v-lined-white .usjdm-btn__inner {
  border: 0;
  border-bottom: 2px solid #ffffff;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  padding-left: 15px;
  padding-right: 15px;
}

.usjdm-btn.v-lined-white .usjdm-btn__badge {
  display: none;
}

.usjdm-btn {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease, background-color 220ms ease, border-color 220ms ease, color 220ms ease;
  cursor: pointer;
  user-select: none;
}

.usjdm-btn:hover {
  transform: translateY(-2px);
}

.usjdm-btn.is-disabled,
.usjdm-btn[aria-disabled="true"] {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.usjdm-btn__shell {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  border: 2px solid var(--usjdm-btn-shell-border, #111111);
  background: var(--usjdm-btn-shell-bg, transparent);
}

.usjdm-btn__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border-radius: 999px;
  border: 2px solid var(--usjdm-btn-inner-border, #111111);
  background: var(--usjdm-btn-inner-bg, #ffffff);
  color: var(--usjdm-btn-inner-color, #111111);
  font-family: "Clash Display", sans-serif;
  font-size: var(--usjdm-fs-button);
  line-height: 1;
  font-weight: 500;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
}

.usjdm-btn__badge {
  position: absolute;
  top: -10px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 4px 10px;
  border: 1px solid var(--usjdm-btn-badge-border, #ffffff);
  background: var(--usjdm-btn-badge-bg, #d90514);
  color: var(--usjdm-btn-badge-color, #ffffff);
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
  z-index: 1;
}

.usjdm-btn.is-primary {
  --usjdm-btn-shell-border: #111111;
  --usjdm-btn-shell-bg: transparent;
  --usjdm-btn-inner-bg: #d93a3a;
  --usjdm-btn-inner-border: #d93a3a;
  --usjdm-btn-inner-color: #ffffff;
  --usjdm-btn-badge-bg: #d90514;
  --usjdm-btn-badge-border: #ffffff;
  --usjdm-btn-badge-color: #ffffff;
}

.usjdm-btn.is-secondary {
  --usjdm-btn-shell-border: #111111;
  --usjdm-btn-shell-bg: transparent;
  --usjdm-btn-inner-bg: #ffffff;
  --usjdm-btn-inner-border: #111111;
  --usjdm-btn-inner-color: #111111;
  --usjdm-btn-badge-bg: #ffffff;
  --usjdm-btn-badge-border: #ffffff;
  --usjdm-btn-badge-color: #111111;
}

.usjdm-btn.is-lined {
  --usjdm-btn-shell-border: transparent;
  --usjdm-btn-shell-bg: transparent;
  --usjdm-btn-inner-bg: transparent;
  --usjdm-btn-inner-border: transparent;
  --usjdm-btn-inner-color: #111111;
  --usjdm-btn-badge-bg: transparent;
  --usjdm-btn-badge-border: transparent;
  --usjdm-btn-badge-color: #111111;
  border-radius: 0;
}

.usjdm-btn.is-lined .usjdm-btn__shell {
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.usjdm-btn.is-lined .usjdm-btn__inner {
  border: 0;
  border-bottom: 2px solid #111111;
  border-radius: 0;
  padding: 10px 15px;
  background: transparent;
  color: #111111;
}

.usjdm-btn.is-lined .usjdm-btn__badge {
  display: none;
}

.usjdm-btn:not(.is-disabled):not([aria-disabled="true"]):hover {
  --usjdm-btn-inner-bg: #d90514;
  --usjdm-btn-inner-border: #d90514;
  --usjdm-btn-inner-color: #ffffff;
}

.usjdm-cta.is-lined .usjdm-cta__badge {
  display: none;
}

.fw-600,
.font-w-600,
.is-font-600 {
  font-weight: var(--usjdm-fw-strong) !important;
}

.site-header__row,
.site-footer__shell,
.site-footer-precta__inner {
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(0);
  transition: transform 260ms ease, background-color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
  will-change: transform;
}

.site-header.is-scrolled,
.site-header.is-scroll-up-visible,
body.header-menu-open .site-header {
  background: rgba(12, 14, 20, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 8px));
}

.admin-bar .site-header {
  top: 32px;
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

.site-header__row {
  width: 100%;
  max-width: 1720px;
  padding-inline: clamp(20px, 4vw, 70px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 80px;
}

.site-branding {
  line-height: 0;
}

.site-branding img,
.site-branding .custom-logo {
  width: auto;
  height: 50px;
}

.site-header__desktop-nav .menu,
.site-header__desktop-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__desktop-nav a,
.site-header__contact a {
  color: #f6f6f6;
  text-decoration: none;
  font-weight: 400;
}

.site-branding a {
  color: #f6f6f6;
  display: inline-flex;
}

.site-header__desktop-nav {
  display: none;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: flex-end;
}

.site-header__contact {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 1rem;
}

.site-header__contact-link {
  position: relative;
  padding-left: 30px;
}

.site-header__contact-link::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.92;
}

.site-header__contact-link.is-email::before {
  content: "@";
  font-size: 1.35rem;
  line-height: 1;
}

.site-header__contact-link.is-phone::before {
  content: "";
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34' fill='none'%3E%3Cpath d='M5.38301 17.284L12.7497 12.7507L11.333 2.83398H2.83301V7.08398C2.83301 13.4713 5.37035 19.597 9.88685 24.1135C14.4034 28.63 20.529 31.1673 26.9163 31.1673H31.1663V22.6673L21.2497 21.2507L16.7163 28.6173' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  line-height: 1;
}

.site-header__menu-toggle {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  cursor: pointer;
}

.site-header__menu-toggle-icon {
  width: 23px;
  height: 18px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.site-header__menu-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
}

.site-header__menu-toggle-label {
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.button-standard,
.site-header__cta,
.site-footer-precta__buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  min-height: 42px;
  padding: 0 18px;
  font-size: var(--usjdm-fs-button);
  line-height: 1;
  font-weight: 400;
}

.site-header__cta {
  position: relative;
  background: #ffffff;
  border: 2px solid #ececec;
  box-shadow: inset 0 0 0 2px #343434;
  color: #161616;
  min-height: 48px;
  padding: 0 34px;
  font-size: var(--usjdm-fs-button);
}

.site-header__cta::before {
  content: "Grzejniki do kazdej lazienki";
  position: absolute;
  top: -9px;
  right: 9px;
  padding: 2px 10px;
  border-radius: 999px;
  background: #d93a3a;
  color: #fff;
  font-size: var(--usjdm-fs-caption);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.site-footer-precta {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 24px);
  width: min(1720px);
  margin: 0 auto;
  padding: clamp(160px, 12vw, 104px) 0 clamp(160px, 8vw, 104px);
  background: #050608;
  border-top: 0;
  border-radius: clamp(20px, 2vw, 28px) clamp(20px, 2vw, 28px) 0 0;
  overflow: visible;
}

.site-footer-logo-strip--in-precta {
  background: transparent;
  padding: 0;
}

.site-footer-logo-strip--in-precta .block-usjdm-logo-strip__inner {
  width: 100%;
}

.site-footer-logo-strip--above-footer {
  background: transparent;
  padding: clamp(32px, 4vw, 48px) 0;
  margin: 0 auto;
  width: 100%;
  border-radius: 0;
  overflow: visible;
}

.site-footer-logo-strip--above-footer .block-usjdm-logo-strip__inner {
  width: 100%;
}

.site-footer-precta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.site-footer-precta__kicker {
  margin: 0;
  color: #d93a3a;
  font-size: var(--usjdm-fs-text-sm);
  line-height: 1.25;
}

.site-footer-precta__inner h2 {
  margin: 0;
  max-width: 900px;
  color: #f5f6fb;
  font-size: var(--usjdm-fs-heading-2);
  line-height: 1.12;
}

.site-footer-precta__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.site-footer {
  margin: 0 auto clamp(8px, 2vw, 14px);
  background: transparent;
  color: #f5f6fb;
}

.site-footer__shell {
  width: 100%;
  max-width: 1720px;
  padding-inline: clamp(20px, 4vw, 70px);
}

.site-footer__main {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.75fr);
  gap: clamp(24px, 3vw, 56px);
  align-items: flex-start;
  padding: clamp(32px, 4vw, 42px) clamp(26px, 4vw, 44px) clamp(30px, 3.6vw, 38px);
  background: #2f2e2e;
  border-radius: clamp(28px, 3vw, 36px);
}

.site-footer__col-left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-right: clamp(24px, 3.2vw, 46px);
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.site-footer__col-right {
  padding-left: clamp(24px, 3.2vw, 46px);
}

.site-footer__brand-block {
  width: 100%;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 146px;
}

.site-footer__logo img,
.site-footer__logo .custom-logo {
  width: clamp(128px, 13vw, 148px);
  height: auto;
}

.site-footer__site-name {
  color: #f5f6fb;
  text-decoration: none;
  font-size: var(--usjdm-fs-heading-4);
  line-height: 1;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 32px;
}

.site-footer__column {
  min-width: 0;
}

.site-footer__column-title {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(245, 246, 251, 0.92);
  font-size: var(--usjdm-fs-text);
  font-weight: 400;
}

.site-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__link,
.site-footer__contact a {
  color: rgba(245, 246, 251, 0.84);
  text-decoration: none;
  font-size: var(--usjdm-fs-text-sm);
  line-height: 1.45;
}

.site-footer__contact-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.site-footer__contact-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 18px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  background: #ffffff;
  color: #2c2c2c;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  font-size: var(--usjdm-fs-text-sm);
  line-height: 1;
}

.site-footer__contact-button-label {
  white-space: nowrap;
}

.site-footer__contact-button-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: no-repeat center / 16px 16px;
  opacity: 0.88;
}

.site-footer__contact-button.is-phone .site-footer__contact-button-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5.408 2.104c.164 0 .316.09.393.236l1.22 2.3a.45.45 0 0 1-.043.49l-1.01 1.28a.36.36 0 0 0-.034.409c.35.606.817 1.23 1.402 1.814.586.584 1.21 1.05 1.816 1.4a.36.36 0 0 0 .408-.033l1.282-1.01a.45.45 0 0 1 .49-.043l2.3 1.22c.2.106.291.346.212.56l-.684 1.826c-.118.316-.388.52-.725.52C9.03 13.09 2.91 6.97 2.91 3.655c0-.337.204-.607.52-.725l1.826-.684c.054-.02.11-.03.172-.03Z' fill='%232c2c2c'/%3E%3C/svg%3E");
}

.site-footer__contact-button.is-mail .site-footer__contact-button-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Crect x='1.5' y='3.25' width='13' height='9.5' rx='1.5' stroke='%232c2c2c'/%3E%3Cpath d='m2.5 4.5 5.5 4 5.5-4' stroke='%232c2c2c' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.site-footer__contact-text {
  margin-top: 8px;
}

.site-footer__contact-text p {
  margin: 0;
  color: rgba(245, 246, 251, 0.78);
  font-size: var(--usjdm-fs-text-sm);
  line-height: 1.45;
}

.site-footer__rule {
  display: none;
}

.site-footer__bottom-text {
  width: 100%;
  padding: 12px clamp(20px, 4vw, 70px) 0;
  font-size: var(--usjdm-fs-caption);
  color: #3d3d3d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-footer-precta__buttons a {
  position: relative;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: transparent;
  color: rgba(245, 246, 251, 0.96);
  font-size: var(--usjdm-fs-button);
  padding: 0 18px;
}

.site-footer-precta__buttons a:first-child {
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
}

.site-footer-precta__buttons .usjdm-cta__badge {
  right: 9px;
  top: -8px;
  font-size: var(--usjdm-fs-caption);
  line-height: 1;
  background: #0f1015;
  border-color: #d93a3a;
  color: #d93a3a;
}

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

  .site-footer__col-left {
    border-right: 0;
    padding-right: 0;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .site-footer__col-right {
    padding-left: 0;
    padding-top: 26px;
  }
}

@media (max-width: 860px) {
  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__shell,
  .site-footer__bottom-text {
    width: 100%;
  }
}

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

  .site-footer__main {
    padding: 28px 20px 24px;
    border-radius: 0;
  }

  .site-footer__brand-block {
    gap: 34px;
  }

  .site-footer__contact-buttons {
    width: 100%;
    align-items: stretch;
  }

  .site-footer__contact-button {
    width: 100%;
    justify-content: flex-start;
  }

  .site-footer__bottom-text {
    padding-inline: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.front-page-usjdm__empty {
  width: min(980px, calc(100% - 32px));
  margin: 70px auto;
  padding: 24px;
  border: 1px dashed #888;
  border-radius: 12px;
  text-align: center;
}

.page-header-default {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 0 clamp(24px, 3vw, 36px);
  border-radius: 0 0 clamp(20px, 2vw, 28px) clamp(20px, 2vw, 28px);
  background: #050608;
  color: #f5f6fb;
  min-height: clamp(300px, 42vw, 400px);
}

.page-header-default__media {
  position: absolute;
  inset: 0;
}

.page-header-default__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.32) 0%, rgba(5, 6, 8, 0.72) 100%);
}

.page-header-default__media-video,
.page-header-default__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-header-default__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  align-content: end;
  min-height: inherit;
  width: min(1720px);
  margin: 0 auto;
  padding: clamp(38px, 5vw, 72px) clamp(20px, 4vw, 52px) clamp(34px, 4.5vw, 64px);
}

.page-header-default__breadcrumbs {
  margin: 0;
}

.page-header-default__breadcrumbs-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
  color: rgba(245, 246, 251, 0.84);
  font-size: var(--usjdm-fs-caption);
}

.page-header-default__breadcrumbs-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.page-header-default__breadcrumbs-item:not(:last-child)::after {
  content: '/';
  color: rgba(245, 246, 251, 0.38);
}

.page-header-default__breadcrumbs a,
.page-header-default__breadcrumbs span {
  color: inherit;
  text-decoration: none;
}

.page-header-default__breadcrumbs span[aria-current='page'] {
  color: #ffffff;
}

.page-header-default__title {
  margin: 0;
  max-width: 980px;
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.page-header-default__description {
  max-width: 760px;
  font-size: var(--usjdm-fs-text-sm);
  line-height: 1.6;
  color: rgba(245, 246, 251, 0.88);
}

.page-header-default__description p {
  margin: 0;
}


@media (max-width: 720px) {
  .page-header-default {
    min-height: 320px;
  }

  .page-header-default__inner {
    gap: 14px;
    padding: 28px 18px 28px;
  }

  .page-header-default__breadcrumbs-list {
    gap: 8px 10px;
  }

  .page-header-default__title {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .site-footer-precta,
  .site-footer {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }

  .site-footer-precta {
    padding: clamp(32px, 4vw, 52px) clamp(20px, 5.2vw, 100px);
  }

  .site-footer__shell {
    width: 100%;
    margin: 0;
  }

  .site-footer__main {
    padding: clamp(32px, 4vw, 52px) clamp(20px, 5.2vw, 100px) clamp(24px, 3.4vw, 32px);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .site-footer__rule {
    margin: 0 clamp(20px, 5.2vw, 100px);
  }

  .site-footer__bottom-text {
    padding: 18px clamp(20px, 5.2vw, 100px);
  }
}

@media (max-width: 1040px) {
  .site-header__row {
    grid-template-columns: auto 1fr;
  }

  .site-header__desktop-nav {
    display: none;
  }

  .site-header__contact {
    display: none;
  }

  .site-header__cta {
    min-height: 44px;
    padding: 0 18px;
    font-size: 1rem;
  }

  .site-header__cta::before {
    font-size: 0.62rem;
    top: -9px;
    right: 6px;
  }
}

@media (max-width: 700px) {
  .site-footer__bottom-text {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 450px) {
  .site-header__row {
    gap: 10px;
    min-height: 68px;
  }

  .site-branding img,
  .site-branding .custom-logo {
    width: auto;
    height: 45px;
  }

  .site-header__right {
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 0;
  }

  .site-header__menu-toggle {
    gap: 4px;
    flex: 0 0 auto;
  }

  .site-header__menu-toggle-icon {
    width: 19px;
    height: 15px;
  }

  .site-header__menu-toggle-label {
    font-size: 0.5rem;
  }

  .site-header__cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
    white-space: nowrap;
    flex: 0 1 auto;
  }

  .site-header__cta::before {
    display: none;
  }
}

@media (max-width: 320px) {
  .site-header__row {
    gap: 10px;
    min-height: 68px;
  }

  .site-header__right {
    gap: 8px;
  }

  .site-header__menu-toggle {
    gap: 4px;
  }

  .site-header__cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 767px) {
  [class^='block-usjdm-'] [class$='__buttons'],
  [class*=' block-usjdm-'] [class$='__buttons'] {
    justify-content: center;
    align-items: center;
  }
}

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

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

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* Left drawer mobile menu */
.header-mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 8, 12, 0.52);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.header-mobile-menu-overlay.is-open,
.header-mobile-menu-overlay.is-closing {
  pointer-events: auto;
}

.header-mobile-menu-overlay.is-open {
  opacity: 1;
}

.header-mobile-menu-overlay__inner {
  width: min(86vw, 420px);
  height: 100%;
  position: relative;
  isolation: isolate;
  background: #ffffff !important;
  color: #171717 !important;
  border-right: 0;
  box-shadow: 0 20px 52px rgba(17, 17, 17, 0.2);
  padding: clamp(24px, 4vw, 32px) clamp(22px, 4.2vw, 30px) clamp(30px, 5vw, 40px);
  transform: translateX(-102%);
  transition: transform 0.26s ease;
  overflow-y: auto;
}

.header-mobile-menu-overlay__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(120% 65% at 4% 0%, rgba(245, 130, 31, 0.12) 0%, rgba(245, 130, 31, 0) 58%);
}

.header-mobile-menu-overlay.is-open .header-mobile-menu-overlay__inner {
  transform: translateX(0);
}

.header-mobile-menu-overlay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.14);
}

.header-mobile-menu-overlay__logo img,
.header-mobile-menu-overlay__logo .custom-logo {
  width: clamp(120px, 32vw, 168px);
  height: auto;
}

.header-mobile-menu-overlay__site-name {
  color: #171717 !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
}

.header-mobile-menu-overlay__close {
  border: none;
  background: transparent !important;
  color: #171717 !important;
  border-radius: 0;
  box-shadow: none;
  width: auto;
  height: auto;
  padding: 0;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}

.header-mobile-menu-overlay__close:hover,
.header-mobile-menu-overlay__close:focus-visible {
  background: transparent !important;
  color: #d93a3a !important;
}

.mobile-navigation .menu,
.mobile-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-navigation > div > ul,
.mobile-navigation > ul,
.mobile-navigation .menu {
  display: grid;
  gap: 10px;
  --mobile-nav-font-size: clamp(1.25rem, 4vw, 2rem);
}

.mobile-navigation li {
  position: relative;
}

.mobile-navigation a {
  display: block;
  text-decoration: none;
  color: #1a1a1a !important;
  font-weight: 400;
  font-size: var(--mobile-nav-font-size);
  line-height: 1.18;
  padding: 8px 44px 8px 0;
}

.mobile-navigation a:hover,
.mobile-navigation a:focus-visible,
.mobile-navigation .current-menu-item > a,
.mobile-navigation .current-menu-ancestor > a {
  color: #d93a3a !important;
}

.mobile-navigation .sub-menu {
  display: none;
  margin-top: 4px;
  padding-left: 14px;
  border-left: 1px solid rgba(23, 23, 23, 0.14);
}

.mobile-navigation .sub-menu.is-expanded {
  display: grid;
  gap: 6px;
}

.mobile-navigation .sub-menu a {
  font-size: calc(var(--mobile-nav-font-size) * 0.8);
  font-weight: 400;
  opacity: 1;
  color: #4d4d4d !important;
  padding: 6px 0;
}

.mobile-navigation .sub-menu-toggle {
  position: absolute;
  top: 10px;
  right: 0;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: #171717 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-navigation .sub-menu-toggle:hover,
.mobile-navigation .sub-menu-toggle:focus-visible {
  background: transparent !important;
  color: #d93a3a !important;
}

.header-mobile-menu-overlay__social {
  margin-top: 18px;
  display: flex;
  gap: 8px;
}

.header-mobile-menu-overlay__social .site-header__social-link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(23, 23, 23, 0.16);
  color: #171717;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-mobile-menu-overlay__social .site-header__social-link:hover,
.header-mobile-menu-overlay__social .site-header__social-link:focus-visible {
  color: #ffffff;
  background: #171717;
  border-color: #171717;
}

.header-mobile-menu-overlay__social .site-header__social-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-mobile-menu-overlay__social .site-header__social-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.header-mobile-menu-overlay__cta {
  margin-top: 24px;
  display: grid;
  gap: 8px;
}

.header-mobile-menu-overlay__cta .button-standard {
  justify-content: center;
}

.site-header__cta--drawer {
  width: 100%;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border-color: #ececec;
  color: #171717;
}

.site-header__cta--drawer::before {
  display: inline-block;
  font-size: 1rem;
}

body.usjdm-modal-open {
  overflow: hidden;
}

.usjdm-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 18px;
}

.usjdm-contact-modal[hidden] {
  display: none;
}

.usjdm-contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.6);
  backdrop-filter: blur(3px);
}

.usjdm-contact-modal__panel {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 24px));
  background: var(--usjdm-contact-surface, #2c2c2c);
  border-radius: 24px;
  box-shadow: 0 26px 64px rgba(5, 7, 10, 0.24);
  padding: clamp(18px, 2.2vw, 30px);
  color: #f5f4f2;
}

.usjdm-contact-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.usjdm-contact-modal__title {
  margin: 0 34px 8px 0;
  font-family: Clash Display, sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  line-height: 1.1;
}

.usjdm-contact-modal__desc {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.86);
}

.usjdm-contact-modal__form {
  margin-bottom: 18px;
}

.usjdm-contact-modal__form .forminator-ui {
  margin: 0;
}

.usjdm-contact-modal__form .forminator-row {
  margin-bottom: 14px;
}

.usjdm-contact-modal__form .forminator-row.forminator-row-last {
  margin-top: 24px;
  margin-bottom: 0;
}

.usjdm-contact-modal__form .forminator-field {
  margin-bottom: 0;
}

.usjdm-contact-modal__form .forminator-label,
.usjdm-contact-modal__form .forminator-field label.forminator-label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.usjdm-contact-modal__form .forminator-field label,
.usjdm-contact-modal__form .forminator-checkbox-label,
.usjdm-contact-modal__form .forminator-consent label,
.usjdm-contact-modal__form .forminator-consent {
  color: rgba(255, 255, 255, 0.9);
}

.usjdm-contact-modal__form input:not([type=checkbox]):not([type=radio]):not([type=hidden]),
.usjdm-contact-modal__form textarea,
.usjdm-contact-modal__form select {
  width: 100%;
  height: 48px;
  padding: 12px 18px;
  background: rgba(26, 26, 26, 0.22) !important;
  border: 1px solid rgba(255, 255, 255, 0.62) !important;
  border-radius: 999px !important;
  color: #ffffff !important;
  box-shadow: none !important;
  outline: none;
}

.usjdm-contact-modal__form textarea {
  min-height: 110px;
  border-radius: 24px !important;
  resize: vertical;
}

.usjdm-contact-modal__form input:focus,
.usjdm-contact-modal__form textarea:focus,
.usjdm-contact-modal__form select:focus {
  outline: none;
  border-color: #ffffff !important;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28) !important;
}

.usjdm-contact-modal__form ::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.usjdm-contact-modal__form .forminator-consent {
  font-size: 12px;
  line-height: 1.4;
}

.usjdm-contact-modal__form .forminator-checkbox input[type=checkbox],
.usjdm-contact-modal__form .forminator-consent input[type=checkbox] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.usjdm-contact-modal__form .forminator-checkbox,
.usjdm-contact-modal__form .forminator-consent {
  display: inline-flex;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  padding: 0;
}

.usjdm-contact-modal__form .forminator-checkbox__label,
.usjdm-contact-modal__form .forminator-consent__label {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  padding-top: 2px;
}

.usjdm-contact-modal__form .forminator-checkbox-box {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  min-height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.72) !important;
  border-radius: 5px !important;
  background: transparent !important;
  margin-top: 1px;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.usjdm-contact-modal__form .forminator-checkbox-box::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s;
}

.usjdm-contact-modal__form .forminator-consent input[type=checkbox]:checked + .forminator-checkbox-box,
.usjdm-contact-modal__form .forminator-checkbox input[type=checkbox]:checked ~ .forminator-checkbox-box {
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.2) !important;
}

.usjdm-contact-modal__form .forminator-consent input[type=checkbox]:checked + .forminator-checkbox-box::after,
.usjdm-contact-modal__form .forminator-checkbox input[type=checkbox]:checked ~ .forminator-checkbox-box::after {
  opacity: 1;
}

.usjdm-contact-modal__form button.forminator-button.forminator-button-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 28px;
  border-radius: 999px !important;
  border: 0 !important;
  background: #f4f4f4 !important;
  color: #212121 !important;
  font-size: 17px;
  font-family: "Clash Display", sans-serif;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  box-shadow: none;
}

.usjdm-contact-modal__form button.forminator-button.forminator-button-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.usjdm-contact-modal__separator {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.72);
  margin: 16px 0;
}

.usjdm-contact-modal__separator::before,
.usjdm-contact-modal__separator::after {
  content: '';
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.24);
}

.usjdm-contact-modal__separator span {
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.usjdm-contact-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.usjdm-contact-modal__contact {
  position: relative;
}

.usjdm-contact-modal__contact.usjdm-btn {
  --usjdm-btn-shell-border: rgba(255, 255, 255, 0.92);
  --usjdm-btn-shell-bg: transparent;
  --usjdm-btn-inner-bg: rgba(0, 0, 0, 0.34);
  --usjdm-btn-inner-border: transparent;
  --usjdm-btn-inner-color: #ffffff;

  --usjdm-btn-shell-border-hover: #ffffff;
  --usjdm-btn-shell-bg-hover: rgba(255, 255, 255, 0.04);
  --usjdm-btn-inner-bg-hover: rgba(0, 0, 0, 0.46);
  --usjdm-btn-inner-border-hover: transparent;
  --usjdm-btn-inner-color-hover: #ffffff;
}

.usjdm-contact-modal__contact.usjdm-btn .usjdm-contact-modal__contact-shell {
  padding-right: 16px;
}

.usjdm-contact-modal__contact.usjdm-btn .usjdm-contact-modal__contact-inner {
  position: relative;
  min-height: 44px;
  padding-left: 44px;
  padding-right: 20px;
}

.usjdm-contact-modal__contact.usjdm-btn .usjdm-contact-modal__contact-inner::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.usjdm-contact-modal__contact.is-email .usjdm-contact-modal__contact-inner::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34' fill='none'%3E%3Cpath d='M4.25 8.5H29.75V25.5H4.25V8.5Z' stroke='%23ffffff' stroke-width='2'/%3E%3Cpath d='M4.25 10.625L17 19.125L29.75 10.625' stroke='%23ffffff' stroke-width='2'/%3E%3C/svg%3E");
}

.usjdm-contact-modal__contact.is-phone .usjdm-contact-modal__contact-inner::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34' fill='none'%3E%3Cpath d='M5.38301 17.284L12.7497 12.7507L11.333 2.83398H2.83301V7.08398C2.83301 13.4713 5.37035 19.597 9.88685 24.1135C14.4034 28.63 20.529 31.1673 26.9163 31.1673H31.1663V22.6673L21.2497 21.2507L16.7163 28.6173' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

@media (max-width: 400px) {
  .header-mobile-menu-overlay__inner {
    width: 100%;
  }

  .usjdm-contact-modal {
    padding: 10px;
  }

  .usjdm-contact-modal__panel {
    border-radius: 18px;
    width: calc(100vw - 12px);
  }
}

/* ========== PŁYWAJĄCE PRZYCISKI KONTAKTU ========== */

.usjdm-floating-contacts {
  position: fixed;
  right: max(20px, calc((100vw - 1720px) / 2 + 20px));
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: auto;
}

.usjdm-floating-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e30613;
  border: 0;
  cursor: pointer;
  transition: background-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
}

.usjdm-floating-contact-button:hover,
.usjdm-floating-contact-button:focus-visible {
  background: #c90410;
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(227, 6, 19, 0.24);
}

.usjdm-floating-contact-button img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .usjdm-floating-contacts {
    right: 16px;
    gap: 10px;
  }

  .usjdm-floating-contact-button {
    width: 52px;
    height: 52px;
  }

  .usjdm-floating-contact-button img {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 640px) {
  .usjdm-floating-contacts {
    right: 12px;
    gap: 8px;
  }

  .usjdm-floating-contact-button {
    width: 48px;
    height: 48px;
  }

  .usjdm-floating-contact-button img {
    width: 20px;
    height: 20px;
  }
}

.header-mobile-menu-overlay__cta span.usjdm-btn__shell,
.header-mobile-menu-overlay__cta .usjdm-btn__inner {
    width: 100% !important;
}

/* ========== GLOBALNE TABELE ========== */

table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  border-spacing: 0;
}

table thead,
table tbody,
table tfoot {
  display: table;
  width: 100%;
  table-layout: auto;
}

table th,
table td {
  border: 1px solid #000000;
  min-width: 180px;
  padding: 10px 12px;
  vertical-align: top;
}

table th {
  background: #000000;
  color: #ffffff;
}

table tbody tr:nth-child(even) td {
  background: #f0f0f0;
}

p {
    margin: 0;
}

section.block.block-edan-kontakt span.forminator-checkbox-box {
  border-radius: 100% !important;
  border: 1px solid white !important;
  background: transparent !important;
}
section.block.block-edan-kontakt-szczegolowy span.forminator-checkbox-box {
  border-radius: 100% !important;
  border: 1px solid black !important;
  background: transparent !important;
}

section.block.block-edan-kontakt .forminator-checkbox__label.forminator-consent__label {
  text-align: left;
}

.forminator-field-consent .forminator-label {
  display: none !important;
}
.dpos-blog-content.entry-content.usjdm-single-prose p:not(:last-child) {
    margin-bottom: 20px;
}

.block-edan-seo-teksty__text p:not(:last-child) {
    margin-bottom: 20px;
}

a {
  color: var(--usjdm-accent)
}