﻿/* v-13-random-test-dashboard — dashboard skin (BEM: xd-) */
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --xd-bg: #e8edf3;
  --xd-bg-soft: #f1f5f9;
  --xd-surface: #ffffff;
  --xd-surface-2: #f8fafc;
  --xd-card: #ffffff;
  --xd-border: #c8d3e0;
  --xd-text: #0f1b2d;
  --xd-muted: #5b6b7f;
  --xd-primary: #0f766e;
  --xd-primary-2: #0d5f59;
  --xd-accent: #0f766e;
  --xd-success: #059669;
  --xd-danger: #dc2626;
  --xd-white: #ffffff;
  --xd-radius: 11px;
  --xd-radius-sm: 8px;
  --xd-shadow: 0 4px 18px rgba(15, 27, 45, 0.06);
  --xd-max: 1160px;
  --xd-header-h: 68px;
  --xd-font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --xd-display: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --xd-mono: "IBM Plex Mono", ui-monospace, monospace;
}

body {
  margin: 0;
  font-family: var(--xd-font);
  color: var(--xd-text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55) 0%, transparent 120px),
    var(--xd-bg);
  line-height: 1.55;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--xd-primary-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.xd-container {
  width: min(100% - 2rem, var(--xd-max));
  margin-inline: auto;
}

.xd-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.xd-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Sticky shell */
.xd-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--xd-border);
}

.xd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--xd-header-h);
  width: 100%;
  max-width: var(--xd-max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4.5vw, 2rem);
  box-sizing: border-box;
}

.xd-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--xd-text);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.xd-header__logo:hover {
  text-decoration: none;
}

.xd-header__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
  background: linear-gradient(135deg, var(--xd-primary), var(--xd-primary-2));
}

.xd-header__mark img,
.xd-header__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.xd-header__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.xd-header__nav a {
  color: var(--xd-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.xd-header__nav a:hover {
  color: var(--xd-text);
  text-decoration: none;
}

.xd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--xd-text);
  background: var(--xd-primary);
  box-shadow: 0 10px 28px rgba(99, 102, 241, 0.35);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.xd-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(99, 102, 241, 0.45);
}

.xd-btn--ghost {
  background: transparent;
  border: 1px solid var(--xd-border);
  box-shadow: none;
  color: var(--xd-text);
}

.xd-btn--sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
}

.xd-burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--xd-border);
  background: var(--xd-surface);
  color: var(--xd-text);
  cursor: pointer;
}

.xd-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

/* Mobile menu OUTSIDE sticky */
#mob-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: block;
  visibility: hidden;
  pointer-events: none;
  background: rgba(5, 8, 18, 0);
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
}

#mob-menu.is-open {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  background: rgba(5, 8, 18, 0.72);
}

.xd-mob-panel {
  width: min(86vw, 320px);
  height: 100%;
  margin-left: auto;
  background: var(--xd-bg-soft);
  border-left: 1px solid var(--xd-border);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

#mob-menu.is-open .xd-mob-panel {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  #mob-menu,
  .xd-mob-panel {
    transition: none;
  }
}

.xd-mob-panel a {
  color: var(--xd-text);
  font-weight: 600;
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid var(--xd-border);
}

.xd-mob-close {
  align-self: flex-end;
  border: 0;
  background: transparent;
  color: var(--xd-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.xd-activity {
  width: 100%;
  max-width: var(--xd-max);
  margin: 0 auto 0.65rem;
  padding-inline: clamp(1.25rem, 4.5vw, 2rem);
  box-sizing: border-box;
}

/* Sections */
.xd-section {
  padding: 2.75rem 0;
}

.xd-section--tight {
  padding: 3rem 0;
}

.xd-section__title {
  font-family: var(--xd-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.2;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.xd-section__lead {
  color: var(--xd-muted);
  max-width: 62ch;
  margin: 0 0 1.75rem;
}

.xd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid var(--xd-border);
  color: var(--xd-primary-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Hero */
.xd-hero {
  padding: 3.5rem 0 2.5rem;
}

.xd-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.xd-hero__title {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.xd-hero__title span {
  color: var(--xd-primary);
  background: none;
  -webkit-text-fill-color: unset;
}

.xd-hero__text {
  color: var(--xd-muted);
  margin: 0 0 1.25rem;
}

.xd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
}

.xd-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.xd-hero__stats + .xd-mock {
  margin-top: 1.5rem;
}

.xd-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--xd-border);
  border-radius: var(--xd-radius-sm);
  padding: 0.85rem;
}

.xd-stat__num {
  font-weight: 800;
  font-size: 1.15rem;
}

.xd-stat__label {
  color: var(--xd-muted);
  font-size: 0.8rem;
}

/* CSS product mock */
.xd-mock {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(99, 102, 241, 0.35), rgba(34, 211, 238, 0.12));
  padding: 1px;
  box-shadow: var(--xd-shadow);
}

.xd-mock__window {
  border-radius: 21px;
  background: #ffffff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.xd-mock__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--xd-border);
}

.xd-mock__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #475569;
}

.xd-mock__dot:nth-child(1) {
  background: #fb7185;
}
.xd-mock__dot:nth-child(2) {
  background: #fbbf24;
}
.xd-mock__dot:nth-child(3) {
  background: #34d399;
}

.xd-mock__body {
  display: grid;
  grid-template-columns: 64px 1fr;
  min-height: 340px;
}

.xd-mock__rail {
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid var(--xd-border);
  padding: 0.85rem 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.xd-mock__rail-item {
  height: auto;
  min-height: 28px;
  border-radius: 8px;
  background: rgba(148, 163, 255, 0.12);
}

.xd-mock__rail-item.is-active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.55), rgba(34, 211, 238, 0.35));
}

.xd-mock__main {
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}

.xd-mock__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.xd-mock__kpi {
  background: var(--xd-surface);
  border: 1px solid var(--xd-border);
  border-radius: 12px;
  padding: 0.7rem;
}

.xd-mock__kpi strong {
  display: block;
  font-size: 1.05rem;
}

.xd-mock__kpi span {
  color: var(--xd-muted);
  font-size: 0.72rem;
}

.xd-mock__chart {
  height: 140px;
  border-radius: 14px;
  border: 1px solid var(--xd-border);
  background:
    linear-gradient(180deg, transparent 0%, rgba(34, 211, 238, 0.08) 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 24px,
      rgba(148, 163, 255, 0.08) 24px,
      rgba(148, 163, 255, 0.08) 25px
    );
  position: relative;
  overflow: hidden;
}

.xd-mock__chart::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 28%;
  height: 48px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.55), rgba(34, 211, 238, 0.7), transparent);
  filter: blur(0.5px);
  clip-path: polygon(0 70%, 12% 55%, 24% 62%, 38% 35%, 52% 48%, 66% 22%, 80% 40%, 100% 18%, 100% 100%, 0 100%);
}

.xd-mock__table {
  display: grid;
  gap: 0.45rem;
}

.xd-mock__row {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--xd-muted);
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.xd-mock__row strong {
  color: var(--xd-success);
  font-weight: 700;
}

/* Cards / grids */
.xd-grid {
  display: grid;
  gap: 1.25rem;
}

.xd-grid--2 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.xd-grid--3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.xd-grid--4 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.xd-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--xd-border);
  border-radius: var(--xd-radius);
  padding: 1.25rem;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.2);
}

.xd-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.xd-card p {
  margin: 0;
  color: var(--xd-muted);
  font-size: 0.95rem;
}

.xd-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  background: rgba(99, 102, 241, 0.18);
  color: var(--xd-primary-2);
  font-weight: 800;
}

.xd-awards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.xd-award-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--xd-border);
}

.xd-award-list h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.xd-award-list p {
  margin: 0;
  color: var(--xd-muted);
  font-size: 0.88rem;
}

.xd-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
}

.xd-chip {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--xd-border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
  color: var(--xd-text);
}

.xd-store {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  align-items: stretch;
}

.xd-store__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 52px;
  min-width: 168px;
  padding: 0.55rem 0.95rem 0.55rem 0.8rem;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.28);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.xd-store__btn:hover {
  text-decoration: none;
  color: #0f172a;
  background: #f8fafc;
  transform: translateY(-1px);
}

.xd-store__icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.xd-store__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 2px;
}

.xd-store__copy small {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #475569;
}

.xd-store__copy strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.xd-store img {
  height: 36px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .xd-store__btn {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 0;
  }
}

.xd-banner {
  border-radius: 22px;
  padding: 2rem;
  background: linear-gradient(120deg, rgba(99, 102, 241, 0.28), rgba(168, 85, 247, 0.18));
  border: 1px solid var(--xd-border);
  text-align: center;
}

.xd-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.xd-step {
  position: relative;
  padding-top: 0.5rem;
}

.xd-step__num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, var(--xd-primary), var(--xd-primary-2));
}

.xd-pay ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: stretch;
}

.xd-pay li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.28);
}

.xd-pay img {
  height: 32px;
  width: auto;
  display: block;
  filter: none;
}

.xd-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.xd-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: var(--xd-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.xd-check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--xd-success);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.15);
}

.xd-check-list li strong {
  font-size: inherit;
  font-weight: 700;
  color: var(--xd-text);
}

.xd-feature-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--xd-border);
  background: var(--xd-surface);
  min-height: 280px;
}

.xd-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

/* FAQ accordion */
.seo-faq .seo-faq__item {
  border: 1px solid var(--xd-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.seo-faq .seo-faq__question {
  margin: 0;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  padding-right: 2.5rem;
}

.seo-faq .seo-faq__question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--xd-primary-2);
  font-weight: 700;
}

.seo-faq .seo-faq__item.is-open .seo-faq__question::after {
  content: "–";
}

.seo-faq .seo-faq__answer {
  margin: 0;
  padding: 0 1.1rem;
  color: var(--xd-muted);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.seo-faq .seo-faq__item.is-open .seo-faq__answer {
  max-height: 640px;
  padding-bottom: 1rem;
}

/* Reviews */
.seo-reviews .seo-review {
  height: 100%;
}

.seo-review__author {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
}

.seo-review__rating {
  color: #fbbf24;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}

.seo-review__body {
  color: var(--xd-muted);
  margin: 0;
}

/* Form */
#form-main {
  scroll-margin-top: 96px;
}

.xd-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.xd-form-card {
  position: relative;
  background: var(--xd-surface);
  border: 1px solid var(--xd-border);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--xd-shadow);
}

#myform,
#myform1 {
  display: grid;
  gap: 0.9rem;
}

.xd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 0.85rem;
  align-items: start;
}

.xd-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  position: relative;
}

.xd-form-group--phone {
  padding-bottom: 0;
}

.xd-form-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--xd-muted);
}

.xd-req {
  color: var(--xd-danger);
}

.xd-form-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--xd-border);
  background: var(--xd-bg);
  color: var(--xd-text);
  padding: 0.85rem 0.95rem;
  font: inherit;
}

.xd-form-input:focus {
  outline: 2px solid rgba(99, 102, 241, 0.45);
  border-color: var(--xd-primary);
}

.xd-form-check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--xd-muted);
  font-size: 0.88rem;
}

.xd-form-check input {
  margin-top: 0.25rem;
}

.xd-form-note {
  margin: 0;
  text-align: center;
  color: var(--xd-muted);
  font-size: 0.82rem;
}

.xd-form-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.preloader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border: 4px solid rgba(148, 163, 255, 0.2);
  border-top-color: var(--xd-primary-2);
  border-radius: 50%;
  animation: sk-spin 0.8s linear infinite;
  z-index: 5;
}

.preloader.active {
  display: block;
}

@keyframes sk-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

#myform #first_name-error,
#myform #last_name-error,
#myform #email-error,
#myform #phone-error,
#myform label.error,
label.error {
  display: block;
  position: static !important;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  width: 100%;
  max-width: 100%;
  margin: 0.45rem 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: #fb7185;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

#myform .iti,
#myform1 .iti,
.iti {
  display: block;
  width: 100%;
  overflow: visible;
  position: relative;
}

#myform .iti #phone-error,
#myform1 .iti #phone-error,
#myform1 .iti #phone-1-error {
  position: static !important;
  display: block;
  margin-top: 0.45rem;
  top: auto;
  bottom: auto;
}

#myform input.error,
#myform1 input.error,
#myform input.error:focus,
#myform1 input.error:focus {
  border-color: #fb7185;
}

.iti--separate-dial-code .iti__selected-flag {
  background: transparent;
}

#myform .iti__flag-container,
#myform1 .iti__flag-container,
.iti__flag-container {
  position: absolute !important;
  top: 0 !important;
  bottom: auto !important;
  left: 0 !important;
  right: auto !important;
  width: auto !important;
  height: 3.15rem !important;
  padding: 0 0 0 10px !important;
  display: flex !important;
  align-items: center !important;
  z-index: 2;
  pointer-events: auto;
}

#myform .iti__selected-flag,
#myform1 .iti__selected-flag,
.iti__selected-flag {
  width: auto !important;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  padding: 0 8px 0 0;
}

.iti--separate-dial-code .iti__selected-dial-code {
  color: var(--xd-text);
  margin-left: 6px;
}

#myform .iti--separate-dial-code input[type="tel"],
#myform1 .iti--separate-dial-code input[type="tel"],
.iti input[type="tel"],
#myform input[name="phone"],
#myform1 input[name="phone"] {
  width: 100%;
  height: 3.15rem;
  border-radius: 12px;
  border: 1px solid var(--xd-border);
  background: var(--xd-bg);
  color: var(--xd-text);
  font: inherit;
  line-height: 1.25;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0.85rem;
  padding-left: 90px !important;
}

.iti label.error + label.error {
  display: none !important;
}

/* Footer */
.xd-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--xd-border);
  background: var(--xd-bg-soft);
}

.xd-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.xd-footer__social {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.xd-footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.28);
  text-decoration: none;
}

.xd-footer__social a:hover {
  text-decoration: none;
  background: #f8fafc;
  transform: translateY(-1px);
}

.xd-footer__social img {
  width: 22px;
  height: 22px;
  display: block;
  filter: none;
}

.xd-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  margin-bottom: 1rem;
  color: var(--xd-muted);
  font-size: 0.9rem;
}

.xd-footer__legal p {
  color: var(--xd-muted);
  font-size: 0.78rem;
  margin: 0 0 0.65rem;
}

/* Inner pages */
.xd-page-hero {
  padding: 2rem 0 0.4rem;
}

.xd-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  color: var(--xd-muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.xd-breadcrumbs a {
  color: var(--xd-primary-2);
}

.xd-prose h2,
.xd-prose h3 {
  margin-top: 1.15rem;
}

.xd-prose > :first-child {
  margin-top: 0;
}

.xd-prose p,
.xd-prose li {
  color: var(--xd-muted);
}

.xd-prose ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0.75rem 0 1rem;
}

.xd-prose li {
  margin-bottom: 0.45rem;
}

.xd-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--xd-border);
  border-radius: var(--xd-radius);
  background: var(--xd-card);
}

.xd-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.xd-table th,
.xd-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--xd-border);
  font-size: 0.92rem;
  line-height: 1.45;
}

.xd-table th {
  color: var(--xd-text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.xd-table td {
  color: var(--xd-muted);
}

.xd-table tr:last-child td {
  border-bottom: 0;
}

.xd-table b {
  color: var(--xd-text);
  font-weight: 700;
}

/* Contact extras */
.xd-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

#contactForm textarea,
#contactForm input,
#contactForm select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--xd-border);
  background: var(--xd-bg);
  color: var(--xd-text);
  padding: 0.85rem 0.95rem;
  font: inherit;
}

#successPopup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1200;
  align-items: center;
  justify-content: center;
}

.xd-popup {
  background: var(--xd-surface);
  border: 1px solid var(--xd-border);
  border-radius: 16px;
  padding: 1.5rem;
  width: min(92vw, 420px);
}

.xd-map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--xd-border);
  min-height: 320px;
  margin-top: 1.5rem;
}

.xd-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.xd-contact-main {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.25rem;
  width: 100%;
}

.xd-contact-main__form,
.xd-contact-info-block {
  flex: 1 1 16rem;
  min-width: 0;
}

.xd-contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.xd-contact-plaque {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  width: 100%;
  padding: 1.05rem 1.15rem;
  border-radius: 0.85rem;
  border: 1px solid var(--xd-border);
  background: rgba(255, 255, 255, 0.03);
  box-sizing: border-box;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.xd-contact-plaque:hover {
  border-color: rgba(99, 102, 241, 0.45);
  background: rgba(99, 102, 241, 0.08);
}

.xd-contact-plaque__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--xd-bg-soft);
  color: var(--xd-primary);
}

.xd-contact-plaque__icon svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.xd-contact-plaque h3 {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--xd-muted);
}

.xd-contact-plaque p {
  margin: 0;
  color: var(--xd-text);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
  word-break: break-word;
}

.xd-contact-plaque a {
  color: var(--xd-accent);
  text-decoration: none;
}

.xd-contact-plaque a:hover {
  text-decoration: underline;
}

.xd-contact-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.xd-contact-info li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.85rem;
  border: 1px solid var(--xd-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.xd-contact-info a {
  color: var(--xd-accent);
}

.xd-contact-info h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.xd-contact-info p {
  margin: 0;
  color: var(--xd-muted);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 960px) {
  .xd-hero__grid,
  .xd-awards,
  .xd-split,
  .xd-form-wrap,
  .xd-contact-grid,
  .xd-discover,
  .xd-markets,
  .xd-secure,
  .seo-reviews {
    grid-template-columns: 1fr;
  }

  .xd-steps,
  .xd-grid--3,
  .xd-grid--4 {
    grid-template-columns: 1fr 1fr;
  }

  .xd-header__nav {
    display: none;
  }

  .xd-burger {
    display: inline-grid;
    place-items: center;
  }
}

@media (max-width: 640px) {
  .xd-steps,
  .xd-grid--2,
  .xd-grid--3,
  .xd-grid--4,
  .xd-hero__stats,
  .xd-form-row,
  .xd-form-stats,
  .xd-mock__kpis {
    grid-template-columns: 1fr;
  }

  .xd-mock__body {
    grid-template-columns: 1fr;
  }

  .xd-mock__rail {
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid var(--xd-border);
  }

  .xd-section {
    padding: 3rem 0;
  }
}

/* Markets, UK visual, reviews score, contact stack */
.xd-discover {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.75rem;
  align-items: center;
}

.xd-discover > div:first-child {
  min-width: 0;
}

/* Must come AFTER .xd-discover base — otherwise 2-col wins on mobile */
@media (max-width: 960px) {
  .xd-discover {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  .xd-feature-media {
    width: 100%;
    max-width: 100%;
    min-height: 220px;
  }
  .xd-feature-media img {
    min-height: 220px;
  }
}
.xd-uk {
  position: relative;
  min-height: 280px;
  border-radius: 20px;
  border: 1px solid var(--xd-border);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 48% 42%, rgba(34, 211, 238, 0.18), transparent 58%),
    radial-gradient(circle at 72% 28%, rgba(99, 102, 241, 0.28), transparent 42%),
    linear-gradient(180deg, #121a32, #0b1020);
}
.xd-uk::before {
  content: '';
  position: absolute;
  inset: 18% 22% 22% 24%;
  border-radius: 42% 38% 48% 36%;
  border: 2px solid rgba(34, 211, 238, 0.45);
  box-shadow: inset 0 0 40px rgba(34, 211, 238, 0.12), 0 0 30px rgba(99, 102, 241, 0.2);
}
.xd-uk__pin {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--xd-primary-2);
  box-shadow: 0 0 0 8px rgba(34, 211, 238, 0.18);
}
.xd-uk__pin--lon { top: 48%; left: 46%; }
.xd-uk__label {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--xd-primary-2);
}
.xd-check-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}
.xd-markets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.xd-market {
  background: var(--xd-card);
  border: 1px solid var(--xd-border);
  border-radius: var(--xd-radius);
  padding: 1.15rem 1.2rem;
}
.xd-market__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}
.xd-market h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.xd-market__score {
  font-weight: 800;
  color: var(--xd-primary-2);
}
.xd-market__stars {
  color: #fbbf24;
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}
.xd-market p {
  margin: 0;
  color: var(--xd-muted);
  font-size: 0.88rem;
}
.xd-score {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
}
.xd-score__num {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--xd-text);
}
.xd-score__stars {
  color: #fbbf24;
  letter-spacing: 0.08em;
}
.seo-reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.seo-review {
  background: var(--xd-card);
  border: 1px solid var(--xd-border);
  border-radius: var(--xd-radius);
  padding: 1.1rem;
}
.xd-contact-stack {
  display: grid;
  gap: 1.5rem;
  max-width: 720px;
}

@media (max-width: 767px) {
  .xd-contact-main {
    flex-direction: column;
  }

  .xd-contact-main__form,
  .xd-contact-info-block {
    flex: 1 1 auto;
    width: 100%;
  }
}
.xd-features .xd-card ul {
  list-style: disc;
  padding-left: 1.15rem;
  margin: 0.65rem 0 0;
  color: var(--xd-muted);
}
.xd-features .xd-card li {
  margin-bottom: 0.35rem;
}
.xd-close {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--xd-muted);
}
.xd-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.xd-prose td {
  border: 1px solid var(--xd-border);
  padding: 0.75rem 0.85rem;
}
@media (max-width: 960px) {
  .xd-markets {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .xd-markets,
  .seo-reviews {
    grid-template-columns: 1fr;
  }
}
/* Stacked blocks: keep gaps between siblings */
.txgrid + h2,
.txgrid + .txsection__title,
.txplans + .txbanner,
.txbanner + p,
.txcard + h2,
.txcard + .txsection__title,
.txcontainer > .txcard + .txcard,
.txcalc + h2,
/* Stacked blocks: keep gaps between siblings */
.xd-grid + h2,
.xd-grid + .xd-section__title,
.xd-plans + .xd-banner,
.xd-banner + p,
.xd-card + h2,
.xd-card + .xd-section__title,
.xd-container > .xd-card + .xd-card,
.xd-calc + h2,
.xd-calc-grid + h2,
.xd-calc-grid + .xd-section__title,
.xd-contact-info + .xd-map,
.xd-page-hero + .xd-section,
.xd-prose > .xd-grid + h2,
.xd-prose > .xd-grid + p {
  margin-top: 1.75rem;
}

.xd-section + .xd-section {
  margin-top: 0;
}

.xd-section + .xd-footer,
.xd-page-hero + .xd-footer {
  margin-top: 1.25rem;
}

.xd-contact-grid {
  gap: 1.5rem;
  align-items: start;
}

.geo-summary,
.geo-risk {
  margin: 1.25rem 0;
}

.geo-faq {
  margin-top: 1.25rem;
}

h2 + .geo-table-wrap,
h2 + .geo-faq,
h2 + .geo-steps,
.txsection__title + .geo-table-wrap,
.txsection__title + .geo-faq,
.txsection__title + .geo-steps,
.geo-summary + h2,
.geo-summary + .txsection__title,
.geo-summary + .geo-table-wrap,
.geo-table-wrap + .geo-risk,
.geo-risk + h2,
.geo-risk + .txsection__title,
.geo-risk + .geo-faq,
.geo-steps + .geo-table-wrap {
  margin-top: 1.5rem;
}

.seo-faq .seo-faq__item + .seo-faq__item {
  margin-top: 0.85rem;
}

.xd-page-hero + .xd-section {
  padding-top: 0.5rem;
}

.xd-section + .xd-section {
  padding-top: 1.5rem;
}

.xd-banner + *,
.xd-grid + *,
.xd-split + *,
.xd-steps + *,
.xd-awards + *,
.xd-contact-grid + *,
.xd-form-wrap + *,
.xd-map + *,
.geo-table-wrap + *,
.geo-faq + *,
.geo-summary + h2,
.geo-summary + .xd-section__title,
.geo-risk + h2,
.geo-risk + .xd-section__title,
.xd-section .xd-container > * + .xd-section__title,
.xd-section .xd-container > * + h2,
.xd-prose > * + h2,
.xd-prose > * + h3 {
  margin-top: 1.75rem;
}

/* intlTelInput lock: no vertical jump initially or when error appears */
.iti,
#myform .iti,
#myform1 .iti {
  width: 100%;
  display: block;
  position: relative;
  overflow: visible;
}

#myform .iti #phone-error,
#myform1 .iti #phone-error,
#myform1 .iti #phone-1-error,
.iti > label.error,
label.error[id*="phone"] {
  position: static !important;
  display: block !important;
  margin-top: 0.45rem !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  width: auto !important;
  max-width: 100%;
  transform: none !important;
}

#myform .iti__flag-container,
#myform1 .iti__flag-container,
.iti__flag-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  bottom: auto !important;
  height: 3.15rem !important;
  width: auto !important;
  padding: 0 0 0 10px !important;
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
  z-index: 2;
}

#myform .iti__selected-flag,
#myform1 .iti__selected-flag,
.iti__selected-flag {
  height: 100% !important;
  min-height: 0 !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 10px 0 0 !important;
  background: transparent !important;
  box-sizing: border-box !important;
}

.iti__flag,
.iti__arrow,
.iti__selected-dial-code {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  top: 0 !important;
  position: relative !important;
}

.iti__selected-dial-code {
  line-height: 1 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#myform .iti input[type="tel"],
#myform1 .iti input[type="tel"],
.iti input[type="tel"],
.iti input[type="text"],
.iti--separate-dial-code input[type="tel"],
.iti--separate-dial-code input[type="text"],
#myform input[name="phone"],
#myform1 input[name="phone"] {
  height: 3.15rem !important;
  min-height: 3.15rem !important;
  max-height: 3.15rem !important;
  box-sizing: border-box !important;
  line-height: calc(3.15rem - 2px) !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 5.6rem !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  vertical-align: middle !important;
}

.xd-stat__num, .xd-mock__kpi strong, .xd-step__num {
  font-family: var(--xd-mono);
  letter-spacing: -0.02em;
}
.xd-card {
  background: var(--xd-panel, var(--xd-surface));
  border: 1px solid var(--xd-border);
  box-shadow: var(--xd-shadow);
  border-radius: var(--xd-radius);
}
.xd-btn { border-radius: var(--xd-radius); box-shadow: var(--xd-shadow); background: var(--xd-primary); }
.xd-btn--ghost { background: var(--xd-surface); color: var(--xd-text); border: 1px solid var(--xd-border); }
.xd-sticky { background: rgba(255,255,255,0.94); border-bottom: 1px solid var(--xd-border); }
.xd-header__logo { color: var(--xd-text); }
.xd-header__nav a { color: var(--xd-muted); }
.xd-header__nav a:hover { color: var(--xd-primary); }
.xd-mock { background: linear-gradient(160deg, #d8e8e6, #e8edf3); border-radius: var(--xd-radius); box-shadow: var(--xd-shadow); }
.xd-mock__window { background: #fff; border-radius: calc(var(--xd-radius) - 1px); }
.xd-form-card { background: #fff; border: 1px solid var(--xd-border); box-shadow: var(--xd-shadow); border-radius: var(--xd-radius); }
label.error { color: var(--xd-danger); text-shadow: 0 1px 0 rgba(255,255,255,0.7); }
.xd-form-group--phone { padding-bottom: 1.35rem; }
.xd-chip { font-family: var(--xd-mono); font-size: 0.75rem; }

.xd-btn:not(.xd-btn--ghost) { color: #fff !important; }
a.xd-btn:not(.xd-btn--ghost) { color: #fff !important; text-decoration: none; }
html { overflow-x: hidden; }
img { max-width: 100%; height: auto; }
.xd-pay img, .xd-store__icon, .xd-card > img { display: block; }


/* === Archetype polish overrides === */
.xd-mock {
  background: linear-gradient(160deg, #d8e8e6, #e8edf3) !important;
  border-radius: var(--xd-radius) !important;
  box-shadow: var(--xd-shadow) !important;
}
.xd-mock__window {
  background: #ffffff !important;
  border: 1px solid var(--xd-border) !important;
  color: var(--xd-text);
}
.xd-mock__chrome {
  background: var(--xd-bg-soft) !important;
  border-bottom: 1px solid var(--xd-border) !important;
}
.xd-mock__rail {
  background: var(--xd-bg-soft) !important;
  border-right: 1px solid var(--xd-border) !important;
}
.xd-mock__rail-item {
  background: rgba(0,0,0,0.06) !important;
  border-radius: var(--xd-radius-sm) !important;
}
.xd-mock__rail-item.is-active {
  background: var(--xd-primary) !important;
}
.xd-mock__chart {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.03) 100%),
    repeating-linear-gradient(90deg, transparent, transparent 24px, rgba(0,0,0,0.04) 24px, rgba(0,0,0,0.04) 25px) !important;
}
.xd-mock__chart::after {
  background: rgba(15, 118, 110, 0.55) !important;
}
.xd-mock__row {
  color: var(--xd-text);
  border-color: var(--xd-border) !important;
}
.xd-footer {
  background: #0f1b2d !important;
}
.xd-footer__legal p,
.xd-footer__brand p {
  color: #9aa6b2 !important;
}
.xd-footer__links a {
  color: #cbd5e1 !important;
}
#mob-menu.is-open {
  background: rgba(15, 27, 45, 0.5) !important;
}
.xd-mob-panel {
  background: #ffffff !important;
  border-left: 1px solid var(--xd-border) !important;
}
.xd-card__icon {
  background: var(--xd-bg-soft) !important;
  color: var(--xd-primary) !important;
  border: 1px solid var(--xd-border);
}
.xd-banner {
  background: var(--xd-surface) !important;
  border: 1px solid var(--xd-border) !important;
  color: var(--xd-text) !important;
}
.xd-chip {
  background: var(--xd-surface) !important;
  border: 1px solid var(--xd-border) !important;
  color: var(--xd-text) !important;
}
.xd-step__num {
  background: var(--xd-primary) !important;
  color: #fff !important;
}
.seo-faq__item {
  border: 1px solid var(--xd-border);
  background: var(--xd-surface);
  border-radius: var(--xd-radius);
  margin-bottom: 0.65rem;
  overflow: hidden;
}
.seo-faq__question {
  margin: 0;
  padding: 1rem 1.15rem;
  cursor: pointer;
  color: var(--xd-text);
}
.seo-faq__answer {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 1.15rem;
  color: var(--xd-muted);
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.seo-faq__item.is-open .seo-faq__answer {
  max-height: 320px;
  padding: 0 1.15rem 1rem;
}
label.error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--xd-danger);
  text-shadow: 0 1px 0 rgba(255,255,255,0.65);
}
.xd-form-group--phone {
  min-height: 5.5rem;
}
.xd-form-input,
.xd-form-card input[type="text"],
.xd-form-card input[type="email"],
.xd-form-card input[type="tel"] {
  background: var(--xd-surface) !important;
  color: var(--xd-text) !important;
  border: 1px solid var(--xd-border) !important;
}
.xd-header__mark {
  background: var(--xd-primary) !important;
  box-shadow: none !important;
  border-radius: var(--xd-radius-sm) !important;
}
.xd-activity .activity-bar {
  background: var(--xd-surface);
  border: 1px solid var(--xd-border);
}
@media (max-width: 900px) {
  .xd-hero__grid,
  .xd-split,
  .xd-form-wrap,
  .xd-awards {
    grid-template-columns: 1fr !important;
  }
  .xd-header__nav {
    display: none !important;
  }
  .xd-burger {
    display: inline-grid !important;
    place-items: center;
  }
  .xd-hero__stats,
  .xd-mock__kpis,
  .xd-grid--2,
  .xd-grid--3,
  .xd-grid--4 {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 560px) {
  .xd-hero__stats,
  .xd-mock__kpis,
  .xd-grid--2,
  .xd-grid--3,
  .xd-grid--4,
  .xd-form-row,
  .xd-steps {
    grid-template-columns: 1fr !important;
  }
  .xd-pay ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem;
    justify-items: center;
  }
  .xd-pay img {
    max-width: 72px;
    height: auto;
  }
}

/* === Contrast fix pass === */
/* Force readable contrast: light UI + dark footer */
body, .xd-page, .xd-section, .xd-card, .xd-prose, .xd-form-card {
  color: var(--xd-text);
}
.xd-section__lead, .xd-hero__text, .xd-form-note {
  color: var(--xd-muted) !important;
}
.xd-eyebrow {
  color: var(--xd-primary) !important;
  background: var(--xd-accent-soft, #e6f4f2) !important;
  border-color: var(--xd-border) !important;
}
.xd-card__icon,
.xd-contact-plaque__icon {
  color: var(--xd-primary) !important;
  background: #e6f4f2 !important;
  border: 1px solid var(--xd-border);
}
.xd-btn--ghost,
a.xd-btn--ghost {
  color: var(--xd-text) !important;
  background: #fff !important;
  border: 1px solid var(--xd-border) !important;
}
.xd-btn:not(.xd-btn--ghost),
a.xd-btn:not(.xd-btn--ghost),
button.xd-btn:not(.xd-btn--ghost) {
  color: #ffffff !important;
  background: var(--xd-primary) !important;
}
/* DARK footer: never inherit body dark ink */
.xd-footer {
  background: #0f1b2d !important;
  color: #dbe4ee !important;
}
.xd-footer a { color: #e2e8f0 !important; }
.xd-footer__links,
.xd-footer__links a { color: #cbd5e1 !important; }
.xd-footer__legal p,
.xd-footer__brand p,
.xd-footer strong,
.xd-footer h2,
.xd-footer h3 {
  color: #9aa6b2 !important;
}
.xd-footer__brand strong { color: #f1f5f9 !important; }
.xd-mob-panel, .xd-mob-panel a { color: var(--xd-text) !important; background-color: #ffffff; }
.xd-mock__window, .xd-mock__kpi strong, .xd-mock__row span {
  color: var(--xd-text) !important;
}
.xd-mock__kpi span { color: var(--xd-muted) !important; }
.xd-mock__row strong { color: var(--xd-primary) !important; }
.xd-banner { color: var(--xd-text) !important; background: #fff !important; }
.xd-chip { color: var(--xd-text) !important; background: #fff !important; }
.seo-faq__question { color: var(--xd-text) !important; }
.seo-faq__answer { color: var(--xd-muted) !important; }
.xd-growth-table tbody th { color: var(--xd-text) !important; }
.xd-growth-table tbody th span { color: #fff !important; background: var(--xd-primary) !important; }
.xd-growth-table__head { color: #fff !important; background: var(--xd-primary) !important; }
.xd-warn, .xd-warn a { color: #fff !important; }

/* === Form-check validation fix === */
/* Checkbox row stays on one line; validation error drops below */
[class*="-form-check"] {
  display: grid !important;
  grid-template-columns: auto 1fr;
  column-gap: 0.65rem;
  row-gap: 0.35rem;
  align-items: start;
  width: 100%;
  cursor: pointer;
}
[class*="-form-check"] input[type="checkbox"] {
  grid-column: 1;
  grid-row: 1;
  margin: 0.25rem 0 0;
  width: 1rem;
  height: 1rem;
  flex: none;
}
[class*="-form-check"] > span {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}
[class*="-form-check"] label.error,
[class*="-form-check"] > label.error,
[class*="-form-check"] #consent-error {
  grid-column: 1 / -1;
  grid-row: 2;
  display: block !important;
  position: static !important;
  width: auto !important;
  max-width: 100%;
  margin: 0 !important;
  padding: 0 0 0 calc(1rem + 0.65rem);
  pointer-events: none;
}

/* === Logo png fit === */
[class$="-header__mark"] {
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  overflow: visible;
}
[class$="-header__mark"] img {
  object-fit: contain;
}
[class$="-footer__brand"] > img {
  background: none !important;
  background-color: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* === v13 anti-stick spacing (xd) === */
.xd-grid--2 + *,
.xd-grid--3 + *,
.xd-grid--4 + *,
.xd-steps + *,
.xd-features + *,
.seo-reviews + *,
.xd-markets + * {
  margin-top: 1.75rem;
}

.xd-card + .xd-card {
  margin-top: 1.25rem;
}
.xd-grid .xd-card + .xd-card,
.xd-grid--2 .xd-card + .xd-card,
.xd-grid--3 .xd-card + .xd-card,
.xd-grid--4 .xd-card + .xd-card,
.xd-steps .xd-card + .xd-card,
.xd-features .xd-card + .xd-card {
  margin-top: 0;
}

.xd-section + .xd-section {
  padding-top: 1.5rem;
}

.xd-page-hero + .xd-section {
  padding-top: 1.25rem;
}

.xd-hero + .xd-section {
  padding-top: 2rem;
}

/* === Mock fill (v10-like) === */
.xd-mock__kpi em {
  display: block;
  margin-top: 0.28rem;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--xd-success, #34d399);
}
.xd-mock__mini {
  display: block;
  height: 4px;
  margin-top: 0.45rem;
  border-radius: 99px;
  background: rgba(148, 163, 255, 0.16);
  overflow: hidden;
}
.xd-mock__mini i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--xd-primary, #6366f1), var(--xd-primary-2, #22d3ee));
}
.xd-mock__chart {
  position: relative;
}
.xd-mock__chart-head {
  position: absolute;
  z-index: 2;
  top: 0.55rem;
  left: 0.75rem;
  right: 0.75rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--xd-muted, #9aa6d1);
}
.xd-mock__chart-head strong {
  color: var(--xd-success, #34d399);
  font-weight: 700;
}
.xd-mock__chart-axis {
  position: absolute;
  z-index: 2;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.4rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  color: var(--xd-muted, #9aa6d1);
}
.xd-mock__table {
  display: grid;
  gap: 0.45rem;
}
.xd-mock__row {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--xd-muted, #9aa6d1);
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}
.xd-mock__row strong {
  color: var(--xd-success, #34d399);
  font-weight: 700;
}
.xd-hero__stats + .xd-mock {
  margin-top: 1.5rem !important;
}

.xd-mock__body {
  grid-template-columns: 84px 1fr !important;
}
.xd-mock__rail {
  gap: 0.45rem !important;
  padding: 0.75rem 0.5rem !important;
}
.xd-mock__rail-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.25rem !important;
  min-height: 52px !important;
  height: auto !important;
  padding: 0.5rem 0.3rem !important;
  text-align: center !important;
  flex-shrink: 0 !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}
.xd-mock__rail-icon {
  display: block !important;
  flex: 0 0 auto !important;
  width: auto !important;
  height: auto !important;
  min-width: 1.25rem !important;
  font-size: 1.15rem !important;
  line-height: 1 !important;
  text-align: center !important;
  opacity: 1 !important;
  transform: none !important;
  font-family: "Segoe UI Symbol", "Segoe UI", system-ui, sans-serif !important;
}
.xd-mock__rail-label {
  display: block !important;
  flex: 0 0 auto !important;
  font-size: 0.62rem !important;
  line-height: 1.15 !important;
  letter-spacing: 0.02em !important;
  color: var(--xd-muted, #5b6b7f) !important;
  white-space: nowrap !important;
}
.xd-mock__rail-item.is-active .xd-mock__rail-icon,
.xd-mock__rail-item.is-active .xd-mock__rail-label {
  color: #fff !important;
  opacity: 1 !important;
}
@media (max-width: 640px) {
  .xd-mock__body {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
  }
  .xd-mock__rail {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0.45rem !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--xd-border) !important;
    overflow: visible !important;
    padding: 0.65rem 0.7rem !important;
  }
  .xd-mock__rail-item {
    flex: 1 1 0 !important;
    flex-direction: column !important;
    gap: 0.3rem !important;
    min-width: 4.5rem !important;
    min-height: 3.25rem !important;
    height: auto !important;
    padding: 0.55rem 0.45rem !important;
  }
  .xd-mock__rail-icon {
    font-size: 1.2rem !important;
    min-width: 1.35rem !important;
  }
  .xd-mock__rail-label {
    font-size: 0.7rem !important;
    text-transform: none !important;
  }
}


/* Discover map: always stack under copy on tablet/phone */
@media (max-width: 1100px) {
  .xd-discover,
  .xd-container.xd-discover {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-auto-flow: row !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
  }
  .xd-discover > div,
  .xd-discover > .xd-feature-media {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    grid-column: 1 / -1 !important;
  }
  .xd-feature-media {
    order: 2;
    min-height: 200px !important;
  }
  .xd-feature-media img {
    width: 100% !important;
    height: auto !important;
    min-height: 200px !important;
    object-fit: cover !important;
  }
}
