/* =========================================================================
   components.css — buttons, forms, cards, lists, status, tables, feedback.
   ========================================================================= */

/* --------------------------------- buttons -------------------------------- */
.btn {
  --btn-bg: linear-gradient(120deg, rgba(34, 211, 238, 0.95), rgba(79, 124, 255, 0.92) 55%, rgba(168, 85, 247, 0.9));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font: 650 0.9rem/1.1 var(--font-body);
  letter-spacing: 0.01em;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.16s ease, box-shadow 0.24s ease, filter 0.2s ease, background 0.2s;
}
.btn .icon { width: 1.05em; height: 1.05em; }
.btn:active { transform: translateY(1px) scale(0.995); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }

.btn-primary { background: var(--btn-bg); color: #04101c; box-shadow: 0 12px 34px -16px rgba(34, 211, 238, 0.8); }
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 18px 44px -16px rgba(34, 211, 238, 0.95); transform: translateY(-1px); }
.btn--glow::after {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.55), transparent 70%);
  transform: translateX(-120%);
  animation: btnSheen 6.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnSheen { 0%, 62% { transform: translateX(-120%); } 82%, 100% { transform: translateX(120%); } }

.btn-wa { background: linear-gradient(150deg, #22c55e, #0f9d58); color: #04160c; box-shadow: 0 12px 30px -16px rgba(34, 197, 94, 0.9); }
.btn-wa:hover { filter: brightness(1.07); transform: translateY(-1px); }
.btn-ghost { background: rgba(255, 255, 255, 0.045); border-color: var(--hairline); color: var(--ink); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(34, 211, 238, 0.45); color: #fff; }
.btn-soft { background: rgba(34, 211, 238, 0.1); border-color: rgba(34, 211, 238, 0.32); color: #cffcff; }
.btn-soft:hover { background: rgba(34, 211, 238, 0.18); color: #fff; }
.btn-danger { background: linear-gradient(140deg, rgba(251, 113, 133, 0.9), rgba(190, 24, 60, 0.9)); color: #fff; }
.btn--sm { padding: 8px 13px; font-size: 0.83rem; border-radius: 10px; }
.btn--lg { padding: 14px 24px; font-size: 0.98rem; border-radius: 14px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-row--center { justify-content: center; margin-top: 28px; }
.btn-block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 650; font-size: 0.88rem; color: var(--cyan); }
.link-arrow .icon { transition: transform 0.22s ease; }
.link-arrow:hover .icon { transform: translateX(4px); }
.link-arrow:hover { color: #fff; text-decoration: none; }

/* ------------------------------ chips and pills --------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: var(--ink-2);
  white-space: nowrap;
}
.chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.chip--ok { border-color: rgba(52, 211, 153, 0.35); background: var(--ok); }
.chip--ok .chip__dot { background: var(--green); box-shadow: 0 0 12px var(--green); }
.chip-row { list-style: none; display: flex; gap: 8px; flex-wrap: wrap; padding: 0; margin: 14px 0 0; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-2);
}
.pill--ok { color: #a7f3d0; border-color: rgba(52, 211, 153, 0.4); background: var(--ok); }
.pill--warn { color: #fde68a; border-color: rgba(251, 191, 36, 0.4); background: var(--warn); }
.pill--bad { color: #fecdd3; border-color: rgba(251, 113, 133, 0.4); background: var(--bad); }
.pill--info { color: #bae6fd; border-color: rgba(56, 189, 248, 0.4); background: rgba(56, 189, 248, 0.12); }
.pill--live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: blink 1.8s ease-in-out infinite; }
@keyframes blink { 50% { opacity: 0.25; } }

/* --------------------------------- lists --------------------------------- */
.tick-list { list-style: none; padding: 0; display: grid; gap: 8px; }
.tick-list li { display: grid; grid-template-columns: 1.25em 1fr; gap: 9px; align-items: start; font-size: 0.92rem; color: var(--ink-2); margin: 0; }
.tick-list .icon { color: var(--cyan); margin-top: 2px; }
.cross-list li .icon { color: var(--rose); }
.mini-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 5px; }
.mini-list li { font-size: 0.85rem; color: var(--muted); position: relative; padding-left: 14px; margin: 0; }
.mini-list li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 5px; height: 5px; border-radius: 2px; background: linear-gradient(140deg, var(--cyan), var(--violet)); }
.dot-list { list-style: none; padding: 0; display: grid; gap: 6px; }
.dot-list li { position: relative; padding-left: 16px; font-size: 0.9rem; color: var(--ink-2); margin: 0; }
.dot-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px rgba(34, 211, 238, 0.8); }

.field-list { display: grid; gap: 10px; margin: 0; }
.field-list span { display: grid; gap: 2px; font-size: 0.92rem; color: var(--ink-2); }
.field-list strong { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); }
.area-list { list-style: none; padding: 0; display: grid; gap: 7px; }
.area-list li { display: flex; gap: 8px; align-items: center; font-size: 0.9rem; color: var(--ink-2); margin: 0; }
.area-list .icon { color: var(--cyan); flex: none; }
.hours { list-style: none; padding: 0; margin: 0; }
.hours li { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.09); font-size: 0.9rem; margin: 0; }
.hours li:last-child { border-bottom: 0; }
.hours strong { color: #fff; text-align: right; }

/* ------------------------------- info notices ---------------------------- */
.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--r);
  border: 1px solid rgba(56, 189, 248, 0.28);
  background: linear-gradient(150deg, rgba(56, 189, 248, 0.1), rgba(99, 102, 241, 0.06));
  margin: 0;
}
.notice .icon { color: var(--sky); flex: none; margin-top: 3px; }
.notice p { font-size: 0.88rem; color: var(--ink-2); }
.notice--warn { border-color: rgba(251, 191, 36, 0.35); background: linear-gradient(150deg, rgba(251, 191, 36, 0.12), rgba(244, 114, 182, 0.05)); }
.notice--warn .icon { color: var(--amber); }
.notice--bad { border-color: rgba(251, 113, 133, 0.4); background: linear-gradient(150deg, rgba(251, 113, 133, 0.12), rgba(190, 24, 60, 0.05)); }
.notice--bad .icon { color: var(--rose); }
.notice--ok { border-color: rgba(52, 211, 153, 0.35); background: linear-gradient(150deg, rgba(52, 211, 153, 0.12), rgba(34, 211, 238, 0.05)); }
.notice--ok .icon { color: var(--green); }
.notice--inline { margin-top: 22px; max-width: 60ch; }
.notice--sm { padding: 10px 12px; }
.notice--sm p { font-size: 0.82rem; }

/* --------------------------------- forms ---------------------------------- */
.form { display: grid; gap: 16px; }
.form-grid { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.field { display: grid; gap: 6px; }
.field > label, .legend { font-size: 0.82rem; font-weight: 650; color: var(--ink); letter-spacing: 0.01em; }
.field .req { color: var(--rose); }
.field__hint { font-size: 0.78rem; color: var(--faint); }
.field__error { font-size: 0.8rem; color: #fecdd3; display: none; }
.field.is-invalid .field__error { display: block; }
.field.is-invalid :is(input, select, textarea) { border-color: rgba(251, 113, 133, 0.7); background: rgba(251, 113, 133, 0.07); }
.field.is-valid :is(input, select, textarea) { border-color: rgba(52, 211, 153, 0.55); }

:is(input, select, textarea, .select) {
  width: 100%;
  font: inherit;
  font-size: 0.94rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-field);
  padding: 11px 13px;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  appearance: none;
}
:is(input, select, textarea):hover { border-color: rgba(255, 255, 255, 0.2); }
:is(input, select, textarea):focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.75);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.16);
  background: rgba(255, 255, 255, 0.06);
}
:is(input, select, textarea)::placeholder { color: #6b7c9b; }
textarea { min-height: 122px; resize: vertical; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%2393a3c2' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
}
select option { background: #0b1120; color: var(--ink); }
input[type="date"], input[type="time"] { color-scheme: dark; }
input[type="checkbox"], input[type="radio"] {
  width: 18px;
  height: 18px;
  padding: 0;
  flex: none;
  border-radius: 5px;
  border: 1px solid var(--hairline-strong);
  background: rgba(255, 255, 255, 0.06);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}
input[type="radio"] { border-radius: 50%; }
input[type="checkbox"]:checked, input[type="radio"]:checked { background: var(--grad) center/cover; border-color: transparent; box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15); }
input[type="checkbox"]:checked::after { content: "✓"; color: #04101c; font-size: 12px; font-weight: 900; }
input[type="radio"]:checked::after { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #04101c; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 0.87rem; color: var(--ink-2); padding: 11px 13px; border: 1px solid var(--hairline); border-radius: var(--r); background: rgba(255, 255, 255, 0.03); cursor: pointer; transition: 0.18s; }
.check:hover { border-color: rgba(34, 211, 238, 0.4); background: rgba(34, 211, 238, 0.06); }
.check input { margin-top: 2px; }
.check strong { display: block; }
fieldset { border: 1px solid var(--hairline); border-radius: var(--r); padding: 14px; margin: 0; }
legend { padding: 0 8px; }
.form-foot { display: flex; gap: 14px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.char-count { font-size: 0.75rem; color: var(--faint); font-variant-numeric: tabular-nums; }
.char-count.is-over { color: var(--rose); }
.file-drop {
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: var(--r);
  padding: 16px;
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.86rem;
}
.file-drop strong { display: flex; gap: 8px; align-items: center; }
.file-drop .icon { color: var(--cyan); }
.file-list { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 6px; }
.file-list li { display: flex; justify-content: space-between; gap: 10px; align-items: center; padding: 7px 10px; border-radius: 9px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--hairline); font-size: 0.82rem; margin: 0; }
.segmented { display: inline-flex; padding: 4px; gap: 4px; border-radius: 12px; border: 1px solid var(--hairline); background: rgba(255, 255, 255, 0.04); flex-wrap: wrap; }
.segmented label { padding: 7px 13px; border-radius: 9px; font-size: 0.85rem; cursor: pointer; color: var(--muted); display: inline-flex; gap: 7px; align-items: center; }
.segmented input { position: absolute; opacity: 0; pointer-events: none; }
.segmented label:has(input:checked) { background: var(--grad); color: #04101c; font-weight: 650; }
.segmented label:hover { color: #fff; }
.pass-wrap { position: relative; }
.pass-toggle { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); border: 0; background: transparent; color: var(--muted); cursor: pointer; padding: 8px; border-radius: 8px; }
.pass-toggle:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.strength { display: grid; gap: 6px; margin-top: 4px; }
.strength__bar { height: 5px; border-radius: 999px; background: rgba(255, 255, 255, 0.09); overflow: hidden; }
.strength__bar > i { display: block; height: 100%; width: 0; background: var(--grad); transition: width 0.3s ease; }
.strength__label { font-size: 0.76rem; color: var(--faint); }

/* -------------------------------- service cards --------------------------- */
.service-card { display: flex; flex-direction: column; }
.service-card__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(34, 211, 238, 0.22), rgba(168, 85, 247, 0.16));
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--cyan);
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 28px -18px rgba(34, 211, 238, 0.9);
}
.service-card__icon .icon { width: 27px; height: 27px; }
.service-card h3 { font-size: 1.16rem; }
.service-card p { color: var(--muted); }
.service-card .mini-list { flex: 1; }
.service-card__foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--hairline); flex-wrap: wrap; }
.price-hint { font-size: 0.78rem; color: var(--faint); font-family: var(--font-mono); }

/* ------------------------------- price cards ----------------------------- */
.price-card { display: flex; flex-direction: column; }
.price-card__flag { position: absolute; top: -10px; right: 16px; padding: 4px 10px; border-radius: 999px; background: var(--grad); color: #04101c; font-size: 0.7rem; font-weight: 750; letter-spacing: 0.05em; text-transform: uppercase; }
.price-card__icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: rgba(255, 255, 255, 0.06); border: 1px solid var(--hairline); color: var(--cyan); margin-bottom: 12px; }
.price-card__price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 750; color: #fff; letter-spacing: -0.02em; margin-top: 2px; }
.price-card__price span { display: block; font-size: 0.74rem; font-weight: 550; color: var(--faint); letter-spacing: 0; font-family: var(--font-body); }
.price-card__blurb { color: var(--muted); font-size: 0.89rem; margin: 10px 0 14px; }
.price-card .tick-list { flex: 1; }
.price-card__turn { margin-top: 14px; font-size: 0.8rem; color: var(--ink-2); display: flex; gap: 7px; align-items: center; }
.price-card__note { margin-top: 8px; font-size: 0.78rem; color: var(--faint); border-left: 2px solid rgba(251, 191, 36, 0.5); padding-left: 10px; }
.price-card__cta { display: flex; gap: 8px; margin-top: 16px; }
.price-card--hot { border-color: rgba(34, 211, 238, 0.42); box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.16), 0 40px 80px -46px rgba(34, 211, 238, 0.55); }

/* ------------------------------- trust / stats --------------------------- */
.trust-strip { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 168px), 1fr)); gap: 12px; margin: 0; }
.trust {
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 14px;
  border-radius: var(--r);
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.03);
  transition: 0.24s;
}
.trust:hover { border-color: rgba(34, 211, 238, 0.4); background: rgba(34, 211, 238, 0.06); transform: translateY(-2px); }
.trust__icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; background: rgba(34, 211, 238, 0.12); color: var(--cyan); flex: none; }
.trust__icon .icon { width: 20px; height: 20px; }
.trust p { display: grid; gap: 1px; font-size: 0.88rem; }
.trust span { font-size: 0.74rem; color: var(--faint); }

.stats { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 14px; }
.stat { padding: 20px; border-radius: var(--r-lg); border: 1px solid var(--hairline); background: var(--grad-soft); position: relative; overflow: clip; }
.stat__value { font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 750; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.stat__label { margin-top: 8px; font-weight: 650; font-size: 0.92rem; }
.stat__note { font-size: 0.78rem; color: var(--muted); }

/* --------------------------------- steps --------------------------------- */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 258px), 1fr)); gap: 14px; margin: 0; counter-reset: s; }
.step {
  position: relative;
  padding: 20px 18px 18px;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  background: var(--glass);
  transition: 0.26s;
}
.step:hover { border-color: rgba(168, 85, 247, 0.42); transform: translateY(-3px); box-shadow: 0 30px 60px -40px rgba(168, 85, 247, 0.8); }
.step__n { position: absolute; top: 12px; right: 14px; font-family: var(--font-display); font-size: 2.3rem; font-weight: 800; line-height: 1; color: rgba(255, 255, 255, 0.07); }
.step__icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: linear-gradient(150deg, rgba(34, 211, 238, 0.24), rgba(168, 85, 247, 0.16)); border: 1px solid rgba(255, 255, 255, 0.14); color: #fff; }
.step h3 { margin: 14px 0 6px; font-size: 1.02rem; }
.step p { font-size: 0.88rem; color: var(--muted); }

/* ---------------------------------- why ---------------------------------- */
.why-grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); gap: 12px; margin: 0; }
.why { padding: 18px; border-radius: var(--r); border: 1px solid var(--hairline); background: rgba(255, 255, 255, 0.028); transition: 0.24s; }
.why:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(34, 211, 238, 0.34); }
.why__icon { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: rgba(34, 211, 238, 0.12); color: var(--cyan); }
.why__icon .icon { width: 19px; height: 19px; }
.why h3 { margin: 12px 0 5px; font-size: 0.99rem; }
.why p { font-size: 0.86rem; color: var(--muted); }

/* ------------------------------ media / tiles ---------------------------- */
.media-row { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 148px), 1fr)); gap: 12px; }
.media-tile {
  position: relative;
  padding: 12px 10px 14px;
  border-radius: var(--r);
  border: 1px solid var(--hairline);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  text-align: center;
  overflow: clip;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.media-tile:hover { border-color: rgba(34, 211, 238, 0.4); box-shadow: 0 26px 50px -34px rgba(34, 211, 238, 0.85); }
.media-tile .art { aspect-ratio: 4 / 3; width: 100%; }
.media-tile > span { display: block; margin-top: 4px; font-size: 0.78rem; color: var(--ink-2); font-weight: 600; }
.media-tile--row { display: flex; align-items: center; gap: 12px; text-align: left; padding: 12px; }
.media-tile--row .art { width: 86px; flex: none; }

/* -------------------------------- faq / quotes --------------------------- */
.faq { border: 1px solid var(--hairline); border-radius: var(--r); background: rgba(255, 255, 255, 0.028); overflow: clip; transition: 0.22s; }
.faq + .faq { margin-top: 10px; }
.faq[open] { border-color: rgba(34, 211, 238, 0.36); background: rgba(34, 211, 238, 0.05); }
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  cursor: pointer;
  list-style: none;
  font-weight: 620;
  color: #fff;
  font-size: 0.97rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--cyan); }
.faq__ico { flex: none; transition: transform 0.24s; color: var(--cyan); }
.faq[open] .faq__ico { transform: rotate(180deg); }
.faq__a { padding: 0 17px 16px; }
.faq__a p { font-size: 0.92rem; color: var(--ink-2); }
.faq__cat { margin-top: 10px; font-size: 0.76rem; color: var(--faint); }

.quote-card { display: flex; flex-direction: column; }
.quote-card__mark { color: rgba(34, 211, 238, 0.5); }
.quote-card__mark .icon { width: 30px; height: 30px; }
.quote-card blockquote { font-size: 0.95rem; color: var(--ink-2); font-style: italic; margin: 10px 0 16px; flex: 1; }
.quote-card figcaption { display: flex; gap: 11px; align-items: center; padding-top: 12px; border-top: 1px solid var(--hairline); }
.quote-card figcaption > span:nth-child(2) { display: grid; gap: 1px; min-width: 0; }
.quote-card figcaption strong { font-size: 0.9rem; }
.quote-card figcaption em { font-size: 0.76rem; color: var(--faint); font-style: normal; }
.quote-card .pill { margin-inline-start: auto; }
.avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex: none;
  background: var(--grad);
  color: #04101c;
  font-weight: 750;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

/* --------------------------------- blog ---------------------------------- */
.blog-card h3 { font-size: 1.08rem; }
.blog-card h3 a { color: #fff; }
.blog-card h3 a:hover { color: var(--cyan); text-decoration: none; }
.blog-card__meta { display: flex; align-items: center; gap: 9px; font-size: 0.78rem; color: var(--faint); flex-wrap: wrap; }
.blog-card p { font-size: 0.9rem; color: var(--muted); margin: 10px 0 14px; }
.article { max-width: 74ch; }
.article h2 { margin: 30px 0 10px; font-size: 1.3rem; }
.article p { margin-bottom: 14px; }
.article .article-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; color: var(--faint); font-size: 0.84rem; margin-bottom: 22px; }

/* ------------------------------- status flow ----------------------------- */
.timeline { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.timeline li { position: relative; padding: 0 0 20px 34px; margin: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0b1120;
  border: 2px solid rgba(255, 255, 255, 0.28);
}
.timeline li::after { content: ""; position: absolute; left: 14px; top: 20px; bottom: 0; width: 2px; background: rgba(255, 255, 255, 0.1); }
.timeline li:last-child { padding-bottom: 0; }
.timeline li:last-child::after { display: none; }
.timeline li.is-done::before { background: var(--cyan); border-color: rgba(34, 211, 238, 0.5); box-shadow: 0 0 14px rgba(34, 211, 238, 0.8); }
.timeline li.is-current::before { background: var(--amber); border-color: rgba(251, 191, 36, 0.6); box-shadow: 0 0 14px rgba(251, 191, 36, 0.8); animation: blink 1.9s ease-in-out infinite; }
.timeline strong { display: block; font-size: 0.94rem; }
.timeline span { font-size: 0.8rem; color: var(--faint); }

.trackbar { display: grid; gap: 8px; margin: 18px 0 4px; }
.trackbar__track { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 5px; }
.trackbar__track i { height: 6px; border-radius: 999px; background: rgba(255, 255, 255, 0.09); transition: background 0.4s ease; }
.trackbar__track i.on { background: var(--grad); box-shadow: 0 0 14px -2px rgba(34, 211, 238, 0.8); }
.trackbar__labels { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--faint); gap: 8px; flex-wrap: wrap; }

/* --------------------------------- tables -------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--hairline); border-radius: var(--r); background: rgba(255, 255, 255, 0.022); }
table.data { min-width: 660px; font-size: 0.88rem; }
table.data th, table.data td { text-align: left; padding: 12px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.07); vertical-align: middle; }
table.data thead th { position: sticky; top: 0; background: rgba(11, 17, 32, 0.95); backdrop-filter: blur(8px); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--faint); font-weight: 700; }
table.data tbody tr:hover { background: rgba(34, 211, 238, 0.05); }
table.data tbody tr:last-child td { border-bottom: 0; }
table.data td.num { font-variant-numeric: tabular-nums; }
table.data .cell-actions { display: flex; gap: 6px; justify-content: flex-end; }
.row-btn {
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink-2);
  border-radius: 9px;
  padding: 6px 8px;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: 0.18s;
}
.row-btn:hover { color: #fff; border-color: rgba(34, 211, 238, 0.5); background: rgba(34, 211, 238, 0.12); }
.row-btn .icon { width: 16px; height: 16px; }
.row-btn--danger:hover { border-color: rgba(251, 113, 133, 0.6); background: rgba(251, 113, 133, 0.14); }

/* ------------------------------- map / photos ---------------------------- */
.map-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--hairline); background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.25)); min-height: 300px; }
.map-frame iframe { width: 100%; height: 100%; min-height: 300px; border: 0; display: block; }
.map-frame__ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
  padding: 26px;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0 22px, transparent 22px 44px),
    linear-gradient(160deg, rgba(34, 211, 238, 0.08), rgba(168, 85, 247, 0.06));
}
.map-frame__ph p { max-width: 44ch; font-size: 0.86rem; color: var(--ink-2); display: grid; gap: 5px; }
.map-pin { width: 42px; height: 42px; color: var(--cyan); filter: drop-shadow(0 8px 22px rgba(34, 211, 238, 0.6)); }

.img-frame { border-radius: var(--r); overflow: hidden; border: 1px solid var(--hairline); background: rgba(255, 255, 255, 0.03); }
.img-frame img { width: 100%; height: 100%; object-fit: cover; }

/* -------------------------------- skeleton ------------------------------- */
.skeleton { border-radius: 10px; background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05)); background-size: 220% 100%; animation: shimmer 1.5s linear infinite; }
@keyframes shimmer { to { background-position: -220% 0; } }
.empty {
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  padding: 34px 18px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--r);
  color: var(--muted);
  font-size: 0.9rem;
}
.empty .icon { width: 32px; height: 32px; color: rgba(34, 211, 238, 0.65); }

/* ---------------------------------- tabs --------------------------------- */
.tabs { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: thin; }
.tabs button {
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  padding: 9px 14px;
  border-radius: 11px;
  font: 600 0.85rem/1 var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: 0.18s;
  display: inline-flex;
  gap: 7px;
  align-items: center;
}
.tabs button:hover { color: #fff; }
.tabs button[aria-selected="true"] { background: var(--grad); border-color: transparent; color: #04101c; box-shadow: 0 12px 30px -18px rgba(34, 211, 238, 0.9); }
[role="tabpanel"][hidden] { display: none; }

/* ---------------------------- misc small things -------------------------- */
.kpi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr)); gap: 12px; }
.kpi { padding: 16px; border-radius: var(--r); border: 1px solid var(--hairline); background: var(--glass); }
.kpi__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--faint); }
.kpi__value { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1.15; margin-top: 6px; }
.kpi__foot { font-size: 0.78rem; color: var(--muted); margin-top: 4px; }
.kpi__icon { float: right; color: var(--cyan); }
.kpi__icon .icon { width: 22px; height: 22px; }
.divider-dots { text-align: center; color: rgba(255, 255, 255, 0.2); letter-spacing: 0.6em; }
.badge-count { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: 999px; background: rgba(34, 211, 238, 0.2); color: #a5f3ff; font-size: 0.72rem; font-weight: 700; }
.meter { height: 8px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.meter > i { display: block; height: 100%; background: var(--grad); box-shadow: 0 0 12px rgba(34, 211, 238, 0.7); }

/* submit-spinner (forms.js / login.js busy state) */
.spin {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: -2px;
  border: 2px solid rgba(4, 16, 28, 0.28);
  border-top-color: #04101c;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.btn-ghost .spin,
.btn-wa .spin { border-color: rgba(255, 255, 255, 0.28); border-top-color: #fff; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spin { animation-duration: 1.4s; } }

/* Hosted payment destinations — no checkout scripts or card-data collection. */
.payment-links { padding: clamp(18px, 3vw, 28px); margin-top: 20px; border: 1px solid rgba(56,189,248,.22); border-radius: 18px; background: linear-gradient(125deg,rgba(34,211,238,.06),rgba(99,102,241,.07)); }
.payment-links__heading { font-size: 1.12rem; font-weight: 700; color: var(--ink); margin: 0 0 14px; }
.payment-links__buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.payment-link { min-height: 46px; border: 1px solid rgba(125,211,252,.32); text-decoration: none; white-space: normal; }
.payment-link--razorpay { background: #2563eb; color: #fff; }
.payment-link--paypal { background: #123966; color: #fff; }
.payment-link:hover { filter: brightness(1.15); transform: translateY(-2px); }
.payment-links__note { font-size: .82rem; line-height: 1.65; color: var(--muted); margin: 12px 0 0; max-width: 72ch; }
.payment-links--compact { padding: 16px 0 0; margin-top: 18px; border: 0; border-top: 1px solid var(--hairline); border-radius: 0; background: none; }
.payment-links--compact .payment-links__heading { font-size: .87rem; margin-bottom: 10px; }
.payment-links--compact .payment-link { font-size: .8rem; padding: 10px 12px; min-height: 44px; }
.payment-links--compact .payment-links__note { font-size: .75rem; }
@media (max-width: 480px) {
  .payment-links__buttons { flex-direction: column; }
  .payment-link { width: 100%; justify-content: space-between; }
}
