@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/roboto/roboto-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/roboto/roboto-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/roboto/roboto-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --kc-soft: #E7E4DAFA;
  --kc-light: #FBF9ED;
  --kc-primary: #134AC7;
  --kc-ink: #0f172a;
  --kc-muted: #6b7280;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Roboto", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--kc-ink);
  background-color: var(--kc-light);
}

main {
  background: linear-gradient(180deg, var(--kc-soft) 0%, var(--kc-light) 24%);
}

.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: 1100px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

#site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background-color: rgba(251, 249, 237, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

#site-header.scrolled {
  border-color: #dfe5ef;
  box-shadow: 0 2px 16px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--kc-ink);
  text-decoration: none;
}

.header-logo img {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.header-nav a {
  padding: 0.5rem 0.82rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--kc-muted);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-nav a:hover {
  color: var(--kc-ink);
  background: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-switcher {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid #d9e0eb;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--kc-muted);
  line-height: 1.2;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lang-toggle:hover {
  color: var(--kc-primary);
  border-color: var(--kc-primary);
}

.lang-toggle-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.lang-caret {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.lang-switcher.open .lang-caret {
  transform: rotate(180deg);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 132px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.45rem;
  border: 1px solid #d9e0eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.lang-switcher.open .lang-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  color: var(--kc-ink);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
}

.lang-menu a:hover {
  color: var(--kc-primary);
  background: #f3f6fd;
}

.kt-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--kc-primary);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.15rem;
  box-shadow: 0 10px 24px rgba(19, 74, 199, 0.24);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.kt-header-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--kc-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 1039;
  background: rgba(251, 249, 237, 0.98);
  border-bottom: 1px solid #dfe5ef;
  padding: 0.95rem 1rem 1.2rem;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  color: var(--kc-ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.72rem 0.95rem;
  border-radius: 10px;
}

.mobile-menu a:hover {
  background: #fff;
}

.mobile-menu .mobile-cta {
  margin-top: 0.4rem;
  text-align: center;
  background: var(--kc-primary);
  color: #fff;
  font-weight: 700;
}

.mobile-lang-switcher {
  position: relative;
  margin-top: 0.35rem;
  width: max-content;
}

.mobile-menu .mobile-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid #d9e0eb;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--kc-muted);
  font-weight: 600;
}

.mobile-menu .mobile-lang-toggle:hover {
  color: var(--kc-primary);
  border-color: var(--kc-primary);
  background: #fff;
}

.mobile-lang-switcher.open .lang-caret {
  transform: rotate(180deg);
}

.mobile-lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 120px;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.4rem;
  border: 1px solid #d9e0eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.mobile-lang-switcher.open .mobile-lang-menu {
  display: flex;
}

.mobile-lang-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  color: var(--kc-ink);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
}

.mobile-lang-menu a:hover {
  color: var(--kc-primary);
  background: #f3f6fd;
}

@media (max-width: 991.98px) {
  .header-nav {
    display: none;
  }

  .en-home-kt .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .header-inner {
    height: 62px;
    padding: 0 1.5rem;
  }

  .header-actions {
    gap: 0.45rem;
    flex-shrink: 0;
  }

  .lang-switcher {
    display: block;
  }

  .lang-toggle {
    padding: 0.45rem 0.58rem;
    font-size: 0.76rem;
  }

  .lang-toggle-icon {
    width: 12px;
    height: 12px;
  }

  .kt-header-cta {
    display: inline-flex;
    padding: 0.45rem 0.88rem;
    font-size: 0.76rem;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu .mobile-cta,
  .mobile-lang-switcher {
    display: none;
  }

  .mobile-menu {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .header-logo {
    gap: 0.45rem;
    font-size: 1.05rem;
  }

  .header-logo img {
    width: 28px;
    height: 28px;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .lang-toggle {
    padding: 0.4rem 0.5rem;
    font-size: 0.72rem;
  }

  .kt-header-cta {
    padding: 0.4rem 0.72rem;
    font-size: 0.72rem;
  }

  .hamburger {
    padding: 2px;
  }

  .hamburger span {
    width: 22px;
  }
}

@media (min-width: 992px) {
  .header-inner {
    padding: 0 1.5rem;
  }

  .mobile-menu {
    display: none !important;
  }
}

.en-home-kt #hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background: linear-gradient(160deg, #FBF9ED 60%, #e8eeff 100%);
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  .en-home-kt #hero {
    padding-top: 3rem;
  }
}

.en-home-kt #hero .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.en-home-kt #hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(19, 74, 199, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.en-home-kt #hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.en-home-kt #hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #e8eeff;
  color: #134AC7;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(19, 74, 199, 0.15);
}

.en-home-kt #hero .hero-title {
  margin-bottom: 1.25rem;
  color: #1a1a2e;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.2;
  font-weight: 700;
}

.en-home-kt #hero .hero-subtitle {
  font-size: 1.15rem;
  color: #6b6b80;
  margin-bottom: 2rem;
  font-weight: 400;
}

.en-home-kt #hero .hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.en-home-kt #hero .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 500;
  background: #fff;
  color: #1a1a2e;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  border: 1px solid #dddbd0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.en-home-kt #hero .hero-pill .check,
.en-home-kt #hero .hero-pill i.check {
  color: #134AC7;
}

.en-home-kt #hero .hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.en-home-kt #hero .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #134AC7;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(19, 74, 199, 0.25);
}

.en-home-kt #hero .btn-primary:hover {
  background: #0e3aa0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(19, 74, 199, 0.35);
}

.en-home-kt #hero .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #134AC7;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid #134AC7;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.en-home-kt #hero .btn-outline:hover {
  background: #134AC7;
  color: #fff;
}

.en-home-kt #hero .hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #6b6b80;
}

.en-home-kt #hero .hero-trust .stars {
  color: #f59e0b;
  letter-spacing: 0.02em;
}

.en-home-kt #hero .hero-trust .fa-star {
  color: #f59e0b;
}

.en-home-kt #hero .hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(19, 74, 199, 0.12);
}

.en-home-kt #hero .hero-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 20px;
}

.en-home-kt .brand-strip {
  padding: 2rem 0;
  border-top: 1px solid #dddbd0;
  border-bottom: 1px solid #dddbd0;
  background: #fff;
}

.en-home-kt .brand-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.en-home-kt .brand-strip-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b6b80;
  margin-right: 0.5rem;
}

.en-home-kt .brand-pill {
  font-size: 0.78rem;
  font-weight: 600;
  color: #6b6b80;
  padding: 0.35rem 0.85rem;
  border: 1px solid #dddbd0;
  border-radius: 50px;
  background: #fff;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.en-home-kt #pricing {
  background: #f3f1e7;
  padding: 5rem 0;
}

.en-home-kt #pricing .section-header {
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.en-home-kt #pricing .section-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #134AC7;
  margin-bottom: 0.5rem;
}

.en-home-kt #pricing h2 {
  color: #1a1a2e;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.en-home-kt #pricing .small-note {
  font-size: 0.8rem;
  color: #6b6b80;
  text-align: center;
  margin-bottom: 0;
}

.en-home-kt #pricing .pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.en-home-kt #pricing .pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid #dddbd0;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.en-home-kt #pricing .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(19, 74, 199, 0.12);
}

.en-home-kt #pricing .pricing-card.featured {
  border-color: #134AC7;
  border-width: 2px;
  background: linear-gradient(145deg, #fff 80%, #e8eeff);
}

.en-home-kt #pricing .pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #134AC7;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.en-home-kt #pricing .pricing-badge--outline {
  background: #fff;
  color: #134AC7;
  border: 1.5px solid #134AC7;
}

.en-home-kt #pricing .pricing-old {
  font-size: 1rem;
  color: #6b6b80;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.en-home-kt #pricing .pricing-price {
  font-weight: 700;
  font-size: 2.5rem;
  color: #1a1a2e;
  line-height: 1;
  margin-bottom: 1rem;
  display: flex;
  align-items: end;
  white-space: nowrap;
}

.en-home-kt #pricing .pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #6b6b80;
  margin-left: 0.5rem;
}

.en-home-kt #pricing .pricing-subtitle {
  font-size: 0.85rem;
  color: #6b6b80;
  margin-bottom: 0.6rem;
}

.en-home-kt #pricing .pricing-inner {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  justify-content: space-between;
}

.en-home-kt #pricing .pricing-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.en-home-kt #pricing .pricing-left .btn-primary {
  margin-top: auto;
}

.en-home-kt #pricing .pricing-img-col {
  flex-shrink: 0;
  width: 105px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.en-home-kt #pricing .pricing-img-col img {
  width: 105px;
  height: 105px;
  object-fit: contain;
  border-radius: 8px;
}

.en-home-kt #pricing .pricing-features {
  list-style: none;
  margin-bottom: 1.25rem;
  padding-left: 0;
}

.en-home-kt #pricing .pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: #6b6b80;
  padding: 0.3rem 0;
  border-bottom: 1px solid #f3f1e7;
}

.en-home-kt #pricing .pricing-features li:last-child {
  border-bottom: none;
}

.en-home-kt #pricing .pricing-features .check,
.en-home-kt #pricing .pricing-features i.check {
  color: #134AC7;
  flex-shrink: 0;
  margin-top: 2px;
}

.en-home-kt #pricing .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #134AC7;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(19, 74, 199, 0.25);
}

.en-home-kt #pricing .btn-primary:hover {
  background: #0e3aa0;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(19, 74, 199, 0.35);
}

.en-home-kt #pricing .benefits-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #dddbd0;
}

.en-home-kt #pricing .benefit-item {
  text-align: center;
  border-radius: 20px;
  padding: 1.25rem 0.75rem;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.en-home-kt #pricing .benefit-item i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
  color: #134AC7;
}

.en-home-kt #pricing .benefit-item h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.2rem;
}

.en-home-kt #pricing .benefit-item p {
  font-size: 0.75rem;
  color: #6b6b80;
  margin: 0;
}

.en-home-kt #gallery {
  background: #FBF9ED;
  padding: 5rem 0;
}

.en-home-kt #gallery .section-header {
  margin-bottom: 2rem;
}

.en-home-kt #gallery .section-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #134AC7;
  margin-bottom: 0.5rem;
}

.en-home-kt #gallery h2 {
  color: #1a1a2e;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
}

.en-home-kt #gallery .gallery-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.en-home-kt #gallery .gallery-mosaic-tall {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(19, 74, 199, 0.07);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 3 / 4;
}

.en-home-kt #gallery .gallery-mosaic-tall:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(19, 74, 199, 0.12);
}

.en-home-kt #gallery .gallery-mosaic-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.en-home-kt #gallery .gallery-mosaic-item {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(19, 74, 199, 0.07);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 4 / 3;
}

.en-home-kt #gallery .gallery-mosaic-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(19, 74, 199, 0.12);
}

.en-home-kt #gallery .gallery-mosaic-tall img,
.en-home-kt #gallery .gallery-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.en-home-kt #gallery .gallery-mosaic-tall:hover img,
.en-home-kt #gallery .gallery-mosaic-item:hover img {
  transform: scale(1.04);
}

@media (max-width: 991.98px) {
  .en-home-kt #pricing {
    padding-bottom: 2.25rem;
  }

  .en-home-kt #pricing .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }

  .en-home-kt #pricing .pricing-card {
    margin-bottom: 3rem;
  }

  .en-home-kt #pricing .benefits-strip {
    grid-template-columns: repeat(3, 1fr);
    margin-top: calc(3rem - 10px);
    padding-top: calc(2.5rem - 10px);
    padding-bottom: 30px;
    gap: calc(1rem - 10px);
  }

  .en-home-kt #gallery .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .en-home-kt #gallery .gallery-mosaic-tall {
    display: none;
  }

  .en-home-kt #hero {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
  }

  .en-home-kt #hero .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .en-home-kt #hero .hero-image-wrap {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }

  .en-home-kt #hero .hero-grid > .hero-image-wrap {
    order: -1;
    margin-bottom: 0.6rem;
  }

  .en-home-kt #hero .hero-cta {
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .en-home-kt #hero .hero-cta .btn-primary,
  .en-home-kt #hero .hero-cta .btn-outline {
    font-size: 0.85rem;
    padding: 0.7rem 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .en-home-kt #pricing .benefits-strip {
    grid-template-columns: 1fr 1fr;
  }

  .en-home-kt #gallery .gallery-mosaic {
    gap: 0.6rem;
  }

  .en-home-kt #hero {
    padding-top: 0.9rem;
    padding-bottom: 2.25rem;
  }

  .en-home-kt #hero .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .en-home-kt #hero .hero-grid {
    gap: 0.75rem;
  }

  .en-home-kt #hero .hero-title {
    margin-bottom: 0.25rem;
    font-size: 1.8rem;
  }

  .en-home-kt #hero .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .en-home-kt #hero .hero-grid > .hero-image-wrap {
    margin-bottom: 0.4rem;
  }
}

.navbar {
  background-color: rgba(251, 249, 237, 0.9);
  backdrop-filter: blur(8px);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hero {
  padding: 5rem 0 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #d6d3c7;
  background: #fff;
  font-size: 0.85rem;
}

.hero-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
  width: 100%;
  text-align: center;
}

.hero-badge-gold {
  border: 1px solid #c9a94d;
  background: linear-gradient(135deg, #fff9e0 0%, #f6dd90 100%);
  box-shadow: 0 0 0 4px rgba(233, 197, 90, 0.16);
  color: #4a3708;
  font-weight: 700;
}

.header-ortho-pill {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  margin-left: 0.25rem;
  white-space: nowrap;
}

.mobile-language-switcher {
  display: none;
}

.mobile-reorder-cta {
  display: none;
}

.btn-order-new {
  background: linear-gradient(135deg, #0f4cc9 0%, #2f6fe8 100%);
  border: 1px solid #d7b55a;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 76, 201, 0.24);
}

.btn-order-new:hover,
.btn-order-new:focus {
  background: linear-gradient(135deg, #0d45b6 0%, #2862d0 100%);
  border-color: #e0c271;
  color: #fff;
}

.mobile-reorder-note {
  margin: 0.32rem 0 0;
  font-size: 0.72rem;
  color: #465a84;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .header-ortho-pill {
    font-size: 0.65rem;
    padding: 0.22rem 0.45rem;
    margin-left: 0.1rem;
  }
}

.product-card {
  border-radius: 24px;
  background: #f1f5f9;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  width: 100%;
}

.hero-alert {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--kc-primary);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.hero-feature-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1.5px solid #b8cbf7;
  background: #edf3ff;
  color: #1142b0;
  font-size: 0.83rem;
  font-weight: 800;
  line-height: 1;
}

.product-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.btn-primary {
  background-color: var(--kc-primary);
  border-color: var(--kc-primary);
  box-shadow: 0 12px 30px rgba(19, 74, 199, 0.25);
}

.section-title {
  font-size: 0.9rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--kc-primary);
}

.section-muted {
  color: var(--kc-muted);
}

.en-about-kt .inner-hero {
  padding: 7rem 0 3.5rem;
  background: linear-gradient(160deg, #FBF9ED 60%, #e8eeff 100%);
  border-bottom: 1px solid #d9e0eb;
}

.en-about-kt .inner-hero .section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kc-primary);
  margin-bottom: 0.75rem;
}

.en-about-kt .inner-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  color: var(--kc-ink);
  font-weight: 800;
}

.en-about-kt .inner-hero .lead {
  font-size: 1.1rem;
  color: var(--kc-muted);
  max-width: 650px;
  margin-bottom: 0;
}

.en-about-kt .about-main {
  padding: 4rem 0 5rem;
}

.en-about-kt .about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.en-about-kt .about-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--kc-ink);
  margin: 2.5rem 0 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.en-about-kt .about-heading i {
  color: var(--kc-primary);
}

.en-about-kt .who-we-help-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.en-about-kt .who-we-help-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #d9e0eb;
  font-size: 0.95rem;
  color: var(--kc-muted);
  line-height: 1.65;
}

.en-about-kt .who-we-help-list li:last-child {
  border-bottom: none;
}

.en-about-kt .who-we-help-list i {
  color: var(--kc-primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.en-about-kt .founder-card {
  background: #fff;
  border: 1px solid #d9e0eb;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.en-about-kt .founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--kc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.en-about-kt .founder-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--kc-ink);
  margin-bottom: 0.2rem;
}

.en-about-kt .founder-title {
  font-size: 0.8rem;
  color: var(--kc-primary);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.en-about-kt .contact-info-box {
  background: #edece4;
  border: 1px solid #d3d0c5;
  border-radius: 18px;
  padding: 1.55rem 1.75rem;
  margin-top: 2rem;
}

.en-about-kt .contact-info-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.05rem;
}

.en-about-kt .contact-info-box p {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #4b556d;
  margin-bottom: 0.45rem;
}

.en-about-kt .contact-info-box p strong {
  color: #334155;
}

.en-about-kt .contact-info-box a {
  color: #134ac7;
  font-weight: 600;
  text-decoration: none;
}

.en-about-kt .contact-info-box .note {
  background: #dfe5f8;
  border: 1px solid #a8b9ef;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-top: 0.85rem;
}

.en-about-kt .contact-info-box .note p {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.en-about-kt .contact-info-box .contact-note-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.en-about-kt .contact-info-box .contact-note-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: #4b556d;
  margin-bottom: 0.3rem;
}

.en-about-kt .contact-info-box .contact-note-list li i {
  color: #134ac7;
  margin-top: 0.18rem;
  font-size: 0.82rem;
}

.en-about-kt .contact-info-box .note p:last-child {
  margin-bottom: 0;
}

.en-about-kt .about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.en-about-kt .about-value-card {
  background: #fff;
  border: 1px solid #d9e0eb;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
}

.en-about-kt .about-value-card .icon {
  font-size: 1.75rem;
  color: var(--kc-primary);
  margin-bottom: 0.85rem;
}

.en-about-kt .about-value-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--kc-ink);
  margin-bottom: 0.4rem;
}

.en-about-kt .about-value-card p {
  font-size: 0.85rem;
  color: var(--kc-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.en-about-kt .cta-banner {
  background: var(--kc-primary);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.en-about-kt .cta-banner h2 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.en-about-kt .cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.en-about-kt .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--kc-primary);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.2);
  text-decoration: none;
}

.en-about-kt .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.25);
  color: var(--kc-primary);
}

.en-legal-kt .inner-hero {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(160deg, #FBF9ED 60%, #e8eeff 100%);
  border-bottom: 1px solid #d9e0eb;
}

.en-legal-kt .inner-hero .section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kc-primary);
  margin-bottom: 0.75rem;
}

.en-legal-kt .inner-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
  color: var(--kc-ink);
  font-weight: 800;
}

.en-legal-kt .inner-hero .lead {
  font-size: 1.1rem;
  color: var(--kc-muted);
  max-width: 740px;
  margin-bottom: 0;
}

.en-legal-kt .inner-meta {
  font-size: 0.8rem;
  color: var(--kc-muted);
  margin-top: 0.65rem;
}

.en-legal-kt .legal-main {
  padding: 4rem 0 5rem;
}

.en-legal-kt .legal-content {
  max-width: 840px;
  margin: 0 auto;
}

.en-legal-kt .legal-content section {
  margin-top: 1.7rem;
}

.en-legal-kt .legal-content section:first-child {
  margin-top: 0;
}

.en-legal-kt .legal-content h2 {
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--kc-ink);
  margin: 0 0 0.8rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid #e0e8f8;
}

.en-legal-kt .legal-content h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--kc-ink);
  margin: 1.2rem 0 0.55rem;
}

.en-legal-kt .legal-content p,
.en-legal-kt .legal-content li {
  font-size: 0.95rem;
  color: var(--kc-muted);
  line-height: 1.74;
}

.en-legal-kt .legal-content p {
  margin-bottom: 0.9rem;
}

.en-legal-kt .legal-content ul,
.en-legal-kt .legal-content ol {
  padding-left: 1.45rem;
  margin-bottom: 0.9rem;
}

.en-legal-kt .legal-content li {
  margin-bottom: 0.38rem;
}

.en-legal-kt .legal-content strong {
  color: var(--kc-ink);
}

.en-legal-kt .legal-content a {
  color: var(--kc-primary);
}

.en-legal-kt .legal-content a:hover {
  color: #0f3ca3;
}

.en-legal-kt .legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.en-legal-kt .legal-content th {
  background: #f3f6fd;
  color: var(--kc-ink);
  text-align: left;
  padding: 0.75rem 0.95rem;
  border: 1px solid #d9e0eb;
}

.en-legal-kt .legal-content td {
  color: var(--kc-muted);
  padding: 0.75rem 0.95rem;
  border: 1px solid #d9e0eb;
}

.en-legal-kt .legal-content .note-box {
  background: #f3f6fd;
  border: 1px solid #d9e0eb;
  border-left: 4px solid var(--kc-primary);
  border-radius: 14px;
  padding: 1.15rem 1.3rem;
  margin: 1.2rem 0;
}

.en-legal-kt .legal-content .note-box p:last-child,
.en-legal-kt .legal-content .note-box ul:last-child,
.en-legal-kt .legal-content .note-box ol:last-child {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .en-legal-kt .inner-hero {
    padding: 3rem 0 2.8rem;
  }

  .en-legal-kt .legal-main {
    padding: 3.2rem 0 4.2rem;
  }

  .en-legal-kt .legal-content .note-box {
    padding: 1rem 1rem;
  }
}

@media (max-width: 991.98px) {
  .en-about-kt .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .en-about-kt .about-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .en-about-kt .inner-hero {
    padding: 6rem 0 2.8rem;
  }

  .en-about-kt .about-main {
    padding: 3.2rem 0 4.2rem;
  }

  .en-about-kt .about-values-grid {
    grid-template-columns: 1fr;
  }

  .en-about-kt .founder-card {
    flex-direction: column;
  }

  .en-about-kt .contact-info-box {
    padding: 1.4rem 1.2rem;
  }

  .en-about-kt .cta-banner {
    padding: 2.3rem 1.3rem;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.keepers-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.keepers-gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #E7E4DAFA;
}

.keepers-gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.keepers-gallery-caption {
  padding: 0.65rem 0.75rem 0.85rem;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #475569;
  background: #fff;
}

.keepers-spec-card {
  background: #FBF9ED;
  border: 1px solid rgba(19, 74, 199, 0.15);
  border-radius: 16px;
  padding: 1rem 1.1rem;
  height: 100%;
}

.keepers-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(19, 74, 199, 0.12);
}

.keepers-spec-row:last-child {
  border-bottom: 0;
}

.keepers-spec-key {
  font-weight: 700;
  color: #134AC7;
  white-space: nowrap;
}

.keepers-spec-value {
  text-align: right;
  color: #1f2937;
}

@media (min-width: 992px) {
  .keepers-gallery-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
  }

  .keepers-gallery-item img {
    aspect-ratio: 3 / 4;
  }
}

.keepers-steps {
  padding: 48px 0;
}

.steps-body {
  --steps-column-width: 56px;
  position: relative;
  padding-left: 0;
}

.steps-bar {
  position: absolute;
  left: calc((var(--steps-column-width) / 2) - 1px);
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.16);
  overflow: hidden;
}

.steps-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0px;
  border-radius: 999px;
  background: var(--kc-primary);
  will-change: height;
}

.step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(120px, 34vw, 230px);
  column-gap: 18px;
  padding: 18px 0 34px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.step-main {
  display: grid;
  grid-template-columns: var(--steps-column-width) minmax(0, 1fr);
  column-gap: 16px;
  align-items: start;
}

.step:last-child {
  border-bottom: 0;
  padding-bottom: 10px;
}

.step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  align-self: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(15, 23, 42, 0.18);
  border-radius: 999px;
  background: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.66);
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  user-select: none;
}

.step h3 {
  margin: 0 0 6px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.7);
  transition: color 180ms ease;
}

.step p {
  margin: 0;
  color: rgba(15, 23, 42, 0.52);
  transition: color 180ms ease;
  max-width: 60ch;
}

.step-media {
  margin: 0;
  align-self: center;
}

.step-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.step.active .step-number {
  box-shadow: 0 0 0 6px rgba(19, 74, 199, 0.16);
}

.step.complete .step-number {
  color: #fff;
  background: var(--kc-primary);
  border-color: var(--kc-primary);
}

.step.active h3 {
  color: var(--kc-primary);
}

.step.complete h3 {
  color: var(--kc-primary);
}

.step.active p {
  color: rgba(15, 23, 42, 0.64);
}

.step.complete p {
  color: rgba(15, 23, 42, 0.64);
}

@media (max-width: 767.98px) {
  .steps-body {
    --steps-column-width: 40px;
  }

  .step {
    grid-template-columns: minmax(0, 1fr) clamp(84px, 28vw, 104px);
    column-gap: 8px;
    padding: 14px 0 22px;
  }

  .step-main {
    column-gap: 8px;
  }

  .step-number {
    width: 27px;
    height: 27px;
    font-size: 17px;
  }

  .step h3 {
    margin-bottom: 4px;
    font-size: 1.05rem;
    white-space: nowrap;
  }

  .step p {
    max-width: none;
    font-size: 0.95rem;
  }

  .step-media img {
    border-radius: 14px;
  }
}

@media (min-width: 992px) {
  .steps-body {
    --steps-axis-shift: -10px;
  }

  .steps-bar {
    left: calc((var(--steps-column-width) / 2) - 1px + var(--steps-axis-shift));
  }

  .steps-body {
    --steps-media-track: clamp(170px, 20vw, 220px);
    max-width: min(100%, 950px);
    margin-inline: auto;
  }

  .step {
    grid-template-columns: minmax(0, 1fr) var(--steps-media-track);
    column-gap: clamp(12px, 1.4vw, 18px);
  }

  .step-main {
    column-gap: 20px;
  }

  .step-number {
    transform: translateX(var(--steps-axis-shift));
  }

  .steps-body .step-content {
    margin-left: 0;
  }
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(19, 74, 199, 0.12);
  color: var(--kc-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.benefit-card {
  border-radius: 18px;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  height: 100%;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(19, 74, 199, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--kc-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.pricing-card {
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: #fff;
  position: relative;
  overflow: visible;
}

.pricing-card .price {
  font-size: clamp(2.8rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.05;
  margin: 0.25rem 0 0.95rem;
}

.pricing-tier-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  height: 28px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(19, 74, 199, 0.12);
  border: 1px solid rgba(19, 74, 199, 0.28);
  color: #134ac7;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: none;
}

.pricing-card-layout {
  position: relative;
}

.pricing-card-content {
  --pricing-media-reserve: 140px;
  padding-right: 140px;
}

.pricing-card-content .btn {
  display: block;
  width: max-content;
  margin: 0.9rem auto 0;
  transform: translateX(calc(var(--pricing-media-reserve) / 2));
}

.pricing-card-media {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.pricing-card-media img {
  width: 150px;
  height: auto;
  display: block;
}

.benefit-pill {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(19, 74, 199, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fff8dc 0%, #f5dea0 100%);
  border: 1px solid #e2c374;
  box-shadow: 0 0 0 4px rgba(233, 197, 90, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-card {
  width: 100%;
}

.why-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.testimonial-card {
  border-radius: 18px;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  height: 100%;
}

.testimonial-stars {
  font-size: 1.05rem;
  color: #e69500;
  letter-spacing: 0.08rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e5e7eb;
}

.testimonial-avatar-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: #2563eb;
}

.form-section {
  border-radius: 24px;
  background: #fff;
  padding: 2rem;
  border: 1px solid #e5e7eb;
}

.reorder-choice-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.reorder-choice {
  display: block;
  margin: 0;
  cursor: pointer;
}

.reorder-choice-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reorder-choice-body {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #1a47b5;
  border-radius: 12px;
  padding: 0.52rem 0.56rem;
  background: #1f56cc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  min-height: 44px;
}

.reorder-choice-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  min-width: 0;
  width: 100%;
}

.reorder-choice-title {
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  font-size: 0.9rem;
}

.reorder-choice-price {
  margin-top: 0;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.1;
  white-space: nowrap;
}

.reorder-choice-upper .reorder-choice-body,
.reorder-choice-lower .reorder-choice-body {
  background: #1f56cc;
}

.reorder-choice-both .reorder-choice-body {
  background: #1f56cc;
}

.reorder-choice-input:checked + .reorder-choice-body {
  border-color: #1a47b5;
  box-shadow: inset 0 -4px 0 #f4cc63;
}

.reorder-choice-input:checked + .reorder-choice-body .reorder-choice-title {
  font-weight: 800;
}

.reorder-choice-input:checked + .reorder-choice-body .reorder-choice-price {
  font-weight: 700;
  color: #fff;
}

.reorder-choice-input:focus-visible + .reorder-choice-body {
  box-shadow: 0 0 0 3px rgba(244, 204, 99, 0.28);
}

.step-pill[data-reorder-step-pill] {
  cursor: pointer;
}

#reorderTotalCost {
  font-size: 1.3em;
  line-height: 1;
}

.step-pill[data-qr1-step-pill] {
  cursor: pointer;
}

#qr1TotalCost {
  font-size: 1.3em;
  line-height: 1;
}

.qr1-choice-list {
  border: 1px solid rgba(30, 80, 190, 0.2);
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  padding: 0.75rem 0.9rem;
}

.qr1-choice-item {
  margin-bottom: 0.55rem;
}

.qr1-choice-item:last-child {
  margin-bottom: 0;
}

.qr1-choice-item .form-check-input {
  margin-top: 0.32rem;
}

.qr1-choice-item .form-check-label {
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.qr1-shipping-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.45rem;
  padding: 0.1rem 0.48rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.24);
  background: rgba(37, 99, 235, 0.08);
  color: #1f56cc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  vertical-align: middle;
}

.qr1-shipping-pill::before {
  content: "";
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: #1f56cc;
}

.qr1-section-title {
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #0b1f4b;
  margin-bottom: 0.55rem;
}

.contact-intro ul {
  display: inline-block;
  text-align: left;
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.en-home-kt #faq {
  background: #FBF9ED;
  padding: 5rem 0;
}

.en-home-kt #faq .section-header {
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.en-home-kt #faq .section-header h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--kc-ink);
}

.en-home-kt #faq .section-header .section-label {
  color: var(--kc-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.en-home-kt #faq .section-header p {
  color: var(--kc-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.en-home-kt #faq .faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.en-home-kt #faq .faq-item {
  border-bottom: 1px solid #d9e0eb;
  padding: 0.25rem 0;
}

.en-home-kt #faq .faq-item:first-child {
  border-top: 1px solid #d9e0eb;
}

.en-home-kt #faq .faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--kc-ink);
  transition: color 0.25s ease;
}

.en-home-kt #faq .faq-question:hover {
  color: var(--kc-primary);
}

.en-home-kt #faq .faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.en-home-kt #faq .faq-chevron i {
  font-size: 0.8rem;
}

.en-home-kt #faq .faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.en-home-kt #faq .faq-item.open .faq-question {
  color: var(--kc-primary);
}

.en-home-kt #faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.en-home-kt #faq .faq-answer-inner {
  padding-bottom: 1.1rem;
  font-size: 0.9rem;
  color: var(--kc-muted);
  line-height: 1.7;
}

.en-home-kt #faq .faq-item.open .faq-answer {
  max-height: 400px;
}

.step-indicator {
  display: flex;
  gap: 0.5rem;
}

.step-pill {
  flex: 1;
  text-align: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--kc-muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.step-pill.active {
  background: rgba(19, 74, 199, 0.12);
  color: var(--kc-primary);
}

.info-box {
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid rgba(19, 74, 199, 0.2);
  background: rgba(19, 74, 199, 0.06);
}

.footer {
  background: #0b1f4b;
  color: #e2e8f0;
}

.footer a {
  color: #e2e8f0;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer .footer-mobile-links h3 {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.footer-link-list li {
  margin-bottom: 0.42rem;
}

.footer-link-list li:last-child {
  margin-bottom: 0;
}

.footer-link-list a {
  font-size: 0.94rem;
  line-height: 1.45;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 0.8rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.35);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.footer-social-link svg {
  width: 1.36rem;
  height: 1.36rem;
  fill: currentColor;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

.footer-contact {
  margin-top: 0;
}

html[lang="lv"] .footer-link-list a {
  font-size: 0.93rem;
  line-height: 1.42;
}

html[lang="ru"] .footer .footer-mobile-links h3 {
  font-size: 0.98rem;
  letter-spacing: 0;
}

html[lang="ru"] .footer-link-list a {
  font-size: 0.91rem;
  line-height: 1.38;
}

.footer .footer-mobile-copy {
  margin-top: 1.25rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(226, 232, 240, 0.2);
  font-size: 0.9rem;
  color: #cbd5e1;
  text-align: center;
}

.en-home-kt #contact {
  background: var(--kc-primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.en-home-kt #contact::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.en-home-kt #contact .section-header {
  max-width: 620px;
  margin: 0 auto 3.5rem;
}

.en-home-kt #contact .section-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.en-home-kt #contact h2 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 800;
}

.en-home-kt #contact .section-header p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.en-home-kt #contact .form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
}

.en-home-kt #contact .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.en-home-kt #contact .form-group {
  margin-bottom: 1.1rem;
  display: flex;
  flex-direction: column;
}

.en-home-kt #contact .form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--kc-ink);
  margin-bottom: 0.4rem;
}

.en-home-kt #contact .form-group .req {
  color: var(--kc-primary);
}

.en-home-kt #contact .form-group input,
.en-home-kt #contact .form-group textarea {
  border: 1.5px solid #d9e0eb;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--kc-ink);
  outline: none;
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.en-home-kt #contact .form-group input:focus,
.en-home-kt #contact .form-group textarea:focus {
  border-color: var(--kc-primary);
  box-shadow: 0 0 0 3px rgba(19, 74, 199, 0.1);
}

.en-home-kt #contact .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.en-home-kt #contact .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.en-home-kt #contact .form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--kc-primary);
}

.en-home-kt #contact .form-consent label {
  font-size: 0.8rem;
  color: var(--kc-muted);
  line-height: 1.5;
  cursor: pointer;
}

.en-home-kt #contact .form-consent a {
  color: var(--kc-primary);
}

.en-home-kt #contact .form-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.en-home-kt #contact .form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.en-home-kt #contact .form-success i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--kc-primary);
}

.en-home-kt #contact .form-success h3 {
  color: var(--kc-ink);
  margin-bottom: 0.5rem;
}

.en-home-kt #contact .form-success p {
  font-size: 0.9rem;
  color: var(--kc-muted);
}

.en-home-kt #contact .form-error-msg {
  display: none;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  border: 1px solid #fca5a5;
  background: #fef2f2;
  color: #dc2626;
}

.en-home-kt #contact .form-error-msg.is-success {
  border-color: #86efac;
  background: #f0fdf4;
  color: #166534;
}

.en-home-kt #contact .form-error-msg.is-error {
  border-color: #fca5a5;
  background: #fef2f2;
  color: #dc2626;
}

/* Keep EN section heading typography consistent with the pricing block. */
.en-home-kt #how .section-title,
.en-home-kt #pricing .section-title,
.en-home-kt #gallery .section-title,
.en-home-kt #why .section-title,
.en-home-kt #testimonials .section-title,
.en-home-kt #faq .section-label,
.en-home-kt #contact .section-label {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.en-home-kt #how > .container > .text-center > h2,
.en-home-kt #pricing .section-header > h2,
.en-home-kt #gallery .section-header > h2,
.en-home-kt #why > .container > .text-center > h2,
.en-home-kt #testimonials > .container > .text-center > h2,
.en-home-kt #faq .section-header > h2,
.en-home-kt #contact .section-header > h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.en-home-kt #how > .container > .text-center > h2,
.en-home-kt #pricing .section-header > h2,
.en-home-kt #gallery .section-header > h2,
.en-home-kt #why > .container > .text-center > h2,
.en-home-kt #testimonials > .container > .text-center > h2,
.en-home-kt #faq .section-header > h2 {
  color: #1a1a2e;
}

.en-home-kt #contact .section-header > h2 {
  color: #fff;
}

.en-home-kt #how > .container > .text-center > .section-muted,
.en-home-kt #pricing .section-header > .small-note,
.en-home-kt #why > .container > .text-center > .section-muted,
.en-home-kt #testimonials > .container > .text-center > .section-muted,
.en-home-kt #faq .section-header > p:not(.section-label),
.en-home-kt #contact .section-header > p:not(.section-label) {
  font-size: 0.8rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.en-home-kt #how > .container > .text-center > .section-muted,
.en-home-kt #pricing .section-header > .small-note,
.en-home-kt #why > .container > .text-center > .section-muted,
.en-home-kt #testimonials > .container > .text-center > .section-muted,
.en-home-kt #faq .section-header > p:not(.section-label) {
  color: #6b6b80;
}

.en-home-kt #contact .section-header > p:not(.section-label) {
  color: rgba(255, 255, 255, 0.75);
}

.en-home-kt footer[role="contentinfo"] {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
}

.en-home-kt footer[role="contentinfo"] .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.en-home-kt footer[role="contentinfo"] .footer-brand-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.en-home-kt footer[role="contentinfo"] .footer-brand-desc {
  font-size: 0.85rem;
  max-width: 220px;
}

.en-home-kt footer[role="contentinfo"] .footer-email {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.75rem;
}

.en-home-kt footer[role="contentinfo"] .footer-email a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.en-home-kt footer[role="contentinfo"] .footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.85rem;
}

.en-home-kt footer[role="contentinfo"] .footer-col ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.en-home-kt footer[role="contentinfo"] .footer-col ul li {
  margin-bottom: 0.5rem;
}

.en-home-kt footer[role="contentinfo"] .footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s ease;
}

.en-home-kt footer[role="contentinfo"] .footer-col ul li a:hover {
  color: #fff;
}

.en-home-kt footer[role="contentinfo"] .footer-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0;
}

.en-home-kt footer[role="contentinfo"] .footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.en-home-kt footer[role="contentinfo"] .footer-social a:hover {
  background: var(--kc-primary);
  color: #fff;
}

.en-home-kt footer[role="contentinfo"] .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.en-home-kt footer[role="contentinfo"] .cookie-settings-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: inherit;
}

.en-home-kt footer[role="contentinfo"] .cookie-settings-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

@media (max-width: 991.98px) {
  .en-home-kt footer[role="contentinfo"] .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  .en-home-kt #contact .form-row {
    grid-template-columns: 1fr;
  }

  .en-home-kt footer[role="contentinfo"] .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  .en-home-kt footer[role="contentinfo"] .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }

  .en-home-kt footer[role="contentinfo"] .footer-grid .footer-col:last-child {
    grid-column: 1 / -1;
  }

  .en-home-kt footer[role="contentinfo"] .footer-brand-desc {
    max-width: 100%;
  }

  .en-home-kt footer[role="contentinfo"] .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 1rem;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 840px;
  z-index: 1040;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 72px rgba(15, 23, 42, 0.2);
  padding: 1.8rem;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-title {
  display: inline-flex;
  align-items: center;
  gap: 0.54rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kc-ink);
}

.cookie-banner-title i {
  font-size: 1.12em;
}

.cookie-banner-text {
  font-size: 0.98rem;
  color: var(--kc-muted);
  line-height: 1.55;
  margin-top: 0.54rem;
}

.cookie-banner-text a {
  color: var(--kc-primary);
}

.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.66rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.cookie-btn {
  border: 1px solid #d9e0eb;
  border-radius: 999px;
  padding: 0.54rem 1.14rem;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn-accept {
  border-color: var(--kc-primary);
  background: var(--kc-primary);
  color: #fff;
}

.cookie-btn-accept:hover {
  background: #0f3ea9;
  border-color: #0f3ea9;
}

.cookie-btn-reject {
  background: #fff;
  color: var(--kc-ink);
}

.cookie-btn-reject:hover {
  background: #f8fafc;
}

.cookie-btn-customize {
  background: transparent;
  color: var(--kc-primary);
}

.cookie-btn-customize:hover {
  background: #eef4ff;
  border-color: #b9cdf8;
}

.cookie-pref-intro {
  font-size: 0.84rem;
  line-height: 1.55;
  margin-bottom: 0.9rem;
}

.cookie-category {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  background: #f8fafc;
}

.text-strike {
  text-decoration: line-through;
  color: #5f6f89;
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.15rem;
}

.small-note {
  font-size: 0.9rem;
  color: var(--kc-muted);
}

@media (max-width: 768px) {
  .pricing-card-content {
    --pricing-media-reserve: 105px;
    padding-right: 105px;
  }

  .pricing-card-media {
    right: -10px;
  }

  .pricing-card-media img {
    width: 105px;
  }

  .footer .footer-mobile-links h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .footer .footer-mobile-links .footer-link-list li {
    margin-bottom: 0.35rem;
  }

  .footer .footer-mobile-links .footer-social li {
    margin-bottom: 0;
  }

  html[lang="lv"] .footer-link-list a {
    font-size: 0.91rem;
  }

  html[lang="ru"] .footer-link-list a {
    font-size: 0.89rem;
    line-height: 1.34;
  }

  .footer-social {
    gap: 0.52rem;
  }

  .footer-social-link {
    width: 2.08rem;
    height: 2.08rem;
    border-color: rgba(226, 232, 240, 0.22);
  }

  .footer-social-link svg {
    width: 1.07rem;
    height: 1.07rem;
  }

  .footer-social-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(226, 232, 240, 0.32);
  }

  .footer .footer-mobile-copy {
    margin-top: 1rem;
    padding-top: 0.75rem;
    font-size: 0.85rem;
  }

  .cookie-banner .cookie-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .benefits-grid .benefit-card {
    padding: 0.95rem;
    border-radius: 14px;
  }

  .benefits-grid .benefit-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    margin-bottom: 0.55rem;
  }

  .benefits-grid .benefit-icon svg {
    width: 18px;
    height: 18px;
  }

  .benefits-grid .h6 {
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
  }

  .benefits-grid .small-note {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  #why .why-card {
    padding: 0.95rem;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    flex-direction: column;
    gap: 0;
  }

  #why .why-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    margin-bottom: 0.55rem;
    background: linear-gradient(135deg, #fff8dc 0%, #f5dea0 100%);
    border: 1px solid #e2c374;
    box-shadow: 0 0 0 3px rgba(233, 197, 90, 0.14);
  }

  #why .why-icon {
    width: 30px;
    height: 30px;
  }

  #why .why-card .h6 {
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
  }

  #why .why-card .small-note {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero-alert {
    text-align: center;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-card {
    padding: 1.5rem;
  }

  .hero-card h1 {
    text-align: center;
  }

  .hero-card .lead {
    text-align: center;
  }

  .hero-card .d-flex {
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  html[lang="lv"] .mobile-language-switcher,
  html[lang="en"] .mobile-language-switcher,
  html[lang="ru"] .mobile-language-switcher {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
  }

  html[lang="lv"] .hero,
  html[lang="en"] .hero,
  html[lang="ru"] .hero {
    padding-top: calc(3.5rem - 20px);
  }

  html[lang="en"] .hero .container {
    position: relative;
  }

  html[lang="en"] .mobile-reorder-cta {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 2.1rem;
    z-index: 3;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
  }

  html[lang="en"] .mobile-reorder-cta .btn,
  html[lang="en"] .mobile-reorder-cta .mobile-reorder-note {
    pointer-events: auto;
  }

  html[lang="en"] .mobile-reorder-cta .btn-order-new {
    min-width: 158px;
  }
}

@media (min-width: 992px) {
  .hero-card {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: 1rem;
  }

  .hero-card .mb-2,
  .hero-card .mb-4 {
    margin-bottom: 0 !important;
  }

  .hero-card .d-flex {
    justify-content: center;
  }

  .hero-layout .col-lg-6 {
    display: flex;
  }

  .hero-layout .product-card,
  .hero-layout .hero-card {
    height: 100%;
  }

  .hero-layout .product-img {
    height: 100%;
    min-height: 460px;
  }
}

@media (max-width: 575.98px) {
  .form-section {
    padding: 1.25rem;
  }

  .step-indicator {
    gap: 0.35rem;
  }

  .step-pill {
    font-size: 0.78rem;
    padding: 0.35rem 0.55rem;
  }

  .qr1-choice-list {
    padding: 0.65rem 0.75rem;
  }

  .qr1-shipping-pill {
    margin-left: 0;
  }
}

/* Consolidated Floating Contact Styles */
.floating-contact {
  position: fixed;
  right: 1rem;
  bottom: 5.75rem;
  z-index: 1065;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.floating-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.24);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.floating-contact-link svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.floating-contact-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.floating-contact-email {
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.floating-contact-email i {
  font-size: 1.05rem;
  line-height: 1;
}
.floating-contact-phone { background: #0f172a; }
.floating-contact-whatsapp { background: #25D366; }

@media (min-width: 992px) {
  .floating-contact {
    right: 1rem;
    top: 50