:root {
  --vd-blue: #1d00fa;
  --vd-blue-dark: #1100a8;
  --vd-navy: #071a44;
  --vd-ink: #172033;
  --vd-muted: #5b6475;
  --vd-green: #08d901;
  --vd-line: #dfe4f2;
  --vd-soft: #f5f7ff;
  --vd-white: #ffffff;
}

.vd-solutions,
.vd-product-page {
  color: var(--vd-ink);
  font-family: "Inter", Arial, sans-serif;
}

.vd-solutions *,
.vd-product-page * {
  box-sizing: border-box;
}

.vd-solutions {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 128px) 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(29, 0, 250, 0.12), transparent 34%),
    radial-gradient(circle at 92% 90%, rgba(8, 217, 1, 0.08), transparent 30%),
    linear-gradient(180deg, #f9faff 0%, #ffffff 100%);
}

.vd-solutions__inner,
.vd-page-shell {
  width: min(1200px, 100%);
  margin-inline: auto;
}

.vd-solutions__intro {
  max-width: 800px;
  margin: 0 auto clamp(36px, 5vw, 60px);
  text-align: center;
}

.vd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--vd-blue);
  font-family: "Sora", Arial, sans-serif;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.vd-eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--vd-green);
  content: "";
}

.vd-solutions h2,
.vd-product-page h1,
.vd-product-page h2,
.vd-product-page h3 {
  margin-top: 0;
  color: var(--vd-navy);
  font-family: "Sora", Arial, sans-serif;
  letter-spacing: -0.035em;
}

.vd-solutions__intro h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 58px) !important;
  line-height: 1.1;
}

.vd-solutions__lead {
  margin: 0;
  color: var(--vd-muted);
  font-size: clamp(18px, 2vw, 22px) !important;
  line-height: 1.65;
}

.vd-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.vd-product-card {
  --card-accent: var(--vd-blue);
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(21, 44, 108, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 60px rgba(15, 31, 77, 0.09);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.vd-product-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--card-accent);
  content: "";
}

.vd-product-card--live {
  --card-accent: #00aab8;
}

.vd-product-card--flexi {
  --card-accent: #7b42f6;
}

.vd-product-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--card-accent) 28%, transparent);
  box-shadow: 0 26px 70px rgba(15, 31, 77, 0.15);
}

.vd-product-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.vd-product-card__icon,
.vd-addon__icon,
.vd-page-icon {
  display: grid;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 17px;
  background: color-mix(in srgb, var(--card-accent, var(--vd-blue)) 10%, white);
  color: var(--card-accent, var(--vd-blue));
}

.vd-product-card__icon svg,
.vd-addon__icon svg,
.vd-page-icon svg {
  width: 30px;
  height: 30px;
}

.vd-price-tag,
.vd-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border: 1px solid rgba(29, 0, 250, 0.13);
  border-radius: 999px;
  background: #f4f2ff;
  color: var(--vd-blue-dark);
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 1.2;
  padding: 8px 11px;
}

.vd-product-card h3 {
  margin: 0 0 11px;
  font-size: clamp(25px, 2.4vw, 32px) !important;
  line-height: 1.2;
}

.vd-product-card__promise {
  min-height: 3.4em;
  margin: 0 0 24px;
  color: var(--vd-muted);
  font-size: 17px !important;
  line-height: 1.65;
}

.vd-feature-list,
.vd-check-list {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.vd-feature-list li,
.vd-check-list li {
  position: relative;
  margin: 0;
  padding-left: 27px;
  color: #30394c;
  font-size: 15px !important;
  line-height: 1.55;
}

.vd-feature-list li::before,
.vd-check-list li::before {
  position: absolute;
  top: 0.5em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--card-accent, var(--vd-blue));
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--card-accent, var(--vd-blue)) 10%, transparent);
  content: "";
}

.vd-card-link,
.vd-primary-button,
.vd-secondary-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.vd-card-link {
  margin-top: auto;
  padding: 13px 18px;
  background: var(--vd-navy);
  color: var(--vd-white) !important;
  font-size: 14px !important;
}

.vd-card-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.vd-card-link:hover::after {
  transform: translateX(3px);
}

.vd-card-link:hover,
.vd-primary-button:hover,
.vd-secondary-button:hover {
  transform: translateY(-2px);
}

.vd-solutions__all {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.vd-solutions__all a {
  color: var(--vd-blue);
  font-size: 15px !important;
  font-weight: 700;
  text-decoration: none;
}

.vd-solutions__all a::after {
  content: "  →";
}

.vd-addon {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(34px, 5vw, 54px);
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(8, 217, 1, 0.18), transparent 34%),
    var(--vd-navy);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 55px rgba(7, 26, 68, 0.18);
}

.vd-addon__icon {
  --card-accent: var(--vd-green);
  background: rgba(8, 217, 1, 0.1);
}

.vd-addon__copy h3 {
  margin: 6px 0 8px;
  color: white;
  font-size: clamp(21px, 2.3vw, 28px) !important;
  line-height: 1.25;
}

.vd-addon__copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px !important;
  line-height: 1.65;
}

.vd-addon__label {
  color: var(--vd-green);
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vd-addon__link {
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: white !important;
  font-size: 14px !important;
  font-weight: 700;
  padding: 12px 17px;
  text-decoration: none;
}

/* Processing modes */
.vd-processing {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 132px) 24px;
  background:
    radial-gradient(circle at 10% 10%, rgba(29, 0, 250, 0.38), transparent 31%),
    radial-gradient(circle at 92% 88%, rgba(8, 217, 1, 0.12), transparent 28%),
    var(--vd-navy);
  color: white;
  font-family: "Inter", Arial, sans-serif;
}

.vd-processing * {
  box-sizing: border-box;
}

.vd-processing__inner {
  width: min(1200px, 100%);
  margin-inline: auto;
}

.vd-processing__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: end;
  margin-bottom: clamp(38px, 6vw, 64px);
}

.vd-processing .vd-eyebrow {
  color: #b8b0ff;
}

.vd-processing__intro h2 {
  max-width: 720px;
  margin: 0;
  color: white;
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 58px) !important;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.vd-processing__intro > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 2vw, 21px) !important;
  line-height: 1.7;
}

.vd-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.vd-mode-card {
  --mode-accent: var(--vd-blue);
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: white;
  color: var(--vd-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.17);
}

.vd-mode-card--onsite {
  --mode-accent: #078b46;
  border-color: rgba(8, 217, 1, 0.36);
}

.vd-mode-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.vd-mode-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 18px;
  background: color-mix(in srgb, var(--mode-accent) 10%, white);
  color: var(--mode-accent);
}

.vd-mode-card__icon svg {
  width: 32px;
  height: 32px;
}

.vd-mode-card__tag {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  background: color-mix(in srgb, var(--mode-accent) 9%, white);
  color: var(--mode-accent);
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.2;
  padding: 8px 11px;
  text-transform: uppercase;
}

.vd-mode-card h3 {
  margin: 0 0 13px;
  color: var(--vd-navy);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(25px, 3vw, 34px) !important;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.vd-mode-card__lead {
  min-height: 3.35em;
  margin: 0 0 26px;
  color: var(--vd-muted);
  font-size: 16px !important;
  line-height: 1.7;
}

.vd-mode-list {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.vd-mode-list li {
  position: relative;
  margin: 0;
  padding-left: 29px;
  color: #30394c;
  font-size: 15px !important;
  line-height: 1.55;
}

.vd-mode-list li::before {
  position: absolute;
  top: 0.22em;
  left: 0;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--mode-accent) 11%, white);
  color: var(--mode-accent);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.vd-mode-card__note {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f4f6fb;
  color: #3e485b;
  font-size: 13px !important;
  line-height: 1.6;
}

.vd-mode-card--onsite .vd-mode-card__note {
  background: #fff6e9;
  color: #70450b;
}

.vd-mode-card__note strong {
  color: inherit;
}

.vd-dashboard-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 23px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}

.vd-dashboard-note__icon {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 18px;
  background: rgba(8, 217, 1, 0.1);
  color: var(--vd-green);
}

.vd-dashboard-note__icon svg {
  width: 32px;
  height: 32px;
}

.vd-dashboard-note__label {
  display: block;
  margin-bottom: 6px;
  color: var(--vd-green);
  font-size: 11px !important;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vd-dashboard-note h3 {
  margin: 0 0 8px;
  color: white;
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(20px, 2.5vw, 28px) !important;
  line-height: 1.3;
}

.vd-dashboard-note p {
  max-width: 930px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px !important;
  line-height: 1.65;
}

.vd-processing__footnote {
  max-width: 960px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px !important;
  line-height: 1.6;
  text-align: center;
}

/* Lightweight solution pages */
.vd-product-page {
  margin: 0;
  background: #fff;
}

.vd-page-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(7, 26, 68, 0.09);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
}

.vd-page-nav {
  display: flex;
  width: min(1200px, calc(100% - 40px));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-inline: auto;
}

.vd-page-logo img {
  display: block;
  width: 190px;
  height: auto;
}

.vd-page-nav__links {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}

.vd-page-nav__links a,
.vd-page-nav__industries summary {
  color: var(--vd-navy);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.vd-page-nav__links > a:not(.vd-page-nav__cta),
.vd-page-nav__industries summary {
  transition: color 160ms ease;
}

.vd-page-nav__links > a:not(.vd-page-nav__cta):hover,
.vd-page-nav__links > a[aria-current="page"],
.vd-page-nav__industries summary:hover,
.vd-page-nav__industries[open] summary {
  color: var(--vd-blue);
}

.vd-page-nav__industries {
  position: relative;
}

.vd-page-nav__industries summary {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 0;
  cursor: pointer;
  list-style: none;
}

.vd-page-nav__industries summary::-webkit-details-marker {
  display: none;
}

.vd-page-nav__industries summary::after {
  width: 7px;
  height: 7px;
  transform: translateY(-2px) rotate(45deg);
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transition: transform 160ms ease;
}

.vd-page-nav__industries[open] summary::after {
  transform: translateY(2px) rotate(225deg);
}

.vd-page-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  display: grid;
  min-width: 290px;
  padding: 12px;
  transform: translateX(-50%) translateY(8px);
  border: 1px solid rgba(7, 26, 68, 0.1);
  border-radius: 18px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 60px rgba(7, 26, 68, 0.16);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.vd-page-nav__industries[open] .vd-page-nav__dropdown {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

@media (hover: hover) and (pointer: fine) {
  .vd-page-nav__industries:hover .vd-page-nav__dropdown {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
}

.vd-page-nav__dropdown a {
  padding: 11px 13px;
  border-radius: 11px;
  color: var(--vd-ink);
  line-height: 1.35;
}

.vd-page-nav__dropdown a:hover {
  background: var(--vd-soft);
  color: var(--vd-blue);
}

.vd-page-nav__toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid rgba(7, 26, 68, 0.14);
  border-radius: 10px;
  background: white;
  color: var(--vd-navy);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.vd-page-nav__toggle svg {
  width: 18px;
  height: 18px;
}

.vd-page-nav__links .vd-page-nav__cta {
  padding: 12px 17px;
  background: var(--vd-blue);
  color: white;
  border-radius: 999px;
}

.vd-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 11vw, 150px) 24px clamp(72px, 9vw, 120px);
  background:
    radial-gradient(circle at 82% 12%, rgba(8, 217, 1, 0.16), transparent 28%),
    radial-gradient(circle at 12% 96%, rgba(58, 34, 255, 0.48), transparent 38%),
    var(--vd-navy);
  color: white;
}

.vd-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: center;
}

.vd-page-hero .vd-eyebrow {
  color: #b8b0ff;
}

.vd-page-hero h1 {
  max-width: 850px;
  margin-bottom: 24px;
  color: white;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.04;
}

.vd-page-hero__lead {
  max-width: 730px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.vd-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vd-primary-button,
.vd-secondary-button {
  padding: 14px 21px;
  font-size: 15px;
}

.vd-primary-button {
  background: var(--vd-green);
  color: #052005;
}

.vd-secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
}

.vd-page-hero__panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.vd-page-hero__panel .vd-page-icon {
  --card-accent: var(--vd-green);
  width: 68px;
  height: 68px;
  margin-bottom: 26px;
  background: rgba(8, 217, 1, 0.11);
}

.vd-page-hero__panel h2 {
  margin-bottom: 16px;
  color: white;
  font-size: 22px;
  line-height: 1.3;
}

.vd-page-hero__panel .vd-check-list {
  margin: 0;
}

.vd-page-hero__panel .vd-check-list li {
  color: rgba(255, 255, 255, 0.77);
}

.vd-page-section {
  padding: clamp(70px, 9vw, 118px) 24px;
}

.vd-page-section--soft {
  background: var(--vd-soft);
}

.vd-section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.vd-section-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(31px, 4.2vw, 48px);
  line-height: 1.12;
}

.vd-section-heading p {
  margin: 0;
  color: var(--vd-muted);
  font-size: 18px;
  line-height: 1.7;
}

.vd-info-grid,
.vd-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.vd-info-card,
.vd-use-card {
  padding: 28px;
  border: 1px solid var(--vd-line);
  border-radius: 20px;
  background: white;
}

.vd-info-card__number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 12px;
  background: #eeecff;
  color: var(--vd-blue);
  font-size: 13px;
  font-weight: 800;
}

.vd-info-card h3,
.vd-use-card h3 {
  margin-bottom: 11px;
  font-size: 20px;
  line-height: 1.35;
}

.vd-info-card p,
.vd-use-card p {
  margin: 0;
  color: var(--vd-muted);
  font-size: 15px;
  line-height: 1.7;
}

.vd-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
}

.vd-split h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4.2vw, 48px);
  line-height: 1.14;
}

.vd-split > div > p {
  color: var(--vd-muted);
  font-size: 18px;
  line-height: 1.72;
}

.vd-detail-stack {
  display: grid;
  gap: 14px;
}

.vd-detail-item {
  padding: 22px 24px;
  border-left: 3px solid var(--vd-blue);
  border-radius: 0 16px 16px 0;
  background: var(--vd-soft);
}

.vd-detail-item strong {
  display: block;
  margin-bottom: 7px;
  color: var(--vd-navy);
  font-family: "Sora", Arial, sans-serif;
  font-size: 17px;
}

.vd-detail-item p {
  margin: 0;
  color: var(--vd-muted);
  font-size: 15px;
  line-height: 1.65;
}

.vd-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  border-radius: 28px;
  background: var(--vd-navy);
  color: white;
}

.vd-callout h2 {
  margin-bottom: 12px;
  color: white;
  font-size: clamp(27px, 4vw, 42px);
}

.vd-callout p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.65;
}

.vd-page-footer {
  padding: 34px 24px;
  border-top: 1px solid var(--vd-line);
  background: white;
}

.vd-page-footer__inner {
  display: flex;
  width: min(1200px, 100%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
  color: var(--vd-muted);
  font-size: 13px;
}

.vd-page-footer a {
  color: var(--vd-blue);
  font-weight: 700;
  text-decoration: none;
}

/* Flexi product page */
.vd-flexi-page {
  background: #f7f9ff;
}

.vd-flexi-page .vd-page-hero {
  padding-top: clamp(62px, 8vw, 112px);
  padding-bottom: clamp(56px, 7vw, 96px);
}

.vd-flexi-hero__grid {
  grid-template-columns: 1fr;
  gap: 36px;
}

.vd-flexi-hero__copy h1 {
  max-width: none;
}

.vd-flexi-hero__copy .vd-page-hero__lead {
  max-width: none;
}

.vd-flexi-video {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(184, 176, 255, 0.45);
  border-radius: 24px;
  background: #020a22;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

.vd-flexi-video::before {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(5, 13, 40, 0.76);
  color: white;
  font-size: 12px;
  font-weight: 700;
  content: "FLEXI · GRAFIKUS ÁTTEKINTÉS";
  letter-spacing: 0.04em;
}

.vd-flexi-video video {
  display: block;
  width: 100%;
  aspect-ratio: 1.98 / 1;
  object-fit: cover;
}

.vd-flexi-video figcaption {
  padding: 14px 18px 16px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.vd-flexi-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.vd-flexi-signal {
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid rgba(185, 179, 255, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.vd-flexi-signal::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 8px 1px 0;
  border-radius: 50%;
  background: var(--vd-green);
  content: "";
}

.vd-flexi-section {
  padding: clamp(76px, 9vw, 124px) 24px;
}

.vd-flexi-section--white {
  background: white;
}

.vd-flexi-section--ink {
  background:
    radial-gradient(circle at 12% 10%, rgba(29, 0, 250, 0.25), transparent 32%),
    var(--vd-navy);
  color: white;
}

.vd-flexi-section--ink .vd-section-heading h2,
.vd-flexi-section--ink .vd-section-heading p {
  color: white;
}

.vd-flexi-section--ink .vd-section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.vd-flexi-use-grid,
.vd-flexi-output-grid,
.vd-flexi-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vd-flexi-use-card,
.vd-flexi-output-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(7, 26, 68, 0.1);
  border-radius: 20px;
  background: white;
  box-shadow: 0 15px 44px rgba(13, 30, 73, 0.06);
}

.vd-flexi-use-card__mark,
.vd-flexi-output-card__mark {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 12px;
  background: #ecebff;
  color: var(--vd-blue);
  font-family: "Sora", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.vd-flexi-use-card h3,
.vd-flexi-output-card h3 {
  margin: 0 0 10px;
  color: var(--vd-navy);
  font-family: "Sora", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

.vd-flexi-use-card p,
.vd-flexi-output-card p {
  margin: 0;
  color: var(--vd-muted);
  font-size: 15px;
  line-height: 1.65;
}

.vd-flexi-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
}

.vd-flexi-flow::before {
  position: absolute;
  top: 28px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
  content: "";
}

.vd-flexi-flow-card {
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.vd-flexi-flow-card__step {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: var(--vd-navy);
  color: var(--vd-green);
  font-family: "Sora", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.vd-flexi-flow-card h3 {
  margin: 0 0 11px;
  color: white;
  font-family: "Sora", Arial, sans-serif;
  font-size: 20px;
  line-height: 1.3;
}

.vd-flexi-flow-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.vd-flexi-pricing {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.vd-flexi-credit-offer {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  margin: 20px 0;
  padding: 13px 16px;
  border: 1px solid rgba(29, 0, 250, 0.13);
  border-radius: 12px;
  background: #f1f0ff;
  color: var(--vd-blue-dark);
  font-family: "Sora", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.vd-flexi-credit-offer strong {
  font-size: 17px;
}

.vd-flexi-credit-offer span {
  color: var(--vd-navy);
  font-weight: 600;
}

.vd-flexi-registration-note {
  margin: -8px 0 20px;
  color: var(--vd-muted);
  font-size: 13px;
  line-height: 1.6;
}

.vd-flexi-pricing__lead {
  margin: 0;
  color: var(--vd-muted);
  font-size: 18px;
  line-height: 1.7;
}

.vd-flexi-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vd-flexi-price-card {
  min-height: 100%;
  padding: 24px 20px;
  border: 1px solid rgba(7, 26, 68, 0.1);
  border-radius: 18px;
  background: white;
  box-shadow: 0 15px 44px rgba(13, 30, 73, 0.06);
}

.vd-flexi-price-card--featured {
  border-color: rgba(29, 0, 250, 0.3);
  background: var(--vd-blue);
  color: white;
  box-shadow: 0 22px 52px rgba(29, 0, 250, 0.2);
}

.vd-flexi-price-card__label {
  display: block;
  margin-bottom: 16px;
  color: var(--vd-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vd-flexi-price-card--featured .vd-flexi-price-card__label,
.vd-flexi-price-card--featured p {
  color: rgba(255, 255, 255, 0.92);
}

.vd-flexi-price-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--vd-navy);
  font-family: "Sora", Arial, sans-serif;
  font-size: 24px;
  line-height: 1.15;
}

.vd-flexi-price-card--featured strong {
  color: white;
}

.vd-flexi-price-card p {
  margin: 0;
  color: var(--vd-muted);
  font-size: 13px;
  line-height: 1.5;
}

.vd-flexi-price-card.vd-flexi-price-card--featured p {
  color: rgba(255, 255, 255, 0.92);
}

.vd-flexi-pricing__note {
  margin: 20px 0 0;
  color: var(--vd-muted);
  font-size: 13px;
  line-height: 1.6;
}

.vd-flexi-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(34px, 6vw, 68px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 24%, rgba(8, 217, 1, 0.2), transparent 26%),
    var(--vd-navy);
  color: white;
}

.vd-flexi-cta h2 {
  margin: 0 0 12px;
  color: white;
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.vd-flexi-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.65;
}

.vd-flexi-cta .vd-primary-button {
  background: var(--vd-green);
  color: var(--vd-navy);
}

@media (max-width: 980px) {
  .vd-flexi-hero__grid,
  .vd-flexi-pricing,
  .vd-flexi-cta {
    grid-template-columns: 1fr;
  }

  .vd-flexi-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 22px;
  }

  .vd-flexi-flow::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .vd-flexi-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .vd-flexi-video {
    border-radius: 18px;
  }

  .vd-flexi-video::before {
    top: 11px;
    left: 11px;
    font-size: 10px;
  }

  .vd-flexi-signals,
  .vd-flexi-use-grid,
  .vd-flexi-output-grid,
  .vd-flexi-flow,
  .vd-flexi-price-grid {
    grid-template-columns: 1fr;
  }

  .vd-flexi-flow-card {
    padding: 0;
  }

  .vd-flexi-flow-card__step {
    margin-bottom: 16px;
  }

  .vd-flexi-cta {
    gap: 24px;
    border-radius: 20px;
  }
}

/* Injected solution item in the exported Elementor navigation */
.vd-injected-solution-link > a,
.vd-injected-solution-link .e-n-menu-title-container {
  color: inherit;
}

.vd-mobile-solution-shortcut {
  display: none;
}

@media (max-width: 980px) {
  .vd-product-grid,
  .vd-info-grid,
  .vd-use-grid {
    grid-template-columns: 1fr;
  }

  .vd-product-card__promise {
    min-height: 0;
  }

  .vd-addon,
  .vd-page-hero__grid,
  .vd-split,
  .vd-callout {
    grid-template-columns: 1fr;
  }

  .vd-processing__intro,
  .vd-mode-grid {
    grid-template-columns: 1fr;
  }

  .vd-mode-card__lead {
    min-height: 0;
  }

  .vd-addon__link {
    width: fit-content;
  }
}

@media (max-width: 767px) {
  .vd-solutions,
  .vd-processing,
  .vd-page-section,
  .vd-page-hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .vd-product-card,
  .vd-addon,
  .vd-mode-card,
  .vd-dashboard-note,
  .vd-page-hero__panel,
  .vd-info-card,
  .vd-use-card {
    border-radius: 18px;
  }

  .vd-addon {
    grid-template-columns: auto 1fr;
  }

  .vd-addon__link {
    grid-column: 1 / -1;
  }

  .vd-dashboard-note {
    grid-template-columns: 1fr;
  }

  .vd-page-nav {
    width: min(100% - 32px, 1200px);
    min-height: 68px;
  }

  .vd-page-logo img {
    width: 150px;
  }

  .vd-page-nav__toggle {
    display: inline-flex;
  }

  .vd-page-nav__links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 3px;
    padding: 14px 16px 18px;
    border-bottom: 1px solid rgba(7, 26, 68, 0.1);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 20px 40px rgba(7, 26, 68, 0.13);
  }

  .vd-page-nav.is-open .vd-page-nav__links {
    display: grid;
  }

  .vd-page-nav__links > a,
  .vd-page-nav__industries summary {
    padding: 12px 14px;
    border-radius: 10px;
  }

  .vd-page-nav__links > a:hover,
  .vd-page-nav__industries summary:hover {
    background: var(--vd-soft);
  }

  .vd-page-nav__industries summary {
    justify-content: space-between;
  }

  .vd-page-nav__dropdown,
  .vd-page-nav__industries[open] .vd-page-nav__dropdown {
    position: static;
    min-width: 0;
    margin: 2px 0 7px;
    padding: 5px 0 5px 13px;
    transform: none;
    border: 0;
    border-left: 2px solid var(--vd-line);
    border-radius: 0;
    opacity: 1;
    background: transparent;
    box-shadow: none;
    pointer-events: auto;
    visibility: visible;
  }

  .vd-page-nav__industries:not([open]) .vd-page-nav__dropdown {
    display: none;
  }

  .vd-page-nav__links .vd-page-nav__cta {
    width: 100%;
    margin-top: 5px;
    padding: 12px 14px;
  }

  .vd-page-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .elementor-widget-n-menu,
  .elementor-widget-nav-menu {
    overflow: visible !important;
  }

  .vd-mobile-solution-shortcut {
    position: absolute;
    top: 50%;
    right: 54px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 11px;
    transform: translateY(-50%);
    border: 1px solid rgba(29, 0, 250, 0.14);
    border-radius: 999px;
    background: #f4f2ff;
    color: var(--vd-blue) !important;
    font-family: "Inter", Arial, sans-serif;
    font-size: 11px !important;
    font-weight: 750;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vd-product-card,
  .vd-card-link,
  .vd-primary-button,
  .vd-secondary-button,
  .vd-card-link::after {
    transition: none;
  }
}

@media (max-width: 350px) {
  .vd-mobile-solution-shortcut {
    right: 50px;
    padding: 6px 8px;
    font-size: 0 !important;
  }

  .vd-mobile-solution-shortcut::after {
    content: "Termékek";
    font-size: 10px;
  }
}

/* Megoldások lenyíló az Elementor-exportált fejlécekhez */
.vd-injected-solution-menu {
  position: relative;
}

.vd-injected-solution-menu .vd-solution-menu-toggle {
  cursor: pointer;
}

.e-n-menu-heading > .vd-injected-solution-menu .e-n-menu-title {
  display: flex;
  align-items: center;
}

.e-n-menu-heading > .vd-injected-solution-menu .e-n-menu-title-container {
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.e-n-menu-heading > .vd-injected-solution-menu .vd-solution-menu-label:focus-visible {
  outline: 2px solid var(--vd-blue);
  outline-offset: 4px;
}

.e-n-menu-heading > .vd-injected-solution-menu .vd-solution-menu-toggle {
  position: static !important;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 0;
  min-height: 0;
  margin-left: 5px;
  padding: 0 5px 0 3px;
  border: 0;
  background: transparent;
  color: inherit;
  line-height: 1;
}

.e-n-menu-heading > .vd-injected-solution-menu .vd-solution-menu-toggle svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 160ms ease;
}

.e-n-menu-heading > .vd-injected-solution-menu.is-open .vd-solution-menu-toggle svg {
  transform: rotate(180deg);
}

.vd-injected-solution-menu .vd-exported-solutions-dropdown {
  display: none;
  z-index: 20;
}

.e-n-menu-heading > .vd-injected-solution-menu .vd-exported-solutions-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -18px;
  min-width: 204px;
  padding: 8px;
  border: 1px solid rgba(7, 26, 68, 0.11);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(7, 26, 68, 0.14);
}

.e-n-menu-heading > .vd-injected-solution-menu.is-open .vd-exported-solutions-dropdown {
  display: grid;
  gap: 2px;
}

.e-n-menu-heading > .vd-injected-solution-menu .vd-exported-solution-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--vd-navy);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.e-n-menu-heading > .vd-injected-solution-menu .vd-exported-solution-link:hover {
  background: var(--vd-soft);
  color: var(--vd-blue);
}

.elementor-nav-menu .vd-injected-solution-menu > .vd-exported-solutions-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  margin: 0;
  padding: 7px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 30px rgba(7, 26, 68, 0.14);
  list-style: none;
}

.elementor-nav-menu .vd-injected-solution-menu.is-open > .vd-exported-solutions-dropdown {
  display: block !important;
}

.elementor-nav-menu .vd-injected-solution-menu > .vd-exported-solutions-dropdown li {
  margin: 0;
}

.elementor-nav-menu .vd-injected-solution-menu > a .sub-arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform 160ms ease;
}

.elementor-nav-menu .vd-injected-solution-menu.is-open > a .sub-arrow {
  transform: rotate(180deg);
}

@media (min-width: 768px) and (max-width: 1400px) {
  .e-n-menu-heading {
    flex-wrap: nowrap !important;
  }

  .e-n-menu-heading > .e-n-menu-item .e-n-menu-title-container {
    padding-right: 5px !important;
    padding-left: 5px !important;
    font-size: 13px !important;
  }

  .e-n-menu-heading > .e-n-menu-item .e-n-menu-dropdown-icon {
    padding-right: 5px !important;
    padding-left: 3px !important;
  }

  .e-n-menu-heading > .e-n-menu-item:last-child {
    display: none;
  }
}

@media (max-width: 767px) {
  .e-n-menu-heading > .vd-injected-solution-menu .vd-exported-solutions-dropdown,
  .elementor-nav-menu .vd-injected-solution-menu > .vd-exported-solutions-dropdown {
    position: static;
    min-width: 0;
    margin: 2px 0 7px;
    padding: 5px 0 5px 14px;
    border: 0;
    border-left: 2px solid var(--vd-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .e-n-menu-heading > .vd-injected-solution-menu.is-open .vd-exported-solutions-dropdown,
  .elementor-nav-menu .vd-injected-solution-menu.is-open > .vd-exported-solutions-dropdown {
    display: grid !important;
    gap: 2px;
  }

  .e-n-menu-heading > .vd-injected-solution-menu .vd-exported-solution-link,
  .elementor-nav-menu .vd-injected-solution-menu .elementor-sub-item {
    padding: 9px 12px;
  }
}

/* VeriDome Live */
.vd-live-page {
  background: #fff;
}

.vd-live-hero {
  overflow: hidden;
  padding: 76px 0 82px;
  background: #061a44;
  color: #fff;
}

.vd-live-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  align-items: center;
  gap: 60px;
}

.vd-live-hero .vd-eyebrow,
.vd-live-heading--light .vd-eyebrow {
  color: #67e4c0;
}

.vd-live-hero h1 {
  max-width: 680px;
  margin: 14px 0 22px;
  color: #fff;
  font-size: clamp(38px, 4.5vw, 67px);
  line-height: 1.03;
  letter-spacing: -0.052em;
}

.vd-live-hero .vd-page-hero__lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.8);
}

.vd-live-hero .vd-secondary-button {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.vd-live-hero .vd-secondary-button:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.vd-live-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.vd-live-hero__facts span {
  padding: 8px 11px;
  border: 1px solid rgba(103, 228, 192, 0.26);
  border-radius: 999px;
  color: #c9f5e7;
  font-size: 12px;
  font-weight: 650;
}

.vd-live-hero__video {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(103, 228, 192, 0.25);
  border-radius: 20px;
  background: #102657;
  box-shadow: 20px 20px 0 rgba(29, 0, 250, 0.35);
}

.vd-live-hero__video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.vd-live-hero__video figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(5, 19, 51, 0.88);
  color: #fff;
  font-size: 11px;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

.vd-live-hero__video figcaption strong {
  color: #67e4c0;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.vd-live-pulse {
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #52dcaf;
  box-shadow: 0 0 0 5px rgba(82, 220, 175, 0.14);
}

.vd-live-intro,
.vd-live-setup {
  padding: 106px 0;
}

.vd-live-heading {
  max-width: 790px;
  margin-bottom: 46px;
}

.vd-live-heading h2,
.vd-live-setup h2,
.vd-live-cta h2 {
  font-size: clamp(30px, 3.7vw, 49px);
  line-height: 1.08;
  letter-spacing: -0.042em;
}

.vd-live-chain {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #dce3ef;
  border-radius: 16px;
  overflow: hidden;
}

.vd-live-chain article {
  position: relative;
  min-height: 250px;
  padding: 29px 26px 26px;
  border-right: 1px solid #dce3ef;
  background: #fff;
}

.vd-live-chain article:last-child {
  border-right: 0;
  background: #effff9;
}

.vd-live-chain span {
  display: block;
  margin-bottom: 43px;
  color: #1d00fa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.vd-live-chain h3 {
  margin: 0 0 11px;
  color: #071a44;
  font-family: "Sora", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.3;
}

.vd-live-chain p {
  margin: 0;
  color: #53617a;
  font-size: 14px;
  line-height: 1.55;
}

.vd-live-dashboard {
  padding: 0 0 106px;
  background: #fff;
}

.vd-live-dashboard .vd-live-heading {
  margin-bottom: 42px;
}

.vd-live-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.vd-live-dashboard__card {
  overflow: hidden;
  border: 1px solid #d8e0ee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(7, 26, 68, 0.07);
}

.vd-live-dashboard__card--feature {
  border-color: #b7c9ff;
}

.vd-live-dashboard__card figure {
  position: relative;
  aspect-ratio: 1.995 / 1;
  margin: 0;
  overflow: hidden;
  background: #edf2fc;
}

.vd-live-dashboard__card figure::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(15, 35, 84, 0.08);
  content: "";
  pointer-events: none;
}

.vd-live-dashboard__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.vd-live-dashboard__body {
  min-height: 218px;
  padding: 23px 24px 25px;
}

.vd-live-dashboard__body > span {
  display: block;
  margin-bottom: 10px;
  color: #1d00fa;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vd-live-dashboard__body h3 {
  margin: 0 0 10px;
  color: #071a44;
  font-family: "Sora", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

.vd-live-dashboard__body p {
  margin: 0;
  color: #53617a;
  font-size: 14px;
  line-height: 1.55;
}

/* Analytics dashboard showcase */
.vd-analytics-dashboard {
  padding: 106px 0;
  background: #fff;
}

.vd-analytics-dashboard .vd-section-heading {
  max-width: 810px;
  margin-bottom: 46px;
}

.vd-analytics-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.vd-analytics-dashboard__card {
  overflow: hidden;
  border: 1px solid #d8e0ee;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(7, 26, 68, 0.07);
}

.vd-analytics-dashboard__card figure {
  position: relative;
  aspect-ratio: 1.995 / 1;
  margin: 0;
  overflow: hidden;
  background: #edf2fc;
}

.vd-analytics-dashboard__card figure::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(15, 35, 84, 0.08);
  content: "";
  pointer-events: none;
}

.vd-analytics-dashboard__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vd-analytics-dashboard__card > div {
  min-height: 202px;
  padding: 23px 24px 25px;
}

.vd-analytics-dashboard__card span {
  display: block;
  margin-bottom: 10px;
  color: #1d00fa;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vd-analytics-dashboard__card h3 {
  margin: 0 0 10px;
  color: #071a44;
  font-family: "Sora", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

.vd-analytics-dashboard__card p {
  margin: 0;
  color: #53617a;
  font-size: 14px;
  line-height: 1.55;
}

.vd-dashboard-zoom {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.vd-dashboard-zoom::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(7, 26, 68, 0.82);
  color: #fff;
  content: "Nagyítás";
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.vd-dashboard-zoom:hover::after,
.vd-dashboard-zoom:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.vd-dashboard-zoom:focus-visible {
  outline: 3px solid var(--vd-blue);
  outline-offset: -3px;
}

.vd-image-lightbox-open {
  overflow: hidden;
}

.vd-image-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(3, 13, 35, 0.84);
}

.vd-image-lightbox__content {
  position: relative;
  max-width: min(1440px, 96vw);
  max-height: calc(100vh - 60px);
}

.vd-image-lightbox__content img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 60px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.45);
}

.vd-image-lightbox__close {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(7, 26, 68, 0.86);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.vd-image-lightbox__close:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.vd-live-demos {
  padding: 106px 0 112px;
  background: #081b43;
  color: #fff;
}

.vd-live-heading--light h2 {
  color: #fff;
}

.vd-live-heading--light p:not(.vd-eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.vd-live-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.vd-live-demo-card {
  overflow: hidden;
  border: 1px solid rgba(167, 192, 234, 0.21);
  border-radius: 14px;
  background: #0f2a5c;
}

.vd-live-demo-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #051332;
  object-fit: cover;
}

.vd-live-demo-card__body {
  min-height: 194px;
  padding: 21px 22px 24px;
}

.vd-live-demo-card__tag {
  margin: 0 0 11px;
  color: #67e4c0;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.vd-live-demo-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Sora", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

.vd-live-demo-card__body > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.vd-live-setup__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(450px, 1.25fr);
  align-items: start;
  gap: 80px;
}

.vd-live-setup h2 {
  max-width: 465px;
  margin: 12px 0 17px;
}

.vd-live-setup__grid > div > p:last-child {
  max-width: 480px;
  color: #53617a;
  line-height: 1.65;
}

.vd-live-setup__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.vd-live-setup__items article {
  min-height: 132px;
  padding: 23px;
  border: 1px solid #dce3ef;
  border-radius: 12px;
}

.vd-live-setup__items strong,
.vd-live-setup__items span {
  display: block;
}

.vd-live-setup__items strong {
  margin-bottom: 8px;
  color: #071a44;
  font-family: "Sora", Arial, sans-serif;
  font-size: 15px;
}

.vd-live-setup__items span {
  color: #5c6a83;
  font-size: 13px;
  line-height: 1.45;
}

.vd-live-cta {
  padding: 0 0 104px;
}

.vd-live-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 53px 56px;
  border-radius: 18px;
  background: #e6fff5;
}

.vd-live-cta .vd-eyebrow {
  color: #00785d;
}

.vd-live-cta h2 {
  max-width: 650px;
  margin: 9px 0 12px;
}

.vd-live-cta p:not(.vd-eyebrow) {
  max-width: 645px;
  margin: 0;
  color: #4f6277;
}

.vd-live-cta .vd-primary-button {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .vd-live-hero__grid,
  .vd-live-setup__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .vd-live-chain {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vd-live-chain article:nth-child(2) {
    border-right: 0;
  }

  .vd-live-chain article:nth-child(-n + 2) {
    border-bottom: 1px solid #dce3ef;
  }

  .vd-live-demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vd-live-dashboard__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vd-analytics-dashboard__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vd-analytics-dashboard__card:first-child {
    grid-column: span 2;
  }

  .vd-live-dashboard__card--feature {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .vd-live-hero,
  .vd-live-intro,
  .vd-live-demos,
  .vd-live-setup,
  .vd-live-dashboard,
  .vd-analytics-dashboard {
    padding: 64px 20px;
  }

  .vd-live-hero__grid {
    gap: 36px;
  }

  .vd-live-hero h1 {
    font-size: 40px;
  }

  .vd-live-hero__facts {
    margin-top: 28px;
  }

  .vd-live-hero__video {
    border-radius: 14px;
    box-shadow: 12px 12px 0 rgba(29, 0, 250, 0.35);
  }

  .vd-live-hero__video figcaption {
    right: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
    padding: 7px 8px;
    font-size: 9px;
  }

  .vd-live-heading {
    margin-bottom: 32px;
  }

  .vd-live-chain,
  .vd-live-demo-grid,
  .vd-live-dashboard__grid,
  .vd-analytics-dashboard__grid,
  .vd-live-setup__items {
    grid-template-columns: 1fr;
  }

  .vd-live-dashboard__card--feature {
    grid-column: auto;
  }

  .vd-analytics-dashboard__card:first-child {
    grid-column: auto;
  }

  .vd-live-dashboard__body {
    min-height: 0;
  }

  .vd-analytics-dashboard__card > div {
    min-height: 0;
  }

  .vd-image-lightbox {
    padding: 16px;
  }

  .vd-image-lightbox__content,
  .vd-image-lightbox__content img {
    max-height: calc(100vh - 32px);
  }

  .vd-live-chain article,
  .vd-live-chain article:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #dce3ef;
  }

  .vd-live-chain article:last-child {
    border-bottom: 0;
  }

  .vd-live-chain span {
    margin-bottom: 27px;
  }

  .vd-live-demo-card__body {
    min-height: 0;
  }

  .vd-live-cta {
    padding: 0 20px 64px;
  }

  .vd-live-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    padding: 34px 28px;
    border-radius: 16px;
  }
}
