.ter-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
  box-sizing: border-box;
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.ter-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  padding: 48px 0 36px;
}
.ter-hero-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  flex-shrink: 0;
  box-shadow: var(--sh-md);
}
.ter-hero-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-bottom: 4px;
}
.ter-hero-greeting {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.ter-hero-intro {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── Warning box ──────────────────────────────────────────────────── */
.ter-warning {
  background: #fffbeb;
  border: 1.5px solid #fcd34d;
  border-radius: var(--r-lg);
  padding: 14px 20px;
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ter-warning-icon {
  font-size: 16px;
  color: #d97706;
  flex-shrink: 0;
  margin-top: 2px;
}
.ter-warning-body { flex: 1; }
.ter-warning-title {
  font-size: 12px;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.ter-warning-text {
  font-size: 13.5px;
  color: #78350f;
  line-height: 1.6;
}
.ter-warning-link {
  font-weight: 700;
  color: #b45309;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ter-warning-link:hover { color: #92400e; }

/* ── Service card ─────────────────────────────────────────────────── */
.ter-service {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  margin-bottom: 24px;
  overflow: hidden;
  scroll-margin-top: 80px;
}
.ter-service-head {
  padding: 22px 28px 16px;
  border-bottom: 1px solid var(--border-lt);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: #fafbfc;
}
.ter-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.ter-service-badge-blue   { background: var(--blue-lt); color: var(--blue-dk); }
.ter-service-badge-violet { background: #f3effe; color: #6d3bd6; }
.ter-service-badge-teal   { background: #d1fae5; color: #0e7c5a; }
.ter-service-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.ter-title-sep {
  color: #9ca3af;
  font-weight: 400;
  margin: 0 6px;
  vertical-align: middle;
}
.ter-title-dur {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  padding: 2px 10px;
  margin-left: 8px;
  vertical-align: middle;
}

.ter-service.color-blue  .tw-tab-active { color: var(--blue-dk); border-bottom-color: var(--blue); }
.ter-service.color-violet .tw-tab-active { color: #6d28d9; border-bottom-color: #7c3aed; }
.ter-service.color-teal  .tw-tab-active { color: #065f46; border-bottom-color: #0e7c5a; }

.ter-service.color-blue  .tw-pay-btn { background: var(--blue); }
.ter-service.color-blue  .tw-pay-btn:hover { background: var(--blue-dk); }
.ter-service.color-violet .tw-pay-btn { background: #7c3aed; }
.ter-service.color-violet .tw-pay-btn:hover { background: #6d28d9; }
.ter-service.color-teal  .tw-pay-btn { background: #0e7c5a; }
.ter-service.color-teal  .tw-pay-btn:hover { background: #065f46; }

/* ── Payment widget ───────────────────────────────────────────────── */
.tw-section { margin-bottom: 18px; }
.tw-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-3);
  margin-bottom: 8px;
}
.tw-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.tw-btn {
  padding: 9px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  font-family: inherit;
  transition: border-color .15s, background .15s, color .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tw-btn:hover       { border-color: var(--blue); color: var(--blue); }
.tw-btn-active      { border-color: var(--blue); background: var(--blue-lt); color: var(--blue-dk); }
.tw-btn-yes         { border-color: #16a34a; background: #f0fdf4; color: #15803d; }
.tw-btn-nowy        { border-color: #d97706; background: #fffbeb; color: #b45309; }
.tw-btn-prod        { width: 100%; text-align: left; justify-content: space-between; }
.tw-btn-prod-active { border-color: var(--blue); background: var(--blue-lt); color: var(--blue-dk); }

/* ── Zakładki ─────────────────────────────────────────────────────── */
.tw-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 18px;
  gap: 0;
}
.tw-tab {
  padding: 9px 18px;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  cursor: pointer;
  font-family: inherit;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.tw-tab:hover { color: var(--blue); }
.tw-tab-active { color: var(--blue-dk); border-bottom-color: var(--blue); }
.tw-tab-content { }

.tw-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 14px 18px;
  margin-bottom: 14px;
}
.tw-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.tw-price-label {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 3px;
}
.tw-pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, transform .12s;
  width: 100%;
  box-sizing: border-box;
}
.tw-pay-btn:hover { background: var(--blue-dk); transform: translateY(-1px); color: #fff; }
.tw-pay-btn-sub { background: #7c3aed; }
.tw-pay-btn-sub:hover { background: #6d28d9; }
.tw-empty {
  padding: 16px;
  background: var(--bg);
  border-radius: var(--r);
  font-size: 13px;
  color: var(--text-3);
  text-align: center;
}

/* ── Tooltip ──────────────────────────────────────────────────────── */
.tw-tip-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
  vertical-align: middle;
}
.tw-tip-icon {
  color: var(--blue);
  font-size: 13px;
  cursor: pointer;
  opacity: .7;
  transition: opacity .15s;
}
.tw-tip-icon:hover { opacity: 1; }
.tw-tip {
  display: none;
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a2e4a;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: normal;
  width: 240px;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  pointer-events: none;
}
.tw-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1a2e4a;
}
.tw-tip-wrap:hover .tw-tip { display: block; }


/* ── Opis / Zapisy tabs ───────────────────────────────────────────── */
.ter-svc-tabs {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
  align-self: center;
}
.ter-svc-tab {
  padding: 7px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  cursor: pointer;
  font-family: inherit;
  transition: border-color .15s, background .15s, color .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ter-svc-tab:hover              { border-color: var(--blue); color: var(--blue); }
.ter-svc-tab-active             { border-color: var(--blue); background: var(--blue-lt); color: var(--blue-dk); }
.ter-service.color-violet .ter-svc-tab:hover  { border-color: #7c3aed; color: #7c3aed; }
.ter-service.color-violet .ter-svc-tab-active { border-color: #7c3aed; background: #f5f0ff; color: #6d28d9; }
.ter-service.color-teal   .ter-svc-tab:hover  { border-color: #0e7c5a; color: #0e7c5a; }
.ter-service.color-teal   .ter-svc-tab-active { border-color: #0e7c5a; background: #edfaf5; color: #065f46; }

/* ── Opis / Zapisy panels ─────────────────────────────────────────── */
.ter-svc-panel.ter-svc-opis {
  padding: 24px 28px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7;
}
.ter-svc-panel.ter-svc-zapisy {
  padding: 24px 28px;
}
.ter-service.color-blue   .ter-svc-panel.ter-svc-zapisy { background: #eef4fd; border-top: 3px solid var(--blue); }
.ter-service.color-violet .ter-svc-panel.ter-svc-zapisy { background: #f5f0ff; border-top: 3px solid #7c3aed; }
.ter-service.color-teal   .ter-svc-panel.ter-svc-zapisy { background: #edfaf5; border-top: 3px solid #0e7c5a; }

/* ── Opis panel typography ────────────────────────────────────────── */
.ter-opis-h {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin: 20px 0 6px;
}
.ter-opis-h:first-child { margin-top: 0; }
.ter-opis-h-warn { color: #b91c1c; }
.ter-opis-list {
  margin: 6px 0 10px;
  padding-left: 20px;
}
.ter-opis-list li { margin-bottom: 5px; }

/* ── Technical requirements ───────────────────────────────────────── */
.ter-tech-req {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-lt);
  font-size: 12px;
}
.ter-tech-label { font-weight: 600; color: var(--text-3); }
.ter-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--r-sm);
  font-weight: 700;
}
.ter-tech-teams { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; }
.ter-tech-meet   { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.ter-tech-opinie { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; text-decoration: none; }
.ter-tech-opinie:hover { background: #fef3c7; }
.ter-tech-sep    { color: #9ca3af; font-weight: 700; }

/* ── Klasyfikacja klientów ────────────────────────────────────────── */
.ter-classify {
  background: var(--blue-lt);
  border: 1.5px solid var(--blue-mid);
  border-radius: var(--r);
  padding: 10px 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.ter-classify-icon {
  color: var(--blue);
  font-size: 13px;
  flex-shrink: 0;
}
.ter-classify-text {
  font-size: 13px;
  color: var(--text-2);
  flex: 1;
  min-width: 0;
}
.ter-classify-text strong { color: var(--blue-dk); }
.ter-classify-cennik {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  padding: 4px 10px;
  border: 1px solid var(--blue-mid);
  border-radius: var(--r-sm);
  background: #fff;
  white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0;
}
.ter-classify-cennik:hover { background: #dbeafe; }

/* ── Therapy groups accordion ────────────────────────────────────── */
.ter-groups { display: flex; flex-direction: column; gap: 8px; }
.ter-group-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .15s;
}
.ter-group-item.ter-group-open { border-color: var(--blue-mid); }
.ter-service.color-teal .ter-group-item.ter-group-open { border-color: #6ee7b7; }
.ter-group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, color .15s;
}
.ter-group-btn:hover { background: var(--bg); color: var(--blue-dk); }
.ter-group-item.ter-group-open .ter-group-btn { background: var(--blue-lt); color: var(--blue-dk); }
.ter-service.color-teal .ter-group-item.ter-group-open .ter-group-btn { background: #edfaf5; color: #065f46; }
.ter-group-chevron {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--text-3);
  transition: transform .25s ease;
}
.ter-group-item.ter-group-open .ter-group-chevron { transform: rotate(180deg); color: var(--blue); }
.ter-service.color-teal .ter-group-item.ter-group-open .ter-group-chevron { color: #0e7c5a; }
.ter-group-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.ter-group-body-inner {
  padding: 16px 18px 18px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  border-top: 1px solid var(--border-lt);
}
.ter-group-warn {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fffbeb;
  border: 1.5px solid #fcd34d;
  border-radius: var(--r);
  padding: 12px 16px;
  margin: 14px 0;
  font-size: 13.5px;
  color: #78350f;
  line-height: 1.6;
}
.ter-group-warn i { color: #d97706; flex-shrink: 0; margin-top: 2px; }
.ter-group-warn p { margin: 0; }

/* ── FAQ accordion ────────────────────────────────────────────────── */
.faq-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
}
.faq-section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.faq-section-head i { font-size: 20px; color: var(--blue); }
.faq-section-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item.faq-open { border-color: var(--blue-mid); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  transition: background .15s, color .15s;
}
.faq-q:hover { background: var(--bg); color: var(--blue-dk); }
.faq-item.faq-open .faq-q { color: var(--blue-dk); background: var(--blue-lt); }
.faq-chevron {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--text-3);
  transition: transform .25s ease;
}
.faq-item.faq-open .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 20px 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
}
.faq-a-inner p { margin: 0 0 10px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner ul, .faq-a-inner ol { margin: 0 0 10px; padding-left: 20px; }
.faq-a-inner li { margin-bottom: 5px; }
.faq-a-inner strong { color: var(--text); }
.faq-qa {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-lt);
}
.faq-qa:last-child { border-bottom: none; padding-bottom: 0; }
.faq-qa-q { font-weight: 700; color: var(--text); margin-bottom: 6px !important; }

/* ── Groups head ──────────────────────────────────────────────────── */
.ter-groups-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-3);
  margin-bottom: 12px;
}
.ter-groups-head i { color: #0e7c5a; }

/* ── Widget sub note ─────────────────────────────────────────────── */
.tw-sub-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: #6d28d9;
  background: #f5f3ff;
  border: 1px solid #ddd6fe;
  border-radius: var(--r-sm);
  padding: 5px 10px;
  margin-bottom: 12px;
}
.tw-sub-note i { font-size: 10px; }

/* ── Widget product price ─────────────────────────────────────────── */
.tw-prod-price {
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 8px;
}

/* ── Widget cyclic payment info ───────────────────────────────────── */
.tw-cyclic-info {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #f5f3ff;
  border: 1.5px solid #ddd6fe;
  border-radius: var(--r);
  padding: 12px 16px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #4c1d95;
  line-height: 1.55;
}
.tw-cyclic-info i { color: #7c3aed; flex-shrink: 0; margin-top: 3px; }
.tw-cyclic-info strong { color: #6d28d9; }

/* ── Price info box ───────────────────────────────────────────────── */
.ter-price-info {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--blue-lt);
  border: 1.5px solid var(--blue-mid);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  margin-bottom: 24px;
}
.ter-price-info-icon { font-size: 18px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.ter-price-info-body { flex: 1; font-size: 13.5px; color: var(--text-2); line-height: 1.65; }
.ter-price-info-body strong { color: var(--blue-dk); }

/* ── Contact form ────────────────────────────────────────────────── */
.cf-wrap { max-width: 520px; }
.cf-wrap { max-width: 100%; }
.ter-channel-form {
  width: 100%;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  background: #f0f4ff;
  color: #1d4ed8;
  border: 1.5px solid #bfdbfe;
}
.ter-channel-form .ter-channel-icon { background: #dbeafe; color: #1d4ed8; }
.ter-channel-form .ter-channel-label { color: #1d4ed8; opacity: .7; margin: 0; padding: 0; }
.ter-channel-form:hover { filter: brightness(.93); }
.cf-toggle-chevron { margin-left: auto; transition: transform .2s; font-size: 13px; color: var(--text-3); }
.cf-toggle-open .cf-toggle-chevron { transform: rotate(180deg); }
.cf-body { margin-top: 18px; }
.cf-body.cf-form-hidden { display: none; }
.cf-toggle-open + .cf-body { display: block; }
.cf-intro {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--blue-lt);
  border: 1px solid var(--blue-mid);
  border-radius: var(--r);
  padding: 8px 12px;
  margin: 12px 0 16px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}
.cf-intro i { color: var(--blue); flex-shrink: 0; margin-top: 2px; font-size: 13px; }
.cf-form { display: flex; flex-direction: column; gap: 14px; }
.cf-field { display: flex; flex-direction: column; gap: 5px; }
.cf-label { font-size: 12px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .04em; }
.cf-input {
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}
.cf-input:focus { border-color: var(--blue); }
.cf-textarea { resize: vertical; min-height: 110px; }
.cf-check-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 2px; }
.cf-check { margin-top: 3px; flex-shrink: 0; accent-color: var(--blue); width: 16px; height: 16px; cursor: pointer; }
.cf-check-label { font-size: 13px; color: var(--text-2); line-height: 1.6; cursor: pointer; }
.cf-actions { margin-top: 4px; }
.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  font-family: inherit;
}
.cf-submit:hover { background: var(--blue-dk); }
.cf-submit:disabled { opacity: .6; cursor: not-allowed; }
.cf-msg-ok {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: #d1fae5; border: 1px solid #6ee7b7;
  border-radius: var(--r); color: #065f46; font-size: 13.5px; font-weight: 600;
}
.cf-msg-err {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 12px 16px; background: #fef2f2; border: 1px solid #fca5a5;
  border-radius: var(--r); color: #991b1b; font-size: 13.5px;
}

/* ── Kwestionariusz grupowy ──────────────────────────────────────── */
.ter-grp-form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--teal) 0%, #0a6b4d 100%);
  color: #fff;
  border-radius: var(--r-lg);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(14,124,90,.3);
  transition: transform .15s, box-shadow .15s, filter .15s;
  margin: 8px 0;
}
.ter-grp-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,124,90,.4);
  filter: brightness(1.08);
}
.ter-grp-form-btn i:first-child { font-size: 20px; }

/* ── Contact / Zapisz się ────────────────────────────────────────── */
.ter-contact-intro {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0 0 20px;
}
.ter-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.ter-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--r);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: filter .15s;
}
.ter-channel:hover { filter: brightness(.93); }
.ter-channel-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ter-channel-label { font-size: 12px; font-weight: 500; opacity: .75; }
.ter-channel-val   { font-size: 14px; font-weight: 700; }
.ter-channel-email { background: #eff6ff; color: #1d4ed8; border: 1.5px solid #bfdbfe; }
.ter-channel-email .ter-channel-icon { background: #dbeafe; color: #1d4ed8; }
.ter-channel-fb    { background: #eff6ff; color: #1877f2; border: 1.5px solid #bfdbfe; }
.ter-channel-fb    .ter-channel-icon { background: #1877f2; color: #fff; }
.ter-channel-teams { background: #f5f3ff; color: #5b21b6; border: 1.5px solid #ddd6fe; }
.ter-channel-teams .ter-channel-icon { background: #5b21b6; color: #fff; }
.ter-channel-teal  { background: var(--teal-bg); color: var(--teal); border: 1.5px solid #6ee7b7; }
.ter-channel-teal  .ter-channel-icon { background: var(--teal); color: #fff; }
.ter-contact-form {
  border-top: 1px solid var(--border-lt);
  padding-top: 22px;
  margin-top: 4px;
}
.ter-contact-form-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px;
}
.ter-contact-form-sub {
  font-size: 13px;
  color: var(--text-3);
  margin: 0 0 16px;
  line-height: 1.6;
}
.ter-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s;
}
.ter-form-btn:hover { background: var(--blue-dk); color: #fff; }

/* ── Responsive ───────────────────────────────────────────────────── */

@media (max-width: 600px) {
  .ter-page { padding: 0 14px 60px; }
  .ter-hero { grid-template-columns: 1fr; gap: 18px; text-align: center; padding: 32px 0 24px; }
  .ter-hero-photo { margin: 0 auto; }
  .ter-service-head { padding: 16px 16px 12px; flex-direction: column; gap: 10px; align-items: stretch; }
  .ter-svc-tabs { width: 100%; gap: 6px; }
  .ter-svc-tab { flex: 1; justify-content: center; padding: 9px 4px; font-size: 16px; gap: 0; }
  .tslab { display: none; }
  .ter-svc-panel.ter-svc-opis, .ter-svc-panel.ter-svc-zapisy { padding: 18px; }
  .ter-classify { padding: 18px; }
  .tw-price { font-size: 22px; }
  .tw-tabs { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
  .tw-tabs::-webkit-scrollbar { display: none; }
  .tw-tab { padding: 9px 14px; font-size: 12px; white-space: nowrap; flex-shrink: 0; }
  .ter-warning { flex-direction: column; gap: 8px; }
}
