/* Live voice agent demo — styles
   Palette: "Night call" — deep blue-slate + answer-button green */
:root {
  --bg0: #0c0c0c;
  --bg1: #141414;
  --card: #1a1a1a;
  --card-2: #222220;
  --line: rgba(245, 240, 232, 0.1);
  --line-strong: rgba(245, 240, 232, 0.18);
  --ink: #f5f0e8;
  --mut: #a89e8e;
  --faint: #6e6557;
  --acc: #e8692a;
  --acc-soft: #f08b57;
  --acc-dim: rgba(232, 105, 42, 0.14);
  --acc-ink: #2a0e03;
  --red: #f08a7b;
  --radius: 18px;
  --nav-h: 68px;
  --display: "Archivo", sans-serif;
  --body: "Inter", sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
body {
  font-family: var(--body);
  background: var(--bg0);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
::selection {
  background: var(--acc);
  color: var(--acc-ink);
}
a {
  color: inherit;
}
button {
  font-family: var(--body);
}

/* Reveal on scroll */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.rv.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Nav ---------- */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 48px);
  background: rgba(18, 18, 18, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--acc), #1e9d6f);
  display: grid;
  place-items: center;
}
.brand-mark svg {
  display: block;
}
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.01em;
}
.brand-name span {
  color: var(--acc);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--mut);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 99px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(228, 237, 246, 0.06);
}
.nav-links a.here {
  color: var(--ink);
  background: rgba(228, 237, 246, 0.08);
}
.nav-cta {
  margin-left: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--acc-ink);
  background: var(--acc);
  padding: 9px 18px;
  border-radius: 99px;
  transition: background 0.2s;
}
.nav-cta:hover {
  background: var(--acc-soft);
}
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(18, 18, 18, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  flex-direction: column;
  padding: 12px 20px 20px;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child {
  border-bottom: none;
  color: var(--acc);
  font-weight: 600;
}
.mobile-menu.open {
  display: flex;
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
}

/* ---------- Layout ---------- */
section {
  padding: clamp(72px, 11vh, 120px) clamp(20px, 5vw, 48px);
  position: relative;
}
.wrap {
  max-width: 1080px;
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--acc);
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.12;
  letter-spacing: -0.015em;
}
h2 {
  font-size: clamp(28px, 4.2vw, 42px);
  font-weight: 700;
  margin-bottom: 14px;
}
.lede {
  color: var(--mut);
  font-size: clamp(15px, 1.6vw, 17.5px);
  max-width: 580px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  padding: 13px 24px;
  border-radius: 99px;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn:active {
  transform: scale(0.98);
}
.btn-solid {
  background: var(--acc);
  color: var(--acc-ink);
}
.btn-solid:hover {
  background: var(--acc-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--acc);
  color: var(--acc-soft);
}

/* ---------- Hero (index) ---------- */
#home {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 40px);
  background: radial-gradient(
      1100px 520px at 80% -10%,
      rgba(67, 217, 163, 0.09),
      transparent 60%
    ),
    radial-gradient(
      800px 500px at -10% 110%,
      rgba(67, 128, 217, 0.06),
      transparent 60%
    ),
    var(--bg0);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
.hero-copy h1 {
  font-size: clamp(38px, 5.4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.hero-copy h1 em {
  font-style: normal;
  color: var(--acc);
}
.hero-copy p {
  color: var(--mut);
  font-size: clamp(16px, 1.7vw, 18px);
  max-width: 500px;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 22px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta div {
  font-size: 13px;
  color: var(--faint);
}
.hero-meta strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.call-card {
  background: linear-gradient(170deg, var(--card-2), var(--card));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.call-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.call-id-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--mut);
  font-weight: 500;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 0 rgba(67, 217, 163, 0.5);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(67, 217, 163, 0.45);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(67, 217, 163, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(67, 217, 163, 0);
  }
}
.call-timer {
  font-size: 13px;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}
.hero-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 42px;
  margin-bottom: 20px;
}
.hero-wave i {
  flex: 1;
  background: var(--acc);
  border-radius: 3px;
  min-height: 4px;
  height: 30%;
  opacity: 0.85;
  animation: wob 1.3s ease-in-out infinite;
}
@keyframes wob {
  0%,
  100% {
    height: 14%;
  }
  50% {
    height: var(--h, 70%);
  }
}
.hero-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 208px;
}
.hl {
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.hl.show {
  opacity: 1;
  transform: none;
}
.hl .who {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 6px;
  height: fit-content;
  margin-top: 2px;
}
.hl.agent .who {
  background: var(--acc-dim);
  color: var(--acc);
}
.hl.caller .who {
  background: rgba(228, 237, 246, 0.08);
  color: var(--mut);
}
.hl p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
}
.hl.caller p {
  color: var(--mut);
}
.call-card-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--faint);
}
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .call-card {
    order: 2;
  }
}

/* ---------- How it works ---------- */
#how {
  background: var(--bg1);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.step .n {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--acc);
  margin-bottom: 14px;
  display: block;
  letter-spacing: 0.06em;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--mut);
}
@media (max-width: 920px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.crm-card {
  margin-top: 18px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  background: linear-gradient(120deg, var(--card-2), var(--card));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 28px;
}
.crm-card .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--acc-dim);
  display: grid;
  place-items: center;
  color: var(--acc);
}
.crm-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
}
.crm-card p {
  font-size: 14.5px;
  color: var(--mut);
  max-width: 680px;
}
@media (max-width: 560px) {
  .crm-card {
    grid-template-columns: 1fr;
  }
}

/* ---------- Industries ---------- */
.ind-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.ind {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s, transform 0.25s;
}
.ind:hover {
  border-color: rgba(67, 217, 163, 0.4);
  transform: translateY(-3px);
}
.ind .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--acc-dim);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--acc);
}
.ind h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}
.ind p {
  font-size: 14.5px;
  color: var(--mut);
}
.ind ul {
  margin-top: 14px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ind li {
  font-size: 13.5px;
  color: var(--mut);
  display: flex;
  gap: 9px;
  align-items: baseline;
}
.ind li::before {
  content: "·";
  color: var(--acc);
  font-weight: 800;
}
@media (max-width: 760px) {
  .ind-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */
#faq {
  background: var(--bg1);
}
.faq-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
}
details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
details[open] {
  border-color: rgba(67, 217, 163, 0.35);
}
summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 19px 22px;
  font-size: 15.5px;
  font-weight: 600;
}
summary::-webkit-details-marker {
  display: none;
}
summary::after {
  content: "+";
  font-size: 20px;
  color: var(--acc);
  font-weight: 400;
  flex: 0 0 auto;
  transition: transform 0.25s;
}
details[open] summary::after {
  transform: rotate(45deg);
}
details .a {
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--mut);
}
details .a a {
  color: var(--acc);
  text-decoration: none;
  font-weight: 600;
}

/* ---------- Demos page ---------- */
.demo-stage {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) clamp(20px, 5vw, 64px) 64px;
}
.demo-layout {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.demo-left {
  max-width: 560px;
}
.demo-left .eyebrow {
  margin-bottom: 20px;
}
.demo-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.demo-desc {
  color: var(--mut);
  font-size: clamp(16px, 1.8vw, 19px);
  max-width: 440px;
  margin-bottom: 32px;
}
.demo-bar {
  display: flex;
  gap: 12px;
  align-items: stretch;
  max-width: 560px;
}
.demo-bar .select-wrap {
  flex: 1;
}
.demo-bar .select-wrap select {
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.demo-bar #callBtn {
  flex: 0 0 auto;
  white-space: nowrap;
}
.mic-note {
  text-align: left;
  margin-top: 12px;
}
.demo-right {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.demo-right .transcript {
  width: 100%;
  max-height: 60vh;
  margin-top: 0;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 860px) {
  .demo-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .demo-stage {
    align-items: flex-start;
  }
  .demo-right .transcript {
    max-height: 42vh;
  }
}
.bg-video {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: var(--bg0);
}
.bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.bg-video video.show {
  opacity: 1;
}
.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.42) 45%,
    rgba(0, 0, 0, 0.68) 100%
  );
}
.select-wrap {
  position: relative;
}
.select-wrap select {
  appearance: none;
  width: 100%;
  cursor: pointer;
  background: var(--bg0);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 13px 42px 13px 16px;
  font-size: 14.5px;
  font-weight: 500;
  font-family: var(--body);
  transition: border-color 0.2s;
}
.select-wrap select:hover,
.select-wrap select:focus {
  border-color: var(--acc);
  outline: none;
}
.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-65%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 1.6px solid var(--mut);
  border-bottom: 1.6px solid var(--mut);
  pointer-events: none;
}
#callBtn.busy {
  background: var(--red);
  color: #2a0f08;
}
#callBtn:disabled {
  opacity: 0.55;
  cursor: wait;
}
.mic-note {
  font-size: 12px;
  color: var(--faint);
  text-align: center;
}
.demo-status {
  font-size: 13px;
  color: var(--mut);
  min-height: 20px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.demo-status .live-dot {
  display: none;
}
.demo-status.live .live-dot {
  display: block;
}
@media (max-width: 760px) {
  .demo-top {
    grid-template-columns: 1fr;
  }
}

.viz {
  display: none;
  align-items: center;
  gap: 3px;
  height: 54px;
  margin-top: 18px;
  background: rgba(12, 18, 32, 0.7);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
}
.viz.on {
  display: flex;
}
.viz i {
  flex: 1;
  min-height: 3px;
  height: 6%;
  background: var(--acc);
  border-radius: 2px;
  transition: height 0.06s linear;
}

.transcript {
  display: none;
  margin-top: 18px;
  background: rgba(12, 18, 32, 0.7);
  border: 1px solid var(--line);
  border-radius: 12px;
  max-height: 300px;
  overflow-y: auto;
  padding: 18px;
  scroll-behavior: smooth;
}
.transcript.on {
  display: block;
}
.transcript::-webkit-scrollbar {
  width: 8px;
}
.transcript::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 4px;
}
.t-line {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.t-line:last-child {
  margin-bottom: 0;
}
.t-line .who {
  flex: 0 0 auto;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  height: fit-content;
  margin-top: 2px;
}
.t-line.assistant .who {
  background: var(--acc-dim);
  color: var(--acc);
}
.t-line.user .who {
  background: rgba(228, 237, 246, 0.08);
  color: var(--mut);
}
.t-line p {
  font-size: 14px;
  line-height: 1.55;
}
.t-line.user p {
  color: var(--mut);
}
.t-line.partial p {
  opacity: 0.55;
  font-style: italic;
}

/* ---------- Modal ---------- */
.modal-bg {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 10, 18, 0.72);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-bg.open {
  display: flex;
}
.modal {
  width: 100%;
  max-width: 420px;
  background: var(--card-2);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}
.modal h3 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
}
.modal > div > p {
  font-size: 14px;
  color: var(--mut);
  margin-bottom: 20px;
}
.modal input {
  width: 100%;
  background: var(--bg0);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  font-size: 15px;
  font-family: var(--body);
  padding: 13px 16px;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}
.modal input:focus {
  outline: none;
  border-color: var(--acc);
}
.modal-err {
  font-size: 12.5px;
  color: var(--red);
  min-height: 18px;
  margin-bottom: 8px;
}
.modal-btns {
  display: flex;
  gap: 10px;
}
.modal-btns .btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
}
.modal-done {
  display: none;
  text-align: center;
  padding: 10px 0 4px;
}
.modal-done .ok {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--acc-dim);
  color: var(--acc);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 20px;
}
.modal-done p {
  font-size: 14.5px;
  color: var(--mut);
}

/* ---------- Pricing page ---------- */
.pricing-page {
  text-align: center;
}
.pricing-page .lede {
  margin: 0 auto;
}
.pricing-page .eyebrow {
  justify-content: center;
}
.fixed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 40px auto 0;
  max-width: 760px;
}
.fixed-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
}
.fixed-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.fixed-card .custom {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  color: var(--acc);
  margin: 10px 0 8px;
}
.fixed-card p {
  font-size: 13.5px;
  color: var(--mut);
}
.fixed-card a {
  color: var(--acc);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-top: 14px;
}
.fixed-card a:hover {
  color: var(--acc-soft);
}
@media (max-width: 640px) {
  .fixed-grid {
    grid-template-columns: 1fr;
  }
}

.cur-toggle {
  display: inline-flex;
  background: var(--bg1);
  border: 1px solid var(--line-strong);
  border-radius: 99px;
  padding: 5px;
  margin: 26px 0 28px;
  gap: 2px;
}
.cur-toggle button {
  border: none;
  background: transparent;
  color: var(--mut);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 99px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cur-toggle button.act {
  background: var(--acc);
  color: var(--acc-ink);
}
.cur-toggle button:not(.act):hover {
  color: var(--ink);
}

.rate-card {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
  background: linear-gradient(170deg, var(--card-2), var(--card));
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: clamp(20px, 4vw, 38px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
}
.rate-row:last-child {
  border-bottom: none;
}
.rate-row .label {
  font-family: var(--display);
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 600;
}
.rate-row .price-blk {
  text-align: right;
}
.rate-row .from {
  font-size: 12.5px;
  color: var(--faint);
  font-style: italic;
}
.rate-row .price {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.rate-row .price small {
  font-size: 14px;
  font-weight: 600;
  color: var(--acc);
}
.rate-row .upto {
  font-size: 12.5px;
  color: var(--faint);
  font-style: italic;
}
.rate-notes {
  margin-top: 26px;
  font-size: 14px;
  color: var(--mut);
}
.rate-notes strong {
  color: var(--ink);
}
.fx-note {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--faint);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
  max-width: 760px;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: border-color 0.25s, transform 0.25s;
}
.contact-card:hover {
  border-color: rgba(67, 217, 163, 0.4);
  transform: translateY(-3px);
}
.contact-card .lab {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 10px;
}
.contact-card .val {
  font-family: var(--display);
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 600;
  word-break: break-word;
}
.contact-card .sub {
  font-size: 13.5px;
  color: var(--mut);
  margin-top: 6px;
}
@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.cform {
  margin-top: 46px;
  max-width: 760px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(22px, 3.5vw, 36px);
}
.cform h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
}
.cform .sub {
  font-size: 14px;
  color: var(--mut);
  margin-bottom: 22px;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.f-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.f-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--mut);
}
.f-field input,
.f-field textarea {
  background: var(--bg0);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--ink);
  font-size: 15px;
  font-family: var(--body);
  padding: 12px 15px;
  transition: border-color 0.2s;
  resize: vertical;
}
.f-field input:focus,
.f-field textarea:focus {
  outline: none;
  border-color: var(--acc);
}
.f-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.f-msg {
  font-size: 13.5px;
  min-height: 20px;
}
.f-msg.ok {
  color: var(--acc);
}
.f-msg.err {
  color: var(--red);
}
@media (max-width: 640px) {
  .f-row {
    grid-template-columns: 1fr;
  }
}

/* ---------- Footer ---------- */
footer {
  padding: 34px clamp(20px, 5vw, 48px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--faint);
  background: var(--bg0);
}
footer .f-brand {
  font-family: var(--display);
  font-weight: 700;
  color: var(--mut);
}
footer .f-brand span {
  color: var(--acc);
}
footer .f-links {
  display: flex;
  gap: 18px;
}
footer .f-links a {
  text-decoration: none;
  color: var(--faint);
}
footer .f-links a:hover {
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 3px;
  border-radius: 6px;
}
