/* The Vape Desk Ltd stylesheet */
:root {
  --tvd-slate: #1E293B;
  --tvd-cyan: #06B6D4;
  --tvd-paper: #F1F5F9;
  --tvd-white: #ffffff;
  --tvd-ink: #0f172a;
  --tvd-muted: #334155;
  --tvd-border: #cbd5e1;
  --tvd-radius-sm: 6px;
  --tvd-radius-md: 12px;
  --tvd-radius-lg: 18px;
  --tvd-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  --tvd-max-width: 1240px;
  --tvd-font-heading: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --tvd-font-body: Arial, "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--tvd-font-body);
  font-size: 17px;
  line-height: 1.72;
  color: var(--tvd-ink);
  background: var(--tvd-paper);
}

a { color: var(--tvd-slate); text-underline-offset: 3px; }
a:hover { color: #0e7490; }

img { max-width: 100%; height: auto; display: block; }

:focus-visible {
  outline: 3px solid var(--tvd-cyan);
  outline-offset: 3px;
}

h1,h2,h3,h4 {
  font-family: var(--tvd-font-heading);
  letter-spacing: 0.01em;
  line-height: 1.22;
  color: var(--tvd-slate);
  margin: 0 0 1rem;
}

p { margin: 0 0 1rem; }

.tvd-wrap {
  width: min(var(--tvd-max-width), 100% - 3rem);
  margin-inline: auto;
}

.tvd-eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.14);
  color: #0e7490;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

.tvd-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--tvd-white);
  border-bottom: 1px solid var(--tvd-border);
}

.tvd-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.tvd-brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--tvd-slate);
}

.tvd-brand__badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--tvd-slate);
  color: var(--tvd-paper);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.tvd-brand__text { font-weight: 700; font-size: 1.05rem; }

.tvd-nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--tvd-border);
  border-radius: var(--tvd-radius-sm);
  padding: 0.45rem;
}

.tvd-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tvd-slate);
  margin: 4px 0;
}

.tvd-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.tvd-nav__link {
  text-decoration: none;
  display: inline-flex;
  padding: 0.55rem 0.82rem;
  border-radius: 999px;
  color: var(--tvd-slate);
  font-weight: 600;
  font-size: 0.9rem;
}

.tvd-nav__link:hover,
.tvd-nav__link.is-active {
  background: rgba(30, 41, 59, 0.08);
}

.tvd-nav__link--cta {
  background: var(--tvd-cyan);
  color: #05313a;
  font-weight: 700;
}

.tvd-nav__link--cta:hover { background: #22d3ee; }

.tvd-hero {
  padding: 5rem 0 3.2rem;
  background: linear-gradient(130deg, rgba(30, 41, 59, 0.07), rgba(6, 182, 212, 0.12));
}

.tvd-hero--compact { padding-top: 4rem; }

.tvd-hero__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.tvd-hero__media img {
  border-radius: var(--tvd-radius-lg);
  box-shadow: var(--tvd-shadow);
}

.tvd-lead {
  font-size: 1.12rem;
  color: var(--tvd-muted);
}

.tvd-actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.tvd-btn {
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.tvd-btn--primary {
  background: var(--tvd-slate);
  color: var(--tvd-paper);
}

.tvd-btn--primary:hover { background: #0f172a; color: #e2e8f0; }

.tvd-btn--ghost {
  border-color: var(--tvd-slate);
  color: var(--tvd-slate);
  background: transparent;
}

.tvd-section { padding: 3.2rem 0; }
.tvd-section--alt { background: rgba(30, 41, 59, 0.04); }

.tvd-section__head { margin-bottom: 1.2rem; max-width: 940px; }

.tvd-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tvd-card {
  background: var(--tvd-white);
  border: 1px solid var(--tvd-border);
  border-radius: var(--tvd-radius-md);
  overflow: hidden;
  padding-bottom: 1rem;
}

.tvd-card img { width: 100%; }
.tvd-card h3, .tvd-card p, .tvd-card a { padding-inline: 1rem; }

.tvd-stats-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.tvd-metrics {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.tvd-metrics li {
  background: var(--tvd-white);
  border: 1px solid var(--tvd-border);
  border-left: 5px solid var(--tvd-cyan);
  border-radius: var(--tvd-radius-sm);
  padding: 0.9rem 1rem;
}

.tvd-metrics strong { display: block; font-size: 1.25rem; }

.tvd-service-grid,
.tvd-pricing-grid,
.tvd-team-grid,
.tvd-contact-grid,
.tvd-footer__grid {
  display: grid;
  gap: 1rem;
}

.tvd-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tvd-pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 2rem; }
.tvd-team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tvd-contact-grid { grid-template-columns: 1.1fr 1fr; }
.tvd-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }

.tvd-service,
.tvd-price-card,
.tvd-team-card,
.tvd-policy-block,
.tvd-related,
.tvd-contact-form,
.tvd-table,
.tvd-timeline article {
  background: var(--tvd-white);
  border: 1px solid var(--tvd-border);
  border-radius: var(--tvd-radius-md);
  padding: 1rem 1.1rem;
}

.tvd-price-card__price { font-size: 1.8rem; font-weight: 700; color: #0f766e; }
.tvd-price-card--featured { border-color: #0891b2; box-shadow: var(--tvd-shadow); }

.tvd-filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: end;
  margin-bottom: 1.2rem;
}

.tvd-filter-form label,
.tvd-contact-form label { display: block; font-weight: 700; margin-bottom: 0.25rem; }

.tvd-filter-form select,
.tvd-contact-form input,
.tvd-contact-form select,
.tvd-contact-form textarea {
  width: 100%;
  border: 1px solid #94a3b8;
  border-radius: 8px;
  padding: 0.64rem 0.7rem;
  font: inherit;
  background: #fff;
}

.tvd-contact-form { align-self: start; }
.tvd-contact-form .tvd-btn { margin-top: 0.6rem; }
.tvd-form-note { font-size: 0.9rem; color: #334155; }
.tvd-form-status { margin-top: 0.5rem; min-height: 1.3rem; font-weight: 700; color: #0f766e; }

.tvd-table { width: 100%; border-collapse: collapse; display: table; margin: 1rem 0; }
.tvd-table th, .tvd-table td { border: 1px solid #cbd5e1; padding: 0.6rem 0.7rem; text-align: left; }
.tvd-table th { background: #e2e8f0; }

.tvd-faq { display: grid; gap: 0.7rem; margin-top: 1.2rem; }
.tvd-faq__item { border: 1px solid var(--tvd-border); border-radius: var(--tvd-radius-sm); background: #fff; }
.tvd-faq__trigger {
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  font: inherit;
  font-weight: 700;
  background: transparent;
  border: 0;
}
.tvd-faq__panel { padding: 0 1rem 0.85rem; display: none; }
.tvd-faq__item.is-open .tvd-faq__panel { display: block; }

.tvd-timeline { display: grid; gap: 0.8rem; margin-bottom: 1rem; }

.tvd-footer {
  margin-top: 2rem;
  padding-top: 2.4rem;
  background: #0f172a;
  color: #e2e8f0;
}

.tvd-footer a { color: #67e8f9; }
.tvd-footer__title { color: #f8fafc; font-size: 1.05rem; }
.tvd-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.tvd-footer__bar { border-top: 1px solid rgba(148,163,184,0.35); margin-top: 1.2rem; padding: 0.9rem 0 1.4rem; }

@media (max-width: 1100px) {
  .tvd-hero__grid,
  .tvd-stats-split,
  .tvd-contact-grid,
  .tvd-footer__grid,
  .tvd-pricing-grid,
  .tvd-service-grid,
  .tvd-team-grid {
    grid-template-columns: 1fr;
  }

  .tvd-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
  .tvd-wrap { width: min(var(--tvd-max-width), 100% - 1.6rem); }

  .tvd-nav__toggle { display: inline-block; }
  .tvd-nav__list {
    position: absolute;
    right: 0.8rem;
    top: 68px;
    width: min(360px, calc(100% - 1.6rem));
    background: #fff;
    border: 1px solid var(--tvd-border);
    border-radius: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.55rem;
    box-shadow: var(--tvd-shadow);
  }

  .tvd-nav.is-open .tvd-nav__list { display: flex; }
  .tvd-nav__link { border-radius: 8px; }
  .tvd-card-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .tvd-hero { padding-top: 3rem; }
  .tvd-actions { flex-direction: column; align-items: stretch; }
  .tvd-btn { width: 100%; }
  .tvd-brand__text { font-size: 0.95rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}
