:root {
  --ltk-bg: #0d0c0f;
  --ltk-surface: #18171a;
  --ltk-surface-2: #232225;
  --ltk-text: #ffffff;
  --ltk-muted: #949087;
  --ltk-line: rgba(255, 255, 255, 0.14);
  --ltk-accent: #F5C518;
  --ltk-accent-2: #F5C518;
  --ltk-yellow: #F5C518;
  --ltk-yellow-dark: #E6B800;
  --ltk-light: #f4f4f4;
  --ltk-dark-text: #18171a;
  --ltk-font-body: "DM Sans", Arial, sans-serif;
  --ltk-font-heading: "Barlow Condensed", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ltk-page {
  margin: 0;
  background: var(--ltk-bg);
  color: var(--ltk-text);
  font-family: var(--ltk-font-body);
}

body.ltk-page a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

.ltk-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(13, 12, 15, 0.56);
  backdrop-filter: blur(8px);
}

.ltk-header-inner {
  width: min(100% - 88px, 1720px);
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.ltk-logo {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
}

.ltk-logo img,
.ltk-site-footer img {
  display: block;
  width: 260px;
  height: auto;
  object-fit: contain;
}

.ltk-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 33px);
  color: var(--ltk-text);
  font-family: var(--ltk-font-heading);
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ltk-nav a {
  transition: color 0.2s ease;
}

.ltk-nav a:hover {
  color: var(--ltk-accent);
}

.ltk-header-button,
.ltk-button,
.single_add_to_cart_button,
.woocommerce #payment #place_order,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  background: var(--ltk-accent);
  border: 0;
  border-radius: 4px;
  color: #111 !important;
  cursor: pointer;
  font-family: var(--ltk-font-body);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ltk-header-button:hover,
.ltk-button:hover,
.single_add_to_cart_button:hover,
.woocommerce #payment #place_order:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--ltk-yellow-dark);
  transform: translateY(-1px);
}

.ltk-header-button {
  min-width: 210px;
}

.ltk-main {
  min-height: 70vh;
}

.ltk-dx-container,
.ltk-container {
  width: min(1290px, calc(100% - 40px));
  margin: 0 auto;
}

.ltk-dx-hero {
  position: relative;
  min-height: 675px;
  overflow: hidden;
  background: var(--ltk-bg);
}

.ltk-dx-hero__video,
.ltk-dx-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ltk-dx-hero__video {
  object-fit: cover;
}

.ltk-dx-hero__shade {
  background:
    linear-gradient(90deg, #111 0%, rgba(17, 17, 17, 0.96) 29%, rgba(17, 17, 17, 0.62) 52%, rgba(17, 17, 17, 0.04) 82%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.35), rgba(17, 17, 17, 0.18));
}

.ltk-dx-hero__content {
  position: absolute;
  left: max(60px, calc((100vw - 1780px) / 2 + 60px));
  top: 50%;
  z-index: 2;
  width: min(580px, calc(100% - 40px));
  transform: translateY(-43%);
}

.ltk-dx-hero__content h1 {
  margin: 0;
  color: #fff;
  font-family: var(--ltk-font-heading);
  font-size: clamp(56px, 4.25vw, 78px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ltk-dx-hero__content h1 span {
  display: block;
  color: var(--ltk-yellow);
}

.ltk-dx-hero__content p {
  max-width: 430px;
  margin: 22px 0 30px;
  color: #d7d7d7;
  font-size: 18px;
  line-height: 1.55;
}

.ltk-dx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ltk-dx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 4px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.ltk-dx-btn:hover {
  transform: translateY(-1px);
}

.ltk-dx-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.ltk-dx-btn--primary {
  background: var(--ltk-yellow);
  color: #111;
}

.ltk-dx-btn--primary:hover {
  background: var(--ltk-yellow-dark);
}

.ltk-dx-btn--ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.46);
}

.ltk-dx-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.ltk-dx-hero-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #1a1a1a;
  border-top: 1px solid #2a2a2a;
  color: #d7d7d7;
}

.ltk-dx-hero-feat {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 34px;
  border-right: 1px solid #2a2a2a;
  font-weight: 700;
}

.ltk-dx-hero-feat:last-child {
  border-right: 0;
}

.ltk-dx-hero-feat svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: #9c9c9c;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.ltk-dx-service-grid {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
}

.ltk-dx-service-card {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 42px;
  color: #fff;
}

.ltk-dx-service-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.ltk-dx-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(24, 23, 26, 0.06), rgba(24, 23, 26, 0.78));
  transition: background 0.25s ease;
}

.ltk-dx-service-card:hover::before {
  background: linear-gradient(180deg, rgba(245, 197, 24, 0.08), rgba(13, 12, 15, 0.9));
}

.ltk-dx-service-card span {
  position: relative;
  z-index: 2;
}

.ltk-dx-service-card span {
  display: grid;
  gap: 12px;
}

.ltk-dx-service-card strong {
  font-family: var(--ltk-font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.ltk-why {
  padding: clamp(70px, 8vw, 96px) 60px clamp(82px, 8vw, 112px);
  background: #fff;
  color: #111;
  text-align: center;
}

.ltk-why__label {
  margin-bottom: 16px;
  color: var(--ltk-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.ltk-why h2 {
  margin: 0 0 70px;
  color: #111;
  font-family: var(--ltk-font-heading);
  font-size: clamp(42px, 3.9vw, 60px);
  font-weight: 900;
  line-height: 1;
}

.ltk-why__grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.ltk-why-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 0 14px;
}

.ltk-why-card__icon {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: #f5f5f5;
  border-radius: 50%;
}

.ltk-why-card__icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #333;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.ltk-why-card h3 {
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 800;
}

.ltk-why-card p {
  max-width: 270px;
  margin: 0;
  color: #666;
  font-size: 17px;
  line-height: 1.65;
}

.ltk-dx-about {
  padding: clamp(86px, 10vw, 150px) 0;
  background: var(--ltk-bg);
}

.ltk-dx-about__grid {
  display: grid;
  grid-template-columns: 43.8% 56.2%;
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.ltk-dx-about__copy h2,
.ltk-dx-section-title h2,
.ltk-dx-contact h2 {
  margin: 0;
  font-family: var(--ltk-font-heading);
  font-size: clamp(54px, 7.3vw, 112px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ltk-dx-about__copy h2 span {
  color: #fff;
}

.ltk-dx-about__copy h2 em {
  color: var(--ltk-accent-2);
  font-style: normal;
}

.ltk-dx-about__copy p:not(.ltk-dx-kicker) {
  max-width: 520px;
  color: var(--ltk-muted);
  font-size: 18px;
  line-height: 1.7;
}

.ltk-dx-lead {
  margin-top: 34px;
  color: #fff !important;
  font-size: 22px !important;
}

.ltk-dx-phone {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  color: #fff;
  font-family: var(--ltk-font-heading);
  font-size: 22px;
  font-weight: 600;
}

.ltk-dx-phone span {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ltk-accent);
  border-radius: 50%;
}

.ltk-dx-about__images {
  display: grid;
  grid-template-columns: 68% 32%;
  align-items: end;
}

.ltk-dx-about__images img {
  display: block;
  width: 100%;
}

.ltk-dx-about__main {
  position: relative;
  z-index: 2;
}

.ltk-dx-about__side {
  margin: 0 0 90px -128%;
}

.ltk-dx-features {
  padding: 0 0 clamp(80px, 9vw, 135px);
  background: var(--ltk-bg);
}

.ltk-dx-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  text-align: center;
}

.ltk-dx-feature {
  display: grid;
  justify-items: center;
  gap: 14px;
  color: #fff;
}

.ltk-dx-feature span {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--ltk-accent-2);
  font-family: var(--ltk-font-heading);
  font-size: 26px;
  font-weight: 600;
}

.ltk-dx-feature h3 {
  margin: 0;
  font-family: var(--ltk-font-heading);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.ltk-dx-feature p {
  margin: 0;
  color: var(--ltk-muted);
}

.ltk-dx-feature b,
.ltk-dx-news-card a {
  color: var(--ltk-accent-2);
  font-family: var(--ltk-font-heading);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.ltk-dx-marquee {
  min-height: 8.7vw;
  overflow: hidden;
  background: var(--ltk-bg);
}

.ltk-dx-marquee div {
  display: flex;
  width: max-content;
  animation: ltk-marquee 22s linear infinite;
}

.ltk-dx-marquee span {
  padding-right: 50px;
  color: #232225;
  font-family: var(--ltk-font-heading);
  font-size: 11.46vw;
  font-weight: 600;
  line-height: 0.78;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes ltk-marquee {
  from {
    transform: translateX(0);
  }

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

.ltk-dx-split-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ltk-dx-split-cta__panel {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 20px;
  overflow: hidden;
  padding: 25% 10%;
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.ltk-dx-split-cta__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 23, 26, 0.5);
}

.ltk-dx-split-cta__panel:nth-child(2)::before {
  background: rgba(16, 11, 5, 0.4);
}

.ltk-dx-split-cta__panel span,
.ltk-dx-split-cta__panel strong,
.ltk-dx-split-cta__panel em {
  position: relative;
  z-index: 1;
}

.ltk-dx-split-cta__panel span {
  color: #fff;
  font-family: var(--ltk-font-heading);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.ltk-dx-split-cta__panel strong {
  max-width: 620px;
  font-family: var(--ltk-font-heading);
  font-size: clamp(48px, 6.2vw, 94px);
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
}

.ltk-dx-split-cta__panel em,
.ltk-dx-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: #fff;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.ltk-dx-split-cta__panel em:hover,
.ltk-dx-outline:hover {
  background: var(--ltk-accent);
  border-color: var(--ltk-accent);
  color: #111;
  transform: translateY(-1px);
}

.ltk-dx-testimonials {
  padding: clamp(86px, 9vw, 140px) 0;
  background: var(--ltk-bg);
  text-align: center;
}

.ltk-dx-testimonials blockquote {
  max-width: 1040px;
  margin: 0 auto;
}

.ltk-dx-testimonials p {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 4.2vw, 64px);
  line-height: 1.15;
}

.ltk-dx-testimonials cite {
  display: grid;
  gap: 8px;
  margin-top: 34px;
  font-style: normal;
}

.ltk-dx-testimonials strong {
  font-family: var(--ltk-font-heading);
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

.ltk-dx-testimonials span {
  color: var(--ltk-muted);
}

.ltk-dx-testimonials__faces {
  display: inline-flex;
  gap: 22px;
  margin-top: 44px;
}

.ltk-dx-testimonials__faces img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  opacity: 0.6;
  object-fit: cover;
}

.ltk-dx-testimonials__faces img:first-child {
  opacity: 1;
  outline: 3px solid var(--ltk-accent-2);
}

.ltk-dx-counters {
  padding: clamp(74px, 8vw, 116px) 0;
  background: var(--ltk-accent);
}

.ltk-dx-counter-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.ltk-dx-counter-grid div {
  text-align: center;
}

.ltk-dx-counter-grid strong {
  display: block;
  color: rgba(17, 17, 17, 0.14);
  font-family: var(--ltk-font-heading);
  font-size: clamp(86px, 11vw, 170px);
  font-weight: 600;
  line-height: 0.82;
}

.ltk-dx-counter-grid span {
  color: #111;
  font-family: var(--ltk-font-heading);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.ltk-dx-news {
  padding: clamp(86px, 9vw, 140px) 0;
  background: var(--ltk-bg);
}

.ltk-dx-section-title {
  margin-bottom: 72px;
  color: #fff;
  text-align: center;
}

.ltk-dx-kicker {
  color: var(--ltk-accent-2);
  font-size: 16px;
  font-weight: 700;
}

.ltk-dx-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.ltk-dx-news-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 22px;
  color: #fff;
}

.ltk-dx-news-card div {
  display: flex;
  gap: 16px;
  color: var(--ltk-muted);
  font-size: 14px;
}

.ltk-dx-news-card div span {
  color: var(--ltk-accent-2);
}

.ltk-dx-news-card h3 {
  min-height: 96px;
  margin: 0;
  font-family: var(--ltk-font-heading);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 600;
  line-height: 1.02;
  text-transform: uppercase;
}

.ltk-dx-news-card img {
  width: 100%;
  aspect-ratio: 1 / 0.74;
  object-fit: cover;
}

.ltk-dx-news__button {
  margin: 50px 0 0;
  text-align: center;
}

.ltk-dx-outline {
  color: #fff;
}

.ltk-dx-contact {
  display: grid;
  grid-template-columns: 57% 43%;
  align-items: center;
  background: var(--ltk-bg);
}

.ltk-dx-contact__image img {
  display: block;
  width: 100%;
  min-height: 640px;
  object-fit: cover;
}

.ltk-dx-contact__form {
  padding: clamp(40px, 6vw, 100px) clamp(32px, 6vw, 110px);
}

.ltk-dx-contact__form h2 {
  color: #fff;
  font-size: clamp(48px, 6vw, 92px);
}

.ltk-dx-contact form {
  display: grid;
  gap: 26px;
  margin-top: 40px;
}

.ltk-dx-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ltk-dx-contact input,
.ltk-dx-contact textarea {
  width: 100%;
  padding: 0 0 18px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  color: #fff;
  font: inherit;
  outline: 0;
}

.ltk-dx-contact textarea {
  min-height: 132px;
  resize: vertical;
}

.ltk-dx-contact input::placeholder,
.ltk-dx-contact textarea::placeholder {
  color: var(--ltk-muted);
}

.ltk-dx-contact button {
  width: fit-content;
  min-height: 52px;
  padding: 0 28px;
  background: var(--ltk-accent);
  border: 0;
  border-radius: 4px;
  color: #111;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.ltk-dx-contact button:hover {
  background: var(--ltk-yellow-dark);
  transform: translateY(-1px);
}

.ltk-dx-instagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  background: var(--ltk-bg);
}

.ltk-dx-instagram img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.ltk-dx-instagram a {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  background: var(--ltk-accent);
  border-radius: 4px;
  color: #111;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease;
}

.ltk-dx-instagram a:hover {
  background: var(--ltk-yellow-dark);
}

.ltk-site-footer {
  padding: 0;
  background: var(--ltk-surface-2);
  border-top: 1px solid var(--ltk-line);
}

.ltk-footer-inner {
  width: min(1290px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 112px) 0 42px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 0.72fr;
  gap: 42px;
}

.ltk-site-footer h6 {
  margin: 0 0 22px;
  color: #fff;
  font-family: var(--ltk-font-heading);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.ltk-site-footer p,
.ltk-site-footer li {
  color: var(--ltk-muted);
  line-height: 1.7;
}

.ltk-site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ltk-site-footer a:hover {
  color: var(--ltk-accent-2);
}

.ltk-footer-bottom {
  width: min(1290px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--ltk-line);
  color: var(--ltk-muted);
  font-size: 14px;
}

.ltk-section {
  padding: clamp(80px, 9vw, 140px) 0;
}

.ltk-section-light {
  background: var(--ltk-light);
  color: var(--ltk-dark-text);
}

.ltk-section-dark {
  background: var(--ltk-bg);
  color: var(--ltk-text);
}

.ltk-section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.ltk-section-heading h2,
.ltk-content h1,
.ltk-content h2,
.ltk-cta h2,
.ltk-hero h1,
.ltk-section h2 {
  margin: 0 0 22px;
  font-family: var(--ltk-font-heading);
  font-size: clamp(46px, 7vw, 94px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ltk-section-heading p,
.ltk-content p,
.ltk-panel p,
.ltk-faq p,
.ltk-course-card p,
.ltk-cta p,
.ltk-feature-list p {
  color: var(--ltk-muted);
  font-size: 18px;
  line-height: 1.65;
}

.ltk-course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.ltk-course-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d9d9d9;
  color: var(--ltk-dark-text);
}

.ltk-card-link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
}

.ltk-course-card img {
  display: block;
  width: calc(100% + 60px);
  aspect-ratio: 16 / 10;
  margin: -30px -30px 28px;
  object-fit: cover;
}

.ltk-course-card h3,
.ltk-panel h3,
.ltk-feature-list h3 {
  margin: 0 0 14px;
  font-family: var(--ltk-font-heading);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.ltk-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 24px;
}

.ltk-price {
  display: inline-flex;
  align-items: center;
  color: var(--ltk-accent);
  font-family: var(--ltk-font-heading);
  font-size: 36px;
  font-weight: 600;
  white-space: nowrap;
}

.ltk-two-col,
.ltk-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.ltk-content {
  max-width: 780px;
}

.ltk-feature-list {
  display: grid;
  gap: 18px;
}

.ltk-feature-list article,
.ltk-panel,
.ltk-faq details,
.ltk-testimonials blockquote {
  padding: 30px;
  background: var(--ltk-surface);
  border: 1px solid var(--ltk-line);
}

.ltk-hero {
  padding: clamp(120px, 14vw, 190px) 0 clamp(72px, 9vw, 130px);
  background:
    linear-gradient(90deg, rgba(13, 12, 15, 0.94), rgba(13, 12, 15, 0.68)),
    url("../../hero-video-poster.jpg") center / cover no-repeat;
}

.ltk-hero-compact {
  padding: clamp(128px, 13vw, 170px) 0 clamp(72px, 8vw, 110px);
}

.ltk-buy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
}

.ltk-button-secondary {
  background: var(--ltk-surface-2);
  color: #fff !important;
}

.quantity,
.cart .quantity,
.woocommerce-cart-form,
.cart_totals,
.widget_shopping_cart {
  display: none !important;
}

.ltk-media {
  min-height: 360px;
  background: var(--ltk-surface-2);
}

.ltk-media video,
.ltk-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.ltk-checklist,
.ltk-timeline {
  margin: 0 0 26px;
  padding-left: 22px;
  color: var(--ltk-text);
  line-height: 1.8;
}

.ltk-faq {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.ltk-faq summary {
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}

.woocommerce form.checkout {
  max-width: 840px;
  margin: 0 auto;
}

.woocommerce form .form-row input.input-text {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid #d9d9d9;
  border-radius: 0;
}

.woocommerce-checkout-review-order,
.woocommerce-billing-fields,
.woocommerce-account-fields {
  padding: 28px;
  background: #fff;
  border: 1px solid #d9d9d9;
}

@media (max-width: 1279px) {
  .ltk-header-inner {
    width: min(100% - 40px, 1290px);
  }

  .ltk-nav {
    gap: 16px;
    font-size: 15px;
  }

  .ltk-header-button {
    min-width: 180px;
    padding-inline: 22px;
  }

  .ltk-dx-hero-features,
  .ltk-dx-service-grid,
  .ltk-why__grid,
  .ltk-dx-feature-grid,
  .ltk-dx-counter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ltk-dx-hero-feat:nth-child(2) {
    border-right: 0;
  }

  .ltk-dx-about__grid,
  .ltk-dx-contact {
    grid-template-columns: 1fr 1fr;
  }

  .ltk-dx-about__side {
    margin-left: -50px;
  }
}

@media (max-width: 900px) {
  .ltk-site-header {
    position: relative;
    background: var(--ltk-bg);
  }

  .ltk-header-inner,
  .ltk-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .ltk-header-inner {
    height: auto;
    display: flex;
    padding: 18px 0;
  }

  .ltk-nav {
    flex-wrap: wrap;
  }

  .ltk-dx-hero {
    min-height: 640px;
  }

  .ltk-dx-hero__content {
    left: 20px;
    right: 20px;
    top: 52%;
    width: auto;
    transform: translateY(-50%);
  }

  .ltk-dx-service-grid,
  .ltk-dx-split-cta,
  .ltk-dx-news-grid,
  .ltk-dx-contact,
  .ltk-dx-about__grid,
  .ltk-two-col,
  .ltk-hero-grid {
    grid-template-columns: 1fr;
  }

  .ltk-dx-service-card {
    min-height: 360px;
  }

  .ltk-dx-about__images {
    grid-template-columns: 1fr;
  }

  .ltk-dx-about__side {
    display: none;
  }

  .ltk-dx-contact__image img {
    min-height: 380px;
  }

  .ltk-dx-instagram {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ltk-footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .ltk-logo {
    min-width: 0;
  }

  .ltk-logo img,
  .ltk-site-footer img {
    width: 220px;
  }

  .ltk-header-button {
    width: 100%;
  }

  .ltk-dx-hero__content h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .ltk-dx-hero__content p {
    font-size: 18px;
  }

  .ltk-dx-btn {
    width: 100%;
  }

  .ltk-dx-hero-features,
  .ltk-dx-service-grid,
  .ltk-why__grid,
  .ltk-dx-feature-grid,
  .ltk-dx-counter-grid,
  .ltk-dx-form-row,
  .ltk-footer-inner {
    grid-template-columns: 1fr;
  }

  .ltk-dx-split-cta__panel {
    min-height: 420px;
  }

  .ltk-why {
    padding: 58px 20px 70px;
  }

  .ltk-why__label {
    letter-spacing: 4px;
  }

  .ltk-why h2 {
    margin-bottom: 44px;
  }

  .ltk-dx-news-card h3 {
    min-height: auto;
  }

  .ltk-dx-hero-feat {
    border-right: 0;
    border-bottom: 1px solid var(--ltk-line);
  }

  .ltk-dx-hero-feat:last-child {
    border-bottom: 0;
  }
}
