:root {
  --bg: #08111f;
  --surface: #0f1b31;
  --surface-2: #101f3c;
  --text: #111827;
  --muted: #64748b;
  --line: #d8e1ef;
  --brand: #2d65ff;
  --brand-2: #57a6ff;
  --white: #ffffff;
  --light: #f5f8fc;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(8, 17, 31, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(840px, 100%); }
.center-text { text-align: center; }
.section { padding: 88px 0; }
.section-muted { background: var(--light); }
.section-dark { background: linear-gradient(180deg, #091221, #0c1830); color: var(--white); }
.site-main { overflow: clip; }
.eyebrow {
  display: inline-block;
  font-size: .84rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 14px;
}
.section-dark .eyebrow, .light .eyebrow { color: #8ec5ff; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 16px; }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; }
p { margin: 0 0 14px; }
.lead { font-size: 1.15rem; color: #42526b; }
.section-dark .lead, .light .lead { color: rgba(255,255,255,.82); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: var(--white); box-shadow: 0 12px 30px rgba(45,101,255,.26); }
.button-secondary { border-color: #cad6ea; color: var(--text); background: var(--white); }
.section-dark .button-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.22); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(216,225,239,.8);
}
.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.site-brand {
  font-weight: 900;
  letter-spacing: .06em;
  font-size: 1.1rem;
}
.site-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
.nav-link { color: #42526b; font-weight: 600; }
.nav-link.is-active, .nav-link:hover { color: var(--brand); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-link { font-weight: 700; color: #64748b; }
.lang-link.is-active { color: var(--brand); }
.lang-sep { color: #94a3b8; }
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 40px;
  height: 40px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  margin: 5px auto;
}
.hero {
  background: radial-gradient(circle at top left, rgba(45,101,255,.08), transparent 38%), linear-gradient(180deg, #ffffff, #f6f9fe);
}
.hero-grid, .split-block, .cta-grid, .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .lead { max-width: 58ch; }
.hero-points, .check-list, .footer-links { list-style: none; padding: 0; margin: 22px 0 0; }
.hero-points li, .check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.hero-points li::before, .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.75);
}
.hero-media img, .split-media img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.section-heading { margin-bottom: 34px; }
.section-heading.center { text-align: center; }
.card-grid {
  display: grid;
  gap: 22px;
}
.three-up { grid-template-columns: repeat(3, minmax(0,1fr)); }
.four-up { grid-template-columns: repeat(4, minmax(0,1fr)); }
.info-card, .product-card, .feature-card, .contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card, .product-card { padding: 24px; }
.product-card img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-bottom: 18px;
}
.section-dark .info-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.09);
  box-shadow: none;
}
.section-dark .info-card p { color: rgba(255,255,255,.8); }
.feature-grid { display: grid; gap: 26px; }
.feature-card.horizontal {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  padding: 24px;
  align-items: center;
}
.feature-card.horizontal img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 16px;
  background: #f8fbff;
}
.phone-sequence {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 32px;
  align-items: center;
}
.phone-sequence-visual {
  display: flex;
  justify-content: center;
}
.phone-shell {
  position: relative;
  width: min(330px, 100%);
  padding: 16px 16px 18px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 22px;
  border-radius: 999px;
  background: rgba(8,17,31,.85);
  z-index: 2;
}
.phone-sequence-screen {
  display: block;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  transition: opacity .38s ease, transform .38s ease, filter .38s ease;
}
.phone-sequence-screen.is-changing {
  opacity: .1;
  transform: scale(.985);
  filter: blur(1px);
}
.phone-sequence-copy {
  display: grid;
  gap: 20px;
}
.phone-sequence-status {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 22px;
}
.phone-sequence-step-label {
  display: inline-block;
  color: rgba(255,255,255,.64);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.phone-sequence-step-title {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.phone-sequence-step-text {
  color: rgba(255,255,255,.8);
  margin: 0;
}
.phone-step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.phone-step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  width: 100%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  color: var(--white);
  padding: 16px;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.phone-step:hover,
.phone-step:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(142,197,255,.45);
  background: rgba(255,255,255,.06);
  outline: none;
}
.phone-step.is-active {
  border-color: rgba(142,197,255,.55);
  background: rgba(45,101,255,.16);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
}
.phone-step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.12);
  font-weight: 800;
}
.phone-step-copy {
  display: grid;
  gap: 4px;
}
.phone-step-copy strong {
  color: var(--white);
  font-size: 1rem;
}
.phone-step-copy span {
  color: rgba(255,255,255,.72);
  font-size: .94rem;
  line-height: 1.45;
}
.pricing-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.pricing-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.pricing-table th {
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #475569;
  background: #f8fbff;
}
.pricing-table tr:last-child td {
  border-bottom: 0;
}
.pricing-table tr.pricing-section-gap td {
  height: 14px;
  padding: 0;
  background: #f3f7ff;
  border-bottom: 1px solid var(--line);
}
.pricing-table tr.pricing-section-gap + tr td {
  border-top: 1px solid rgba(45,101,255,.16);
}
.pricing-note {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 20px;
  background: #eef5ff;
  border: 1px solid #cfdcf5;
  color: #314155;
}
.cta-band { background: linear-gradient(135deg, rgba(45,101,255,.08), rgba(87,166,255,.1)); }
.end-on-desktop { justify-content: flex-end; }
.faq-list { display: grid; gap: 14px; }
details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 0 18px;
}
details summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  padding: 18px 0;
  color: #0f172a;
}
details summary::-webkit-details-marker { display: none; }
details p { padding: 0 0 18px; color: #475569; }
.faq-page details {
  box-shadow: 0 14px 34px rgba(5, 13, 28, .12);
}
.faq-page details[open] {
  border-color: rgba(45,101,255,.35);
}
.faq-page details[open] summary {
  color: #1746ff;
}
.pill-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
.pill { padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.page-hero, .simple-hero { background: linear-gradient(180deg, #f8fbff, #fff); }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 24px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-bottom: 18px; }
.form-grid label { display: grid; gap: 8px; font-weight: 600; }
.form-grid .full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
}
textarea { resize: vertical; }
.form-status {
  background: #eef8f0;
  color: #166534;
  border: 1px solid #b7e1bf;
  border-radius: 16px;
  padding: 12px 14px;
  margin-bottom: 16px;
}
.site-footer {
  background: #08111f;
  color: rgba(255,255,255,.82);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}
.footer-brand { font-size: 1.2rem; font-weight: 900; letter-spacing: .06em; color: var(--white); margin-bottom: 8px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 34px;
  padding: 18px 0 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: .95rem;
}
.desktop-only { display: inline-flex; }
@media (max-width: 1024px) {
  .three-up, .four-up, .contact-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .phone-sequence { grid-template-columns: 1fr; }
  .hero-grid, .split-block, .cta-grid, .feature-card.horizontal { grid-template-columns: 1fr; }
  .feature-card.horizontal img { max-width: 360px; }
  .end-on-desktop { justify-content: flex-start; }
}
@media (max-width: 782px) {
  .section { padding: 70px 0; }
  .header-inner { grid-template-columns: auto auto auto; }
  .menu-toggle { display: inline-block; justify-self: end; }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 18px 16px 24px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(216,225,239,.9);
    flex-direction: column;
  }
  .site-nav.is-open { display: flex; }
  .desktop-only { display: none; }
  .three-up, .four-up, .contact-grid, .footer-grid, .form-grid, .phone-step-list { grid-template-columns: 1fr; }
  .hero { padding-top: 0; }
  .hero-grid { gap: 26px; }
  .hero-media { order: -1; margin: 0 calc(-16px); }
  .hero-media img {
    width: 100%;
    border-radius: 0 0 28px 28px;
  }
  .hero-copy { padding-top: 2px; }
  .phone-shell { width: min(320px, 100%); }
  .phone-sequence-copy { gap: 16px; }
  .phone-sequence-status, .phone-step { padding: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .phone-sequence-screen, .phone-step {
    transition: none !important;
    animation: none !important;
  }
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand);
  margin-top: 10px;
}
.text-link:hover { text-decoration: underline; }
.ai-grid-section .info-card { height: 100%; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 22px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.process-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 14px;
}
.process-list li {
  padding-left: 6px;
  color: #334155;
}
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: 1fr; }
}


/* v19 products page restore */
.split-copy { min-width: 0; }
.reverse-mobile {}
.compact-cards .info-card { padding: 22px; }
@media (max-width: 900px) {
  .reverse-mobile { display: flex; flex-direction: column-reverse; }
}

/* v20 company + retrofit structure */
.site-brand { display:flex; flex-direction:column; line-height:1.05; }
.brand-main { font-weight: 950; letter-spacing: .08em; font-size: 1.18rem; }
.brand-sub { font-weight: 700; letter-spacing: .02em; font-size: .74rem; color: #64748b; }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.five-up { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.tall-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 18px; margin-bottom: 18px; }
.tall-card img.contain-image { object-fit: contain; background: #f8fbff; padding: 8px; }
.compact-products .product-card { display: block; color: inherit; min-height: 100%; }
.compact-products .product-card img { aspect-ratio: 4 / 3; object-fit: contain; background: #f8fbff; border-radius: 16px; padding: 8px; }
.product-list-grid { gap: 28px; }
.page-hero { background: linear-gradient(180deg, #ffffff, #f6f9fe); }
.center-row { justify-content: center; }
.table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { padding: 18px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 32%; background: #f8fbff; color: #0f172a; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.wide-diagram { width: 100%; border-radius: 24px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.flow-row { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 16px; }
.flow-row div { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px; text-align: center; font-weight: 800; box-shadow: var(--shadow); }
.flow-row span { font-size: 2rem; color: var(--brand); font-weight: 900; }
.center-note { text-align: center; margin-top: 22px; color: #475569; }
.image-docs img { width: 100%; border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.footer-contact { color: #fff; font-weight: 700; }
@media (max-width: 1180px) { .five-up { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 1024px) { .two-up, .five-up { grid-template-columns: 1fr 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 782px) { .two-up, .five-up { grid-template-columns: 1fr; } .flow-row { grid-template-columns: 1fr; } .flow-row span { transform: rotate(90deg); justify-self: center; } .spec-table th { width:auto; } }

/* v21 detailed product pages */
.product-hero { background: radial-gradient(circle at top right, rgba(45,101,255,.09), transparent 34%), linear-gradient(180deg, #ffffff, #f6f9fe); }
.product-photo-card img { background:#fff; object-fit: contain; padding: 18px; }
.detail-nav-section { padding: 18px 0; position: sticky; top: 78px; z-index: 20; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-nav { display:flex; flex-wrap:wrap; gap:10px; align-items:center; justify-content:center; }
.detail-nav a { border:1px solid #cbd7ee; background:#fff; color:#334155; border-radius:999px; padding:9px 14px; font-weight:800; font-size:.92rem; }
.detail-nav a:hover { color: var(--brand); border-color: rgba(45,101,255,.45); }
.dark-cards .info-card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.1); color:#fff; box-shadow:none; }
.dark-cards .info-card p { color: rgba(255,255,255,.78); }
.mini-cards { margin-top: 18px; gap: 16px; }
.flow-row-four { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
.media-grid { display:grid; gap:22px; }
.media-grid.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.media-grid.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.media-grid figure { margin:0; background:#fff; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow:hidden; }
.media-grid figure img { width:100%; aspect-ratio: 4 / 3; object-fit: contain; background:#f8fbff; padding: 10px; }
.media-grid figcaption { padding: 14px 16px 16px; color:#475569; font-size:.94rem; border-top:1px solid var(--line); }
.notice-card { background:#fff7ed; border:1px solid #fed7aa; color:#7c2d12; border-radius:20px; padding:18px 20px; }
@media (max-width: 1024px) {
  .media-grid.three-up { grid-template-columns: 1fr 1fr; }
  .flow-row-four { grid-template-columns: 1fr; }
  .flow-row-four span { transform: rotate(90deg); justify-self: center; }
}
@media (max-width: 782px) {
  .detail-nav-section { position: static; }
  .media-grid.two-up, .media-grid.three-up { grid-template-columns: 1fr; }
}
.editable-content-section { background:#fff; }
.editable-content { max-width: 980px; }
.editable-content > *:first-child { margin-top:0; }
.editable-content h2, .editable-content h3 { margin-top: 1.5em; }
.editable-content a { color: var(--brand); font-weight:700; }

/* v22 IVPay QR detailed page */
.section-dark .center-note, .light-note { color: rgba(255,255,255,.78); }
.feature-card.horizontal h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
#arlista .pricing-table td:first-child { font-weight: 800; color: #0f172a; }


/* v23 IVPay QR pricing example and system cards */
.system-card-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; margin-top: 26px; }
.system-card-grid .info-card { padding: 22px; }
.system-card-grid .info-card h3 { margin-bottom: 8px; }
.package-example { margin-top: 28px; background: linear-gradient(135deg, #f8fbff, #ffffff); border: 1px solid var(--line); border-radius: 24px; padding: 26px; box-shadow: var(--shadow); }
.package-example-copy { max-width: 920px; margin: 0 auto 18px; text-align: center; }
.package-example-copy h3 { font-size: clamp(1.5rem, 2.4vw, 2.2rem); margin: 8px 0 10px; }
.package-example-copy p { color:#475569; }
.compact-pricing { margin-top: 18px; }
.pricing-table tr.total-row td { background:#eff6ff; color:#0f172a; border-top: 2px solid rgba(45,101,255,.28); }
.package-example-note { margin: 16px 0 0; color:#475569; font-size:.96rem; }
@media (max-width: 1100px) { .system-card-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 782px) { .system-card-grid { grid-template-columns: 1fr; } .package-example { padding: 18px; } }


/* v24 IVPay QR cleanup */
.section-dark .flow-row div,
.section-dark .flow-row-four div {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  color: #ffffff;
  box-shadow: none;
}
.section-dark .flow-row span,
.section-dark .flow-row-four span {
  color: #7dd3fc;
}
.section-dark .system-card-grid .info-card,
.section-dark .dark-cards .info-card {
  background: rgba(15,23,42,.68);
  border-color: rgba(148,163,184,.28);
  color: #ffffff;
}
.section-dark .system-card-grid .info-card h3,
.section-dark .dark-cards .info-card h3 {
  color: #ffffff;
}
.section-dark .system-card-grid .info-card p,
.section-dark .dark-cards .info-card p {
  color: rgba(226,232,240,.92);
}
.usage-only-gallery {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  gap: 30px;
}
.usage-only-gallery figure img {
  aspect-ratio: 2 / 3;
  object-fit: contain;
  padding: 0;
  background: #f8fbff;
}
.usage-only-gallery figure {
  border-radius: 24px;
}
@media (max-width: 782px) {
  .usage-only-gallery figure img { aspect-ratio: 2 / 3; }
}


/* v29 CupKey mobile UI screenshots */
.phone-ui-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.phone-ui-gallery figure {
  margin: 0;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,.22);
}
.phone-ui-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #f8fbff;
  padding: 10px;
}
.phone-ui-gallery figcaption {
  padding: 12px 12px 14px;
  text-align: center;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  font-size: .92rem;
}
@media (max-width: 1180px) { .phone-ui-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 782px) { .phone-ui-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .phone-ui-gallery { grid-template-columns: 1fr; } }

/* v37 product structure, downloads and Video Display */
.six-up { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.download-card { min-height: 100%; display: flex; flex-direction: column; }
.download-status {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 800;
  font-size: .88rem;
}
.video-display-grid figure img,
.video-display-gallery figure img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
}
.video-display-grid figure figcaption strong { color: #0f172a; }
@media (max-width: 1280px) { .six-up { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 1024px) { .six-up { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 782px) { .six-up { grid-template-columns: 1fr; } }

/* v38 refinements: clickable product groups and Video Display subpages */
.action-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.action-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, .35);
  box-shadow: 0 24px 54px rgba(15, 23, 42, .12);
}
.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: #2563eb;
  font-weight: 900;
}
.video-version-grid { align-items: stretch; }
.video-version-card { display: flex; flex-direction: column; gap: 12px; }
.video-version-card .button { margin-top: auto; width: fit-content; }
.front-back-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 6px;
}
.front-back-pair img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 10px;
}
.video-detail-gallery figure img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
}
.video-detail-gallery figure figcaption,
.video-display-grid figure figcaption,
.video-display-gallery figure figcaption {
  line-height: 1.45;
}
@media (max-width: 640px) {
  .front-back-pair { grid-template-columns: 1fr; }
}

/* v39 Video Display image sizing and click-to-enlarge gallery */
.video-version-card { gap: 16px; }
.video-version-image {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  border-radius: 22px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  text-decoration: none;
}
.video-version-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  transition: transform .18s ease;
}
.video-version-image:hover img { transform: scale(1.025); }
.video-detail-gallery { gap: 30px; }
.video-detail-gallery figure img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 18px;
  background: #fff;
}
.video-detail-gallery a.lightbox-trigger,
.media-grid a.lightbox-trigger {
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.lightbox-trigger img { transition: transform .18s ease, filter .18s ease; }
.lightbox-trigger:hover img { transform: scale(1.018); filter: saturate(1.03); }
.feature-heading-large .eyebrow {
  display: block;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.feature-heading-large h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}
.ivp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(2, 6, 23, .88);
}
.ivp-lightbox.is-open { display: flex; }
.ivp-lightbox__panel {
  position: relative;
  max-width: min(1180px, 96vw);
  max-height: 92vh;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
  overflow: hidden;
}
.ivp-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #f8fafc;
}
.ivp-lightbox__caption {
  padding: 14px 20px 18px;
  color: #334155;
  font-weight: 800;
}
.ivp-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, .86);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.ivp-lightbox__close:hover { background: rgba(15, 23, 42, 1); }
@media (max-width: 782px) {
  .video-detail-gallery { gap: 22px; }
  .ivp-lightbox { padding: 14px; }
  .ivp-lightbox__panel { border-radius: 18px; }
}


/* Cursor refinement: keep gallery clickable without misleading drag/no-drop cursors */
img,
.lightbox-trigger img,
.video-version-image img,
.contact-form input,
.contact-form textarea,
.contact-form select {
  -webkit-user-drag: none;
}
img,
.lightbox-trigger,
.video-version-image {
  user-select: none;
}
.contact-form input,
.contact-form textarea {
  cursor: text;
}
.contact-form select,
.contact-form button,
.button,
a {
  cursor: pointer;
}

/* v42 refinements: prevent misleading no-drop cursor and style Video Display prices */
a, a:link, a:visited,
button,
.button,
.action-card,
.video-version-image,
.lightbox-trigger,
.media-grid a,
.video-detail-gallery a,
.video-display-gallery a,
figure,
figure img,
img {
  cursor: pointer !important;
}
img,
a img,
figure img,
.video-version-image img,
.lightbox-trigger img,
.ivpay-inline-image {
  -webkit-user-drag: none !important;
  user-drag: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}
.contact-form input,
.contact-form textarea {
  cursor: text !important;
}
.contact-form select,
.contact-form button,
.contact-form label,
.contact-form .button {
  cursor: pointer !important;
}
.price-box {
  display: grid;
  gap: 7px;
  margin: 18px 0 20px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(37, 99, 235, .08);
  border: 1px solid rgba(37, 99, 235, .18);
  color: #0f172a;
}
.price-box.compact {
  margin: 8px 0 16px;
  padding: 14px 16px;
  border-radius: 16px;
}
.price-box strong {
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #2563eb;
}
.price-box span {
  font-weight: 900;
}
.price-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
}
.price-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
}
.price-card div:last-child { border-bottom: 0; }
.price-card strong {
  color: #475569;
  font-size: .95rem;
}
.price-card span {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 950;
  text-align: right;
}
.ivpay-inline-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
}

/* v43 global cursor and drag refinement: prevent browser no-drop cursor during accidental dragging */
html, body, main, section, div, article, aside, header, footer, nav, p, ul, ol, li, h1, h2, h3, h4, h5, h6, span, figure, figcaption {
  cursor: default;
}
a, a:link, a:visited, button, .button, [role="button"], .menu-toggle, .nav-link, .lang-link, .product-card, .feature-card a, .action-card, .video-version-image, .lightbox-trigger, .ivp-lightbox__close {
  cursor: pointer !important;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="search"], input[type="url"], textarea {
  cursor: text !important;
}
select, label, input[type="checkbox"], input[type="radio"], input[type="submit"], .contact-form button {
  cursor: pointer !important;
}
img, a img, figure img, svg, .ivpay-inline-image, .split-media img, .product-card img, .feature-card img, .video-version-image img, .lightbox-trigger img {
  -webkit-user-drag: none !important;
  -khtml-user-drag: none !important;
  -moz-user-drag: none !important;
  -o-user-drag: none !important;
  user-drag: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
}

/* v44 operations refreshment section and contact-form cursor fix */
.refreshment-offer-section .split-media img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .14);
}
.refreshment-offer-section .split-copy p {
  max-width: 70ch;
}

.contact-form-wrap,
.contact-form,
.contact-form *,
.contact-grid,
.contact-grid * {
  -webkit-user-drag: auto !important;
  user-drag: auto !important;
}
.contact-form-wrap,
.contact-form,
.contact-form label,
.contact-form .form-grid,
.contact-form .form-grid span,
.contact-copy,
.contact-copy p,
.contact-copy li,
.contact-copy strong {
  cursor: default !important;
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="number"],
.contact-form input[type="search"],
.contact-form input[type="url"],
.contact-form textarea {
  cursor: text !important;
  user-select: text !important;
  -webkit-user-select: text !important;
}
.contact-form select,
.contact-form button,
.contact-form .button,
.contact-copy a {
  cursor: pointer !important;
}


/* v45 final cursor/form refinement: remove misleading no-drop behaviour and keep normal browser cursors */
html, body, main, section, div, article, aside, header, footer, nav, p, ul, ol, li, h1, h2, h3, h4, h5, h6, span, figure, figcaption {
  cursor: auto !important;
}
a, a:link, a:visited, button, .button, [role="button"], .menu-toggle, .nav-link, .lang-link, .product-card, .feature-card a, .action-card, .video-version-image, .lightbox-trigger, .ivp-lightbox__close {
  cursor: pointer !important;
}
.contact-form, .contact-form *, .contact-form-wrap, .contact-form-wrap *, .contact-grid, .contact-grid * {
  -webkit-user-drag: auto !important;
  user-drag: auto !important;
}
.contact-form label, .contact-form span, .contact-copy, .contact-copy p, .contact-copy li, .contact-copy strong {
  cursor: auto !important;
}
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form input[type="number"], .contact-form input[type="search"], .contact-form input[type="url"], .contact-form textarea {
  cursor: text !important;
  user-select: text !important;
  -webkit-user-select: text !important;
}
.contact-form select, .contact-form button, .contact-form .button, .contact-copy a {
  cursor: pointer !important;
}
.form-status {
  border-radius: 18px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 800;
}
.form-status.is-success {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  color: #166534;
}
.form-status.is-error {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
}
.form-help {
  margin-top: 14px;
  color: #64748b;
  font-size: .95rem;
}
.form-help a { font-weight: 800; }

/* v47 multilingual brochure downloads */
.download-card .button { margin-top: auto; }
.lang-link.is-active { font-weight: 800; }

/* v57: clickable product images on Termékek page */
.product-image-link {
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 16px;
}
.product-image-link img {
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-image-link:hover img,
.product-image-link:focus-visible img {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15,23,42,.12);
}
.product-image-link:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .35);
  outline-offset: 4px;
}

/* v58: Video Display version images link to detail pages instead of opening the lightbox */
.video-version-image {
  cursor: pointer;
}
.video-version-image:focus-visible {
  outline: 3px solid rgba(37, 99, 235, .35);
  outline-offset: 4px;
}


/* v61 IVPay QR Display gallery, voice instructions and wallet payment update */
/* v62 Hero wallet logo placement update */
/* v63 Apple Pay logo cleanup to match mockup */
.media-grid.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.display-qr-gallery figure img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f8fbff;
  padding: 12px;
}
.display-qr-gallery figure:first-child img { aspect-ratio: 16 / 10; }
@media (max-width: 1180px) { .media-grid.four-up { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 782px) { .media-grid.four-up { grid-template-columns: 1fr; } }


/* v62 Hero wallet logo placement update */
.hero-wallet-logos {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin: 20px auto 0;
  max-width: 510px;
}
.wallet-logo-card {
  flex: 1 1 0;
  min-width: 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid #111827;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(8, 17, 31, 0.06);
}
.wallet-logo-card img {
  width: 100%;
  max-width: 175px;
  max-height: 48px;
  object-fit: contain;
}
.wallet-logo-card img.wallet-logo-apple {
  max-width: 158px;
  max-height: 54px;
}

@media (max-width: 560px) {
  .hero-wallet-logos { gap: 12px; max-width: 100%; }
  .wallet-logo-card { min-height: 68px; padding: 12px 16px; }
  .wallet-logo-card img { max-width: 145px; max-height: 42px; }
}

/* v64 IVP Coffee Point subpage and clickable operation gallery */
.coffee-point-highlights { margin-top: 24px; }
.coffee-point-highlights .info-card { padding: 18px; text-align: center; }
.coffee-point-highlights h3 { font-size: 1.55rem; margin-bottom: 6px; }
.coffee-point-highlights p { margin: 0; color: #475569; font-weight: 700; }
.coffee-point-table td:first-child { font-weight: 800; color: #0f172a; }
.gallery-link { display: block; color: inherit; text-decoration: none; border-radius: 18px; }
.gallery-link figure { height: 100%; transition: transform .18s ease, box-shadow .18s ease; }
.gallery-link:hover figure { transform: translateY(-3px); box-shadow: var(--shadow); }
.gallery-link:focus-visible { outline: 3px solid var(--brand); outline-offset: 4px; }

/* v65 Coffee Point real photo replacements */
.coffee-point-photo {
  width: 100%;
  height: auto;
}
/* v66 clickable Coffee Point image on operations page */
.image-link { display: block; color: inherit; text-decoration: none; border-radius: inherit; cursor: pointer; }
.image-link img { display: block; transition: transform .18s ease, box-shadow .18s ease; }
.image-link:hover img { transform: translateY(-3px); box-shadow: var(--shadow); }
.image-link:focus-visible { outline: 3px solid var(--brand); outline-offset: 4px; }
