:root {
  --bg: #080b10;
  --bg-2: #0c1118;
  --surface: #10161f;
  --surface-2: #151d28;
  --text: #f5f7fa;
  --muted: #9aa5b4;
  --soft: #657181;
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(255,255,255,.16);

  --gold: #d4a853;
  --gold-soft: #e1bd72;
  --light: #f5f2e9;
  --ink: #0b0f14;

  --max: 1240px;

  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 60% -10%, rgba(212,168,83,.08), transparent 27%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.site-shell {
  width: min(calc(100% - 32px), 1380px);
  margin-inline: auto;
}

/* ==========================================================
   HEADER
   ========================================================== */

.site-header {
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,11,16,.86);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}

.brand-symbol img {
  width: 100%;
  height: 100%;
}

.brand-fallback {
  display: none;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line-strong);
  font-weight: 900;
}

.brand-name {
  display: grid;
  line-height: 1;
}

.brand-name strong {
  font-size: 17px;
  letter-spacing: -.04em;
}

.brand-name small {
  margin-top: 4px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  color: var(--muted);
}

.desktop-nav a:hover {
  color: var(--text);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-contact {
  padding: 10px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  padding: 0;
}

.menu-button span {
  display: block;
  width: 15px;
  height: 1px;
  margin: 4px auto;
  background: var(--text);
}

.mobile-menu {
  position: fixed;
  z-index: 90;
  top: 76px;
  left: 16px;
  right: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12,17,24,.98);
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
}

.mobile-menu a {
  display: block;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

/* ==========================================================
   GLOBAL
   ========================================================== */

main {
  width: 100%;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .19em;
}

.eyebrow.dark {
  color: rgba(11,15,20,.5);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.secondary {
  border-color: var(--line-strong);
  color: var(--text);
}

/* ==========================================================
   HERO
   ========================================================== */

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: 70px;
  padding: 74px 22px 82px;
}

.hero-copy {
  max-width: 650px;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(48px, 5.15vw, 76px);
  line-height: .99;
  letter-spacing: -.055em;
  font-weight: 690;
}

.hero h1 span {
  color: var(--gold-soft);
}

.hero-lead {
  max-width: 610px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.63;
}

.hero-actions {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

/* Hero visual */

.hero-visual {
  min-width: 0;
}

.ecosystem {
  min-height: 520px;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 55% 40%, rgba(212,168,83,.10), transparent 32%),
    #0b1017;
  box-shadow: 0 40px 120px rgba(0,0,0,.36);
}

.ecosystem-top {
  height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--soft);
  font-size: 9px;
  letter-spacing: .16em;
}

.status-dot {
  color: var(--gold);
}

.ecosystem-core {
  align-self: center;
  justify-self: center;
  max-width: 330px;
  text-align: center;
  padding: 38px;
}

.core-mark {
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  position: relative;
}

.core-mark img {
  width: 110px;
}

.core-mark strong {
  position: absolute;
  z-index: -1;
  font-size: 48px;
}

.ecosystem-core p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
}

.ecosystem-grid article {
  min-height: 120px;
  padding: 17px;
  border-right: 1px solid var(--line);
}

.ecosystem-grid article:last-child {
  border-right: 0;
}

.ecosystem-grid small,
.ecosystem-grid strong,
.ecosystem-grid span {
  display: block;
}

.ecosystem-grid small {
  color: var(--soft);
  font-size: 8px;
}

.ecosystem-grid strong {
  margin-top: 28px;
  font-size: 10px;
  letter-spacing: .12em;
}

.ecosystem-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.ecosystem-foot {
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 8px;
  letter-spacing: .18em;
}

.ecosystem-foot i {
  width: 28px;
  height: 1px;
  background: var(--line-strong);
}

/* ==========================================================
   PATHS
   ========================================================== */

.explore {
  padding: 92px 22px 106px;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 70px;
  align-items: end;
}

.section-heading h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.section-heading > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 42px;
}

.path-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  transition:
    transform .22s ease,
    border-color .22s ease;
}

.path-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
}

.path-card.featured {
  background:
    radial-gradient(circle at 100% 0, rgba(212,168,83,.12), transparent 42%),
    var(--surface);
}

.card-top {
  display: flex;
  justify-content: space-between;
  color: var(--soft);
  font-size: 9px;
  letter-spacing: .15em;
}

.card-body h3 {
  margin: 0 0 11px;
  font-size: 27px;
  letter-spacing: -.04em;
}

.card-body p {
  margin: 0;
  max-width: 330px;
  color: var(--muted);
  line-height: 1.55;
}

.card-body strong {
  display: block;
  margin-top: 26px;
  color: var(--gold-soft);
  font-size: 12px;
}

/* ==========================================================
   FEATURED PRODUCT
   ========================================================== */

.featured-product {
  min-height: 670px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 65px;
  align-items: center;
  padding: 76px 58px;
  border-radius: 34px;
  background: var(--light);
  color: var(--ink);
}

.product-title span {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .12em;
}

.product-title h2 {
  margin: 0;
  font-size: clamp(54px, 6vw, 84px);
  line-height: .95;
  letter-spacing: -.055em;
}

.product-lead {
  max-width: 520px;
  margin: 28px 0 0;
  color: rgba(11,15,20,.67);
  font-size: 18px;
  line-height: 1.62;
}

.product-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.product-primary {
  background: var(--ink);
  color: white;
}

.product-link {
  font-size: 12px;
  font-weight: 750;
}

.app-card {
  border: 1px solid rgba(11,15,20,.14);
  border-radius: 23px;
  overflow: hidden;
  background: #0b0f14;
  color: #f5f7fa;
  box-shadow: 0 32px 80px rgba(11,15,20,.24);
}

.app-top {
  height: 45px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 9px;
}

.app-top > div {
  display: flex;
  gap: 5px;
}

.app-top > div span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}

.app-top small {
  justify-self: end;
  color: var(--gold-soft);
}

.app-content {
  min-height: 420px;
  display: grid;
  grid-template-columns: 105px 1fr;
}

.app-content aside {
  padding: 17px 10px;
  border-right: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #7f8a98;
  font-size: 8px;
}

.app-content aside b {
  color: white;
  margin: 0 8px 17px;
  font-size: 13px;
}

.app-content aside span {
  padding: 8px;
  border-radius: 7px;
}

.app-content aside span.active {
  color: white;
  background: rgba(255,255,255,.07);
}

.app-content > section {
  padding: 22px;
}

.app-content header {
  display: flex;
  justify-content: space-between;
}

.app-content header small {
  color: #7f8a98;
}

.app-content header h3 {
  margin: 5px 0 0;
  font-size: 28px;
}

.app-content header em {
  height: fit-content;
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(212,168,83,.08);
  font-size: 7px;
  font-style: normal;
}

.mini-kpis {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-top: 25px;
}

.mini-kpis article {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
}

.mini-kpis small {
  display: block;
  color: #7f8a98;
  font-size: 8px;
}

.mini-kpis strong {
  display: block;
  margin-top: 9px;
  font-size: 25px;
}

.mini-operation {
  margin-top: 12px;
  padding: 10px 15px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}

.mini-operation div {
  min-height: 58px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 9px;
}

.mini-operation div:last-child {
  border-bottom: 0;
}

.mini-operation strong {
  font-size: 10px;
}

.mini-operation small {
  color: #7f8a98;
}

/* ==========================================================
   METHOD
   ========================================================== */

.method {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
  padding: 108px 22px;
}

.method-intro h2 {
  margin: 0;
  max-width: 540px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.method-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}

.method-flow article {
  min-height: 205px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.method-flow article span {
  color: var(--gold);
  font-size: 9px;
}

.method-flow article strong {
  display: block;
  margin-top: 55px;
  font-size: 22px;
  letter-spacing: -.035em;
}

.method-flow article p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.method-flow > i {
  width: 25px;
  height: 1px;
  background: var(--line-strong);
}

/* ==========================================================
   CONTACT
   ========================================================== */

.contact {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(212,168,83,.10), transparent 35%),
    var(--surface);
}

.contact h2 {
  margin: 0;
  max-width: 730px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.03;
  letter-spacing: -.05em;
}

.contact-side {
  max-width: 470px;
  justify-self: end;
}

.contact-side p {
  margin: 0 0 23px;
  color: var(--muted);
  line-height: 1.62;
}

/* ==========================================================
   FOOTER
   ========================================================== */

footer {
  min-height: 125px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 50px;
  align-items: center;
  padding: 30px 22px;
  margin-top: 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 5px;
}

.footer-brand strong {
  color: var(--text);
  font-size: 12px;
  letter-spacing: .1em;
}

.footer-brand span,
footer small {
  font-size: 10px;
}

.footer-links {
  display: flex;
  gap: 22px;
  font-size: 11px;
}

/* ==========================================================
   ACCESSIBILITY
   ========================================================== */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1000px) {

  .hero,
  .featured-product,
  .method,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    gap: 48px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .ecosystem {
    max-width: 900px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .path-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-product {
    gap: 50px;
  }

  .method {
    gap: 40px;
  }

  .contact-side {
    justify-self: start;
  }

}

@media (max-width: 760px) {

  .site-shell {
    width: min(calc(100% - 20px), 1380px);
  }

  .site-header {
    height: 66px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .header-actions {
    grid-column: 2;
  }

  .menu-button {
    display: block;
  }

  .hero {
    padding: 55px 10px 66px;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(43px, 12vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .ecosystem {
    min-height: 430px;
  }

  .ecosystem-core {
    padding: 28px 20px;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-grid article {
    min-height: 85px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ecosystem-grid article strong {
    margin-top: 15px;
  }

  .ecosystem-foot {
    display: none;
  }

  .explore {
    padding: 70px 10px;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .path-grid {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 250px;
  }

  .featured-product {
    min-height: 0;
    padding: 52px 20px;
    border-radius: 24px;
  }

  .product-title h2 {
    font-size: 54px;
  }

  .product-lead {
    font-size: 16px;
  }

  .product-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-content {
    grid-template-columns: 1fr;
  }

  .app-content aside {
    display: none;
  }

  .app-content > section {
    padding: 17px;
  }

  .mini-kpis {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .mini-kpis article {
    padding: 10px;
  }

  .mini-kpis strong {
    font-size: 20px;
  }

  .method {
    padding: 74px 10px;
  }

  .method-flow {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .method-flow > i {
    width: 1px;
    height: 14px;
    margin-left: 28px;
  }

  .method-flow article {
    min-height: 170px;
  }

  .method-flow article strong {
    margin-top: 38px;
  }

  .contact {
    padding: 36px 22px;
    gap: 35px;
    border-radius: 24px;
  }

  .contact h2 {
    font-size: 39px;
  }

  .contact .button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-inline: 10px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }

}
/* ==========================================================
   KVA P15-WEB-R4C
   MULTI-PAGE CORPORATE EXPERIENCE
   ========================================================== */

.nav-active {
  color: var(--text) !important;
}

.page-hero {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 85px;
  align-items: end;
  padding: 105px 22px 78px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(54px, 6vw, 86px);
  line-height: .96;
  letter-spacing: -.06em;
}

.page-hero h1 span {
  color: var(--gold-soft);
}

.page-hero-side {
  max-width: 470px;
  padding-bottom: 8px;
}

.page-hero-side > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.page-facts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.page-facts span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 9px;
}

/* Company */

.editorial-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, .8fr);
  gap: 10px;
  padding: 90px 22px;
}

.editorial-large,
.editorial-card {
  min-height: 330px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
}

.editorial-large {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  background:
    radial-gradient(circle at 100% 0, rgba(212,168,83,.12), transparent 38%),
    var(--surface);
}

.editorial-large h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(38px,4vw,56px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.editorial-large > p:last-child {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.editorial-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.editorial-card > span {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 9px;
}

.editorial-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
}

.editorial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
}

.principles {
  padding: 90px 22px;
  border-top: 1px solid var(--line);
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 40px;
}

.principle-grid article {
  padding: 25px;
  border-top: 1px solid var(--line-strong);
}

.principle-grid strong {
  display: block;
  margin-bottom: 16px;
  font-size: 18px;
}

.principle-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.compact-contact {
  margin-top: 34px;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
  padding: 84px 22px;
}

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: var(--surface);
}

.service-featured {
  grid-row: span 2;
  min-height: 670px;
  background:
    radial-gradient(circle at 100% 0, rgba(212,168,83,.13), transparent 40%),
    var(--surface);
}

.service-card > span {
  color: var(--soft);
  font-size: 9px;
}

.service-featured h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(42px,4.5vw,66px);
  line-height: 1;
  letter-spacing: -.05em;
}

.service-card h3 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -.04em;
}

.service-card div > p:last-child {
  max-width: 550px;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-band {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: center;
  padding: 68px 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-band h2 {
  margin: 0;
  font-size: 40px;
  letter-spacing: -.04em;
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  font-size: 11px;
}

.process-steps i {
  flex: 1;
  height: 1px;
  background: var(--line-strong);
}

/* Hospitality */

.hospitality-hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: .76fr 1.24fr;
  gap: 55px;
  align-items: center;
  padding: 70px 22px 78px;
}

.hospitality-hero-copy h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(52px,5.5vw,78px);
  line-height: .98;
  letter-spacing: -.055em;
}

.hospitality-hero-copy h1 span {
  color: var(--gold-soft);
}

.hospitality-hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hospitality-dashboard {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 25px;
  background: #0b1016;
  box-shadow: 0 40px 110px rgba(0,0,0,.35);
}

.dashboard-header {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid var(--line);
}

.dashboard-header strong,
.dashboard-header small {
  display: block;
}

.dashboard-header strong {
  font-size: 10px;
}

.dashboard-header small {
  margin-top: 3px;
  color: var(--soft);
  font-size: 7px;
}

.dashboard-header > span {
  color: var(--gold);
  font-size: 8px;
}

.dashboard-body {
  min-height: 505px;
  display: grid;
  grid-template-columns: 115px 1fr;
}

.dashboard-body > aside {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 11px;
  border-right: 1px solid var(--line);
  color: var(--soft);
  font-size: 8px;
}

.dashboard-body > aside b {
  margin: 0 8px 17px;
  color: white;
  font-size: 13px;
}

.dashboard-body > aside span {
  padding: 8px;
  border-radius: 7px;
}

.dashboard-body > aside span.active {
  color: white;
  background: rgba(255,255,255,.06);
}

.dashboard-body > section {
  padding: 24px;
}

.dashboard-body > section > header {
  display: flex;
  justify-content: space-between;
}

.dashboard-body header small {
  color: var(--soft);
}

.dashboard-body header h3 {
  margin: 4px 0 0;
  font-size: 27px;
}

.dashboard-body header em {
  height: fit-content;
  padding: 5px 7px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(212,168,83,.08);
  font-size: 7px;
  font-style: normal;
}

.hospitality-kpis {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
  margin-top: 24px;
}

.hospitality-kpis article {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.hospitality-kpis small,
.hospitality-kpis span {
  display: block;
  color: var(--soft);
  font-size: 8px;
}

.hospitality-kpis strong {
  display: block;
  margin: 9px 0 3px;
  font-size: 25px;
}

.hospitality-ops {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 9px;
  margin-top: 10px;
}

.hospitality-room-list,
.hospitality-priorities {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.hospitality-room-list div {
  min-height: 53px;
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
}

.hospitality-room-list div:last-child {
  border-bottom: 0;
}

.hospitality-room-list small {
  color: var(--soft);
}

.hospitality-priorities small,
.hospitality-priorities strong,
.hospitality-priorities span {
  display: block;
}

.hospitality-priorities small {
  margin-bottom: 16px;
  color: var(--soft);
  font-size: 7px;
}

.hospitality-priorities strong {
  margin-top: 14px;
  font-size: 9px;
}

.hospitality-priorities span {
  margin-top: 3px;
  color: var(--soft);
  font-size: 8px;
}

.hospitality-story {
  padding: 90px 22px;
  border-top: 1px solid var(--line);
}

.hospitality-capabilities {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 9px;
  margin-top: 42px;
}

.hospitality-capabilities article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.hospitality-capabilities span {
  color: var(--gold);
  font-size: 8px;
}

.hospitality-capabilities h3 {
  margin: 65px 0 7px;
  font-size: 21px;
}

.hospitality-capabilities p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hotel-participation-banner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  padding: 66px 56px;
  border-radius: 30px;
  background: var(--light);
  color: var(--ink);
}

.hotel-participation-banner h2 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(38px,4vw,56px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.hotel-participation-banner > div:last-child {
  align-self: end;
}

.hotel-participation-banner > div:last-child p {
  margin: 0 0 23px;
  color: rgba(11,15,20,.67);
  line-height: 1.65;
}

/* Participation / QR */

.participation-body {
  background:
    radial-gradient(circle at 50% 0, rgba(212,168,83,.10), transparent 28%),
    #090d12;
}

.participation-shell {
  width: min(calc(100% - 28px), 1120px);
  margin: auto;
}

.participation-header {
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.participation-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.participation-brand > span:last-child {
  display: grid;
}

.participation-brand strong {
  font-size: 13px;
}

.participation-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: .17em;
}

.participation-state {
  color: var(--gold);
  font-size: 8px;
  letter-spacing: .14em;
}

.participation-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
}

.participation-hero h1 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(52px,6vw,80px);
  line-height: .96;
  letter-spacing: -.06em;
}

.participation-hero h1 span {
  color: var(--gold-soft);
}

.participation-intro {
  max-width: 420px;
}

.participation-intro p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.participation-status,
.participation-options {
  padding: 78px 0;
  border-bottom: 1px solid var(--line);
}

.status-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.status-heading h2 {
  margin: 0;
  font-size: 42px;
  letter-spacing: -.04em;
}

.status-pill {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(212,168,83,.08);
  font-size: 8px;
  letter-spacing: .12em;
}

.status-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  margin-top: 42px;
}

.status-track article {
  min-height: 145px;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 17px;
}

.status-track article > span,
.status-track article strong,
.status-track article small {
  display: block;
}

.status-track article > span {
  color: var(--soft);
  font-size: 8px;
}

.status-track article strong {
  margin-top: 42px;
  font-size: 14px;
}

.status-track article small {
  margin-top: 5px;
  color: var(--soft);
}

.status-track article.done,
.status-track article.active {
  border-color: rgba(212,168,83,.25);
}

.status-track article.active {
  background: rgba(212,168,83,.05);
}

.status-track > i {
  width: 20px;
  height: 1px;
  background: var(--line-strong);
}

.participation-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-top: 40px;
}

.participation-grid article {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.participation-grid article > span {
  color: var(--gold);
  font-size: 8px;
}

.participation-grid h3 {
  margin: 70px 0 9px;
  font-size: 24px;
}

.participation-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.participation-action {
  margin-top: auto;
  padding: 13px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: none;
  color: var(--gold-soft);
  text-align: left;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
}

.participation-product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
}

.participation-product h2 {
  margin: 0;
  font-size: 36px;
  letter-spacing: -.04em;
}

.participation-close {
  max-width: 600px;
  padding: 74px 0 90px;
}

.participation-close strong {
  font-size: 14px;
  letter-spacing: .08em;
}

.participation-close p {
  margin: 18px 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.participation-close small {
  color: var(--soft);
}

/* R4C responsive */

@media (max-width: 1000px) {

  .page-hero,
  .participation-hero,
  .process-band,
  .hotel-participation-banner {
    grid-template-columns: 1fr;
  }

  .editorial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-large {
    grid-column: 1 / -1;
  }

  .service-featured {
    grid-row: auto;
    min-height: 430px;
  }

  .hospitality-hero {
    grid-template-columns: 1fr;
  }

  .hospitality-dashboard {
    max-width: 900px;
  }

  .status-track {
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
  }

  .status-track > i {
    display: none;
  }

}

@media (max-width: 760px) {

  .page-hero {
    min-height: 0;
    gap: 35px;
    padding: 65px 10px 55px;
  }

  .page-hero h1 {
    font-size: 49px;
  }

  .page-hero-side > p {
    font-size: 16px;
  }

  .editorial-grid,
  .services-grid,
  .principle-grid,
  .hospitality-capabilities,
  .participation-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid,
  .services-grid,
  .principles,
  .hospitality-story {
    padding-left: 10px;
    padding-right: 10px;
  }

  .editorial-large,
  .editorial-card {
    min-height: 250px;
  }

  .process-band {
    padding: 55px 10px;
  }

  .process-steps {
    flex-wrap: wrap;
  }

  .process-steps i {
    width: 18px;
    flex: none;
  }

  .hospitality-hero {
    min-height: 0;
    padding: 60px 10px;
  }

  .hospitality-hero-copy h1 {
    font-size: 50px;
  }

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

  .dashboard-body > aside {
    display: none;
  }

  .hospitality-ops {
    grid-template-columns: 1fr;
  }

  .hotel-participation-banner {
    padding: 42px 22px;
    gap: 35px;
    border-radius: 22px;
  }

  .participation-header {
    min-height: 65px;
  }

  .participation-state {
    font-size: 6px;
  }

  .participation-hero {
    min-height: 0;
    gap: 30px;
    padding: 55px 0;
  }

  .participation-hero h1 {
    font-size: 48px;
  }

  .participation-status,
  .participation-options {
    padding: 58px 0;
  }

  .status-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .status-track {
    grid-template-columns: 1fr;
  }

  .participation-product {
    align-items: flex-start;
    flex-direction: column;
  }

}

/* ==========================================================
   KVA P15-WEB-R4D — FINAL EXPERIENCE POLISH
   ========================================================== */

/* ---------- Global rhythm ---------- */

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-shell {
  position: relative;
}

.site-header {
  height: 72px;
}

.desktop-nav {
  gap: 30px;
  font-size: 12px;
}

.desktop-nav a,
.header-contact,
.footer-links a {
  transition:
    color .18s ease,
    border-color .18s ease,
    background .18s ease,
    opacity .18s ease;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: right .22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.nav-active::after {
  right: 0;
}

.header-contact:hover {
  border-color: rgba(212,168,83,.5);
  background: rgba(212,168,83,.06);
}

.eyebrow {
  margin-bottom: 13px;
}

.button {
  min-height: 46px;
}

.button.primary {
  box-shadow: 0 8px 30px rgba(212,168,83,.10);
}

.button.primary:hover {
  box-shadow: 0 12px 36px rgba(212,168,83,.18);
}

/* ---------- Corporate home ---------- */

.hero {
  min-height: min(780px, calc(100vh - 72px));
  grid-template-columns: .93fr 1.07fr;
  gap: clamp(38px, 5vw, 68px);
  padding: 62px 22px 70px;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(48px, 4.75vw, 70px);
  line-height: 1;
}

.hero-lead {
  max-width: 570px;
  margin-top: 23px;
  font-size: 17px;
}

.hero-actions {
  margin-top: 27px;
}

.ecosystem {
  min-height: 475px;
}

.ecosystem-core {
  padding-top: 26px;
  padding-bottom: 26px;
}

.core-mark {
  width: 108px;
  height: 108px;
  margin-bottom: 18px;
}

.core-mark img {
  width: 96px;
}

.explore {
  padding-top: 76px;
  padding-bottom: 86px;
}

.section-heading h2 {
  font-size: clamp(38px, 3.7vw, 54px);
}

.path-grid {
  margin-top: 34px;
}

.path-card {
  min-height: 280px;
}

.path-card:hover {
  transform: translateY(-5px);
  background-color: #121a24;
}

.featured-product {
  min-height: 610px;
  gap: 52px;
  padding: 66px 52px;
}

.product-title h2 {
  font-size: clamp(50px, 5.5vw, 76px);
}

.product-lead {
  margin-top: 23px;
  font-size: 17px;
}

.app-content {
  min-height: 385px;
}

.method {
  gap: 65px;
  padding-top: 86px;
  padding-bottom: 88px;
}

.method-intro h2 {
  font-size: clamp(36px, 3.7vw, 52px);
}

.method-flow article {
  min-height: 185px;
}

.method-flow article strong {
  margin-top: 47px;
}

.contact {
  gap: 64px;
  padding: 50px;
}

.contact h2 {
  font-size: clamp(36px, 3.7vw, 52px);
}

/* ---------- Interior page hero ---------- */

.page-hero {
  min-height: 500px;
  gap: 70px;
  padding: 84px 22px 65px;
}

.page-hero h1 {
  font-size: clamp(50px, 5.25vw, 76px);
}

.page-hero-side > p {
  font-size: 17px;
}

.editorial-grid {
  padding-top: 72px;
  padding-bottom: 72px;
}

.editorial-large,
.editorial-card {
  min-height: 300px;
}

.principles {
  padding-top: 72px;
  padding-bottom: 76px;
}

.services-grid {
  padding-top: 70px;
  padding-bottom: 72px;
}

.service-card {
  min-height: 300px;
}

.service-featured {
  min-height: 610px;
}

.service-featured h2 {
  font-size: clamp(40px, 4vw, 58px);
}

.process-band {
  padding-top: 57px;
  padding-bottom: 57px;
}

/* ---------- Hospitality ---------- */

.hospitality-hero {
  min-height: min(760px, calc(100vh - 72px));
  grid-template-columns: .8fr 1.2fr;
  gap: 45px;
  padding-top: 58px;
  padding-bottom: 66px;
}

.hospitality-hero-copy h1 {
  font-size: clamp(48px, 5vw, 70px);
}

.hospitality-hero-copy > p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 16px;
}

.hospitality-dashboard {
  box-shadow:
    0 30px 90px rgba(0,0,0,.33),
    0 0 0 1px rgba(255,255,255,.015);
}

.dashboard-body {
  min-height: 455px;
}

.dashboard-body > section {
  padding: 21px;
}

.hospitality-kpis {
  margin-top: 19px;
}

.hospitality-ops {
  margin-top: 8px;
}

.hospitality-story {
  padding-top: 74px;
  padding-bottom: 78px;
}

.hospitality-capabilities {
  margin-top: 34px;
}

.hospitality-capabilities article {
  min-height: 195px;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.hospitality-capabilities article:hover {
  transform: translateY(-3px);
  border-color: rgba(212,168,83,.24);
  background: rgba(255,255,255,.018);
}

.hospitality-capabilities h3 {
  margin-top: 52px;
}

.hotel-participation-banner {
  gap: 65px;
  padding: 55px 50px;
}

/* ---------- QR / participation ---------- */

.participation-shell {
  width: min(calc(100% - 28px), 1080px);
}

.participation-header {
  min-height: 70px;
}

.participation-hero {
  min-height: 470px;
  gap: 65px;
  padding: 58px 0;
}

.participation-hero h1 {
  font-size: clamp(49px, 5.5vw, 72px);
}

.participation-intro p {
  font-size: 16px;
}

.participation-status,
.participation-options {
  padding-top: 64px;
  padding-bottom: 66px;
}

.status-track {
  margin-top: 34px;
}

.status-track article {
  min-height: 132px;
}

.status-track article strong {
  margin-top: 34px;
}

.participation-grid {
  margin-top: 34px;
}

.participation-grid article {
  min-height: 285px;
  transition:
    transform .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.participation-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,83,.25);
  background: #121a24;
}

.participation-grid h3 {
  margin-top: 58px;
}

.participation-action {
  transition:
    color .18s ease,
    padding-left .18s ease;
}

.participation-action:hover {
  color: #f0cf8d;
  padding-left: 4px;
}

.participation-product {
  padding-top: 52px;
  padding-bottom: 52px;
}

.participation-close {
  padding-top: 62px;
  padding-bottom: 74px;
}

/* ---------- Better menu ---------- */

.mobile-menu {
  top: 64px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu:not([hidden]) {
  display: block;
  animation: kvaMenuIn .18s ease-out;
}

@keyframes kvaMenuIn {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Large desktop ---------- */

@media (min-width: 1450px) {

  .site-shell {
    width: min(calc(100% - 64px), 1420px);
  }

  .hero,
  .hospitality-hero {
    padding-left: 30px;
    padding-right: 30px;
  }

}

/* ---------- Tablet ---------- */

@media (max-width: 1000px) {

  .hero {
    padding-top: 55px;
  }

  .featured-product {
    padding: 55px 40px;
  }

  .page-hero {
    min-height: 0;
    padding-top: 70px;
  }

  .hospitality-hero {
    min-height: 0;
  }

}

/* ---------- Mobile ---------- */

@media (max-width: 760px) {

  .site-header {
    height: 64px;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .hero {
    min-height: 0;
    padding: 47px 10px 58px;
    gap: 31px;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 53px);
    line-height: 1.01;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 15px;
  }

  .ecosystem {
    min-height: 390px;
  }

  .ecosystem-core {
    padding: 22px 16px;
  }

  .core-mark {
    width: 86px;
    height: 86px;
  }

  .core-mark img {
    width: 78px;
  }

  .explore {
    padding-top: 57px;
    padding-bottom: 60px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .path-grid {
    margin-top: 27px;
  }

  .path-card {
    min-height: 225px;
  }

  .featured-product {
    padding: 42px 18px;
  }

  .product-title h2 {
    font-size: 49px;
  }

  .method {
    padding-top: 59px;
    padding-bottom: 61px;
  }

  .method-intro h2 {
    font-size: 38px;
  }

  .method-flow article {
    min-height: 152px;
  }

  .contact {
    padding: 31px 19px;
  }

  .contact h2 {
    font-size: 36px;
  }

  .page-hero {
    gap: 27px;
    padding: 53px 10px 48px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .editorial-grid,
  .services-grid {
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .editorial-large,
  .editorial-card {
    min-height: 220px;
  }

  .service-featured {
    min-height: 360px;
  }

  .hospitality-hero {
    padding-top: 50px;
    padding-bottom: 52px;
  }

  .hospitality-hero-copy h1 {
    font-size: 44px;
  }

  .hospitality-story {
    padding-top: 56px;
    padding-bottom: 59px;
  }

  .hospitality-capabilities article {
    min-height: 170px;
  }

  .hotel-participation-banner {
    padding: 35px 19px;
  }

  .participation-shell {
    width: min(calc(100% - 20px), 1080px);
  }

  .participation-hero {
    padding: 45px 0;
  }

  .participation-hero h1 {
    font-size: 43px;
  }

  .participation-intro p {
    font-size: 15px;
  }

  .participation-status,
  .participation-options {
    padding-top: 50px;
    padding-bottom: 52px;
  }

  .status-heading h2 {
    font-size: 35px;
  }

  .status-track article {
    min-height: 118px;
  }

  .status-track article strong {
    margin-top: 28px;
  }

  .participation-grid article {
    min-height: 245px;
  }

  .participation-grid h3 {
    margin-top: 44px;
  }

  .participation-product {
    padding-top: 43px;
    padding-bottom: 43px;
  }

  .participation-close {
    padding-top: 50px;
    padding-bottom: 58px;
  }

}

/* ---------- Very small mobile ---------- */

@media (max-width: 420px) {

  .hero h1,
  .hospitality-hero-copy h1,
  .page-hero h1,
  .participation-hero h1 {
    font-size: 39px;
  }

  .product-title h2 {
    font-size: 44px;
  }

  .mini-kpis,
  .hospitality-kpis {
    gap: 5px;
  }

  .mini-kpis article,
  .hospitality-kpis article {
    padding: 8px;
  }

}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {

  .mobile-menu:not([hidden]) {
    animation: none;
  }

}
/* KVA P15-WEB-R7D-R1 — CONTACT EXPERIENCE UI */

html.kva-contact-open,
html.kva-contact-open body {
  overflow: hidden;
}

.kva-contact-overlay[hidden] {
  display: none;
}

.kva-contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(3, 6, 10, .82);
  backdrop-filter: blur(18px);
}

.kva-contact-dialog {
  position: relative;
  width: min(100%, 1080px);
  max-height: min(900px, calc(100vh - 56px));
  overflow: auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(36px, 6vw, 78px);
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 0 0, rgba(212,168,83,.12), transparent 34%),
    #0b1016;
  box-shadow: 0 35px 100px rgba(0,0,0,.48);
}

.kva-contact-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: var(--text);
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.kva-contact-close:hover,
.kva-contact-close:focus-visible {
  border-color: var(--line-strong);
  background: rgba(212,168,83,.08);
}

.kva-contact-intro {
  align-self: start;
}

.kva-contact-intro h2 {
  margin: 12px 0 18px;
  max-width: 470px;
  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.kva-contact-description {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.kva-contact-trust {
  display: grid;
  gap: 9px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .04em;
}

.kva-contact-trust span::before {
  content: "✓";
  margin-right: 9px;
  color: var(--gold);
}

.kva-contact-form {
  display: grid;
  gap: 17px;
}

.kva-contact-form label {
  display: grid;
  gap: 8px;
}

.kva-contact-form label > span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.kva-contact-form input,
.kva-contact-form select,
.kva-contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  background: rgba(255,255,255,.025);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  transition:
    border-color .18s ease,
    background .18s ease,
    box-shadow .18s ease;
}

.kva-contact-form textarea {
  min-height: 142px;
  resize: vertical;
  line-height: 1.55;
}

.kva-contact-form select {
  appearance: auto;
}

.kva-contact-form input:focus,
.kva-contact-form select:focus,
.kva-contact-form textarea:focus {
  border-color: rgba(212,168,83,.72);
  background: rgba(255,255,255,.04);
  box-shadow: 0 0 0 3px rgba(212,168,83,.08);
}

.kva-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.kva-contact-hospitality-fields {
  display: grid;
  gap: 17px;
}

.kva-contact-hospitality-fields[hidden] {
  display: none;
}

.kva-contact-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.kva-contact-form-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding-top: 5px;
}

.kva-contact-disclosure {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.kva-contact-submit {
  white-space: nowrap;
  cursor: pointer;
}

.kva-contact-submit:disabled {
  cursor: wait;
  opacity: .64;
}

.kva-contact-status {
  min-height: 22px;
  padding-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.kva-contact-status[data-state="success"] {
  color: #b7d9b7;
}

.kva-contact-status[data-state="error"],
.kva-contact-status[data-state="unavailable"] {
  color: #e0bd80;
}

.kva-contact-email-fallback {
  width: fit-content;
  color: var(--gold-soft);
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.kva-contact-email-fallback[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .kva-contact-dialog {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .kva-contact-intro h2 {
    max-width: 680px;
  }

  .kva-contact-trust {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .kva-contact-overlay {
    align-items: end;
    padding: 10px;
  }

  .kva-contact-dialog {
    max-height: calc(100vh - 20px);
    gap: 25px;
    padding: 38px 20px 24px;
    border-radius: 24px;
  }

  .kva-contact-intro h2 {
    font-size: 38px;
  }

  .kva-contact-trust,
  .kva-contact-row,
  .kva-contact-form-footer {
    grid-template-columns: 1fr;
  }

  .kva-contact-trust {
    gap: 7px;
    margin-top: 22px;
  }

  .kva-contact-form {
    gap: 14px;
  }

  .kva-contact-submit {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .kva-contact-overlay {
    padding: 0;
  }

  .kva-contact-dialog {
    max-height: 100vh;
    min-height: 100vh;
    border: 0;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kva-contact-form input,
  .kva-contact-form select,
  .kva-contact-form textarea {
    transition: none;
  }
}
