/* ── VoIP landing — CMS button palette (--site-btn*), white surfaces ───── */
.voip-page {
  --vp-brand: var(--site-btn, #0093e9);
  --vp-brand-soft: var(--site-btn-soft, rgba(0, 147, 233, 0.1));
  --vp-brand-muted: var(--site-btn-muted, rgba(0, 147, 233, 0.16));
  --vp-brand-strong: var(--site-btn-strong, #0077c2);
  --vp-brand-on: var(--site-btn-on, #ffffff);
  --vp-ink: #111827;
  --vp-body: #374151;
  --vp-muted: #6b7280;
  --vp-line: #e2e8f0;
  --vp-soft: #f9fafb;
  background:
    radial-gradient(ellipse 70% 42% at 50% -8%, var(--vp-brand-soft), transparent 72%),
    #fff;
}

.voip-wrap {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 8px;
}

/* ── Hero ──────────────────────────────────────────────────────────────── */
.voip-hero {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--vp-line);
}

.voip-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.voip-hero__badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--vp-brand-strong);
  border-bottom: 2px solid var(--vp-brand);
}

.voip-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  font-weight: 800;
  color: var(--vp-ink);
  line-height: 1.5;
}

.voip-hero__lead {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 2.1;
  color: var(--vp-body);
  text-align: justify;
}

.voip-hero__lead a {
  color: var(--vp-brand-strong) !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.voip-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.voip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.15s, border-color 0.15s;
}

.voip-btn--primary {
  background: var(--vp-brand);
  color: var(--vp-brand-on) !important;
  border: 1.5px solid var(--vp-brand);
  box-shadow: 0 6px 18px var(--vp-brand-muted);
}

.voip-btn--primary:hover {
  background: var(--vp-brand-strong);
  border-color: var(--vp-brand-strong);
}

.voip-btn--outline {
  background: #fff;
  color: var(--vp-brand-strong) !important;
  border: 1.5px solid var(--vp-brand-muted);
}

.voip-btn--outline:hover {
  border-color: var(--vp-brand);
  background: var(--vp-brand-soft);
}

.voip-hero__panel {
  padding: 24px 22px;
  border: 1px solid var(--vp-line);
  border-top: 3px solid var(--vp-brand);
  border-radius: 12px;
  background: #fff;
}

.voip-hero__panel-title {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 800;
  color: var(--vp-ink);
}

.voip-hero__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.voip-hero__list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--vp-line);
  font-size: 14px;
  line-height: 1.75;
  color: var(--vp-body);
}

.voip-hero__list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.voip-hero__list strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--vp-brand-strong);
  margin-bottom: 2px;
}

/* ── Section ───────────────────────────────────────────────────────────── */
.voip-sec {
  margin-bottom: 56px;
  padding-bottom: 8px;
}

.voip-sec__head {
  margin-bottom: 28px;
  max-width: 760px;
}

.voip-sec__tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--vp-brand-soft);
  font-size: 12px;
  font-weight: 700;
  color: var(--vp-brand-strong);
  letter-spacing: 0.04em;
}

.voip-sec__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 800;
  color: var(--vp-ink);
  line-height: 1.45;
}

.voip-sec__head p {
  margin: 0;
  font-size: 15px;
  line-height: 2;
  color: var(--vp-body);
  text-align: justify;
}

/* ── Line cards ────────────────────────────────────────────────────────── */
.voip-lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.voip-line-card {
  padding: 28px 26px;
  border: 1px solid var(--vp-line);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.18s;
}

.voip-line-card:hover {
  border-color: var(--vp-brand-muted);
}

.voip-line-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--vp-ink);
}

.voip-line-card p {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 2;
  color: var(--vp-body);
  text-align: justify;
}

.voip-line-card__sample {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid var(--vp-brand-muted);
  border-radius: 6px;
  background: var(--vp-brand-soft);
  font-family: ui-monospace, monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--vp-brand-strong);
  direction: ltr;
  letter-spacing: 0.03em;
}

.voip-line-card__extras {
  margin: 16px 0 0;
  padding: 0 20px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--vp-body);
}

/* ── Platforms ─────────────────────────────────────────────────────────── */
.voip-platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.voip-platform {
  padding: 24px 22px;
  border: 1px solid var(--vp-line);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.18s;
}

.voip-platform:hover {
  border-color: var(--vp-brand-muted);
}

.voip-platform__name {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 800;
  color: var(--vp-brand-strong);
}

.voip-platform p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: var(--vp-body);
  text-align: justify;
}

.voip-platform a {
  color: var(--vp-brand-strong) !important;
  font-weight: 700;
}

/* ── Feature grid ──────────────────────────────────────────────────────── */
.voip-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.voip-feature {
  padding: 24px 22px;
  border: 1px solid var(--vp-line);
  border-radius: 12px;
  background: #fff;
}

.voip-feature--full {
  grid-column: 1 / -1;
}

.voip-feature h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--vp-ink);
}

.voip-feature p {
  margin: 0;
  font-size: 14.5px;
  line-height: 2;
  color: var(--vp-body);
  text-align: justify;
}

/* ── Plans ─────────────────────────────────────────────────────────────── */
.voip-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.voip-plan {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 24px;
  border: 1px solid var(--vp-line);
  border-radius: 12px;
  background: #fff;
}

.voip-plan--pro {
  border-width: 2px;
  border-color: var(--vp-brand);
}

.voip-plan--pro .voip-plan__label {
  color: var(--vp-brand-strong);
}

.voip-plan__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--vp-muted);
  margin-bottom: 6px;
}

.voip-plan h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 800;
  color: var(--vp-ink);
}

.voip-plan__sub {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--vp-body);
  text-align: justify;
}

.voip-plan__list {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.voip-plan__list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--vp-line);
  font-size: 14px;
  line-height: 1.8;
  color: var(--vp-body);
}

.voip-plan__list li:last-child {
  border-bottom: none;
}

.voip-plan__cta {
  margin-top: 22px;
}

.voip-plan__cta .voip-btn {
  width: 100%;
}

/* ── Process ───────────────────────────────────────────────────────────── */
.voip-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  counter-reset: vp-step;
}

.voip-step {
  padding: 20px 14px;
  border: 1px solid var(--vp-line);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  counter-increment: vp-step;
}

.voip-step::before {
  content: counter(vp-step);
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: var(--vp-brand);
  color: var(--vp-brand-on);
  font-size: 13px;
  font-weight: 800;
}

.voip-step strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--vp-ink);
  line-height: 1.65;
}

.voip-step span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--vp-muted);
  line-height: 1.6;
}

/* ── CTA ───────────────────────────────────────────────────────────────── */
.voip-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 16px 0 48px;
  padding: 28px 26px;
  border: 1px solid var(--vp-line);
  border-right: 4px solid var(--vp-brand);
  border-radius: 12px;
  background: #fff;
}

.voip-cta h2 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--vp-ink);
}

.voip-cta p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--vp-body);
  max-width: 520px;
}

.voip-cta__phone {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--vp-brand-strong) !important;
  text-decoration: none !important;
  margin-bottom: 10px;
}

/* ── Form ──────────────────────────────────────────────────────────────── */
.voip-form-wrap {
  max-width: 800px;
  margin: 0 auto 80px;
  padding-top: 16px;
  border-top: 1px solid var(--vp-line);
}

.voip-form-head {
  margin-bottom: 24px;
}

.voip-form-head h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--vp-ink);
}

.voip-form-head p {
  margin: 0;
  font-size: 14px;
  color: var(--vp-body);
  line-height: 1.9;
}

.voip-form-card {
  padding: 32px 28px;
  border: 1px solid var(--vp-line);
  border-radius: 12px;
  background: #fff;
}

.voip-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

.voip-form-grid .full { grid-column: 1 / -1; }

.voip-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--vp-body);
}

.voip-field input,
.voip-field textarea,
.voip-field select {
  width: 100%;
  border: 1px solid var(--vp-line);
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 14px;
  font-family: inherit;
  color: var(--vp-ink);
  background: #fff;
  outline: none;
  box-sizing: border-box;
}

.voip-field input:focus,
.voip-field textarea:focus,
.voip-field select:focus {
  border-color: var(--vp-brand);
  box-shadow: 0 0 0 3px var(--vp-brand-muted);
}

.voip-field textarea { min-height: 110px; resize: vertical; }

.voip-submit {
  margin-top: 20px;
  min-height: 46px;
  padding: 0 32px;
  border: none;
  border-radius: 8px;
  background: var(--vp-brand);
  color: var(--vp-brand-on);
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 18px var(--vp-brand-muted);
  transition: background 0.15s, opacity 0.15s;
}

.voip-submit:hover {
  background: var(--vp-brand-strong);
}

.voip-page #faq-section .faq-cms-section { background: #fff; }

.voip-page #faq-section .faq-cms-icon {
  color: var(--vp-brand);
}

.voip-page #faq-section .faq-cms-btn--open .faq-cms-q,
.voip-page #faq-section .faq-cms-btn--open .faq-cms-arrow {
  color: var(--vp-brand-strong);
}

/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .voip-hero__grid,
  .voip-lines,
  .voip-platforms,
  .voip-plans,
  .voip-features {
    grid-template-columns: 1fr;
  }

  .voip-feature--full { grid-column: 1; }

  .voip-process {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .voip-wrap { width: calc(100% - 24px); padding-top: 20px; }
  .voip-form-grid { grid-template-columns: 1fr; }
  .voip-submit { width: 100%; }
  .voip-process { grid-template-columns: 1fr; }
}
