/* Shared custom page templates */
.ta-cp-page {
  padding-bottom: 48px;
}

.ta-cp-hero-wrap {
  margin-bottom: 24px;
}

@media (max-width: 991.98px) {
  .ta-cp-hero-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .ta-cp-hero-wrap .ta-cp-hero {
    border-radius: 0;
  }
}

.ta-cp-hero-bg {
  opacity: .1;
}

.ta-cp-hero-float {
  position: absolute;
  line-height: 1;
}

.ta-cp-hero-float--left {
  font-size: 7rem;
  width: 7rem;
  height: 7rem;
  top: -20px;
  left: -10px;
  transform: rotate(-12deg);
}

.ta-cp-hero-float--right {
  font-size: 5.25rem;
  width: 5.25rem;
  height: 5.25rem;
  right: -10px;
  bottom: 10%;
  transform: rotate(14deg);
}

.ta-cp-hero-float--center {
  font-size: 4rem;
  width: 4rem;
  height: 4rem;
  right: 20%;
  top: 14%;
}

.ta-cp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.76);
  margin-bottom: 12px;
}

.ta-cp-title {
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.05;
  font-weight: 800;
}

.ta-cp-lead {
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 60ch;
}

.ta-cp-stat-badge {
  min-height: 100%;
}

.ta-cp-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .82;
  margin-bottom: 4px;
}

.ta-cp-stat-value {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.ta-cp-grid {
  display: grid;
  gap: 16px;
}

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

.ta-cp-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ta-cp-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ta-cp-card,
.ta-cp-link-card,
.ta-cp-quote,
.ta-cp-contact-card,
.ta-cp-step,
.ta-cp-post-card {
  background: #fff;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 12px;
}

.ta-cp-card,
.ta-cp-contact-card,
.ta-cp-step,
.ta-cp-post-card {
  padding: 20px;
}

.ta-cp-link-card {
  display: block;
  padding: 20px;
  color: #27282c;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ta-cp-link-card:hover {
  color: #27282c;
  text-decoration: none;
  border-color: #6CD3C2;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.ta-cp-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef9f6;
  color: #2d5f57;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}

.ta-cp-card h3,
.ta-cp-link-card h3,
.ta-cp-contact-card h3,
.ta-cp-post-card h3,
.ta-cp-quote h3,
.ta-cp-step h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #27282c;
}

.ta-cp-card p,
.ta-cp-link-card p,
.ta-cp-contact-card p,
.ta-cp-step p,
.ta-cp-quote p,
.ta-cp-note,
.ta-cp-post-card p {
  margin: 0;
  color: #52525b;
  line-height: 1.7;
}

.ta-cp-link-arrow {
  margin-top: 14px;
  color: #6CD3C2;
  font-size: 13px;
  font-weight: 700;
}

.ta-cp-prose {
  color: #3f3f46;
}

.ta-cp-prose > *:first-child {
  margin-top: 0;
}

.ta-cp-prose h2,
.ta-cp-prose h3,
.ta-cp-prose h4 {
  color: #27282c;
  margin-top: 1.4em;
  margin-bottom: .55em;
  font-weight: 800;
}

.ta-cp-prose h2 {
  font-size: 1.45rem;
}

.ta-cp-prose h3 {
  font-size: 1.2rem;
}

.ta-cp-prose p,
.ta-cp-prose li {
  color: #52525b;
  line-height: 1.8;
}

.ta-cp-prose ul,
.ta-cp-prose ol {
  padding-left: 1.2rem;
}

.ta-cp-prose a {
  color: #2d8c7d;
  font-weight: 600;
}

.ta-cp-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ta-cp-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #52525b;
  line-height: 1.7;
}

.ta-cp-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #eef9f6;
  color: #2d8c7d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.ta-cp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.ta-cp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.ta-cp-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ta-cp-step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #6CD3C2;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 14px;
}

.ta-cp-quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ta-cp-quote {
  padding: 20px;
}

.ta-cp-quote-mark {
  font-size: 2rem;
  line-height: 1;
  color: #6CD3C2;
  margin-bottom: 10px;
}

.ta-cp-quote-author {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
  color: #27282c;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ta-cp-cta {
  text-align: center;
  padding: 32px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f0faf8 0%, #e9f6f3 100%);
  border: 1px solid #cfeee7;
}

.ta-cp-cta h2,
.ta-cp-cta h3 {
  margin: 0 0 10px;
  color: #27282c;
  font-weight: 800;
}

.ta-cp-cta p {
  max-width: 62ch;
  margin: 0 auto;
  color: #52525b;
}

.ta-cp-social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ta-cp-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 64px;
  background: #fff;
  border: 1px solid rgb(224,224,224);
  border-radius: 12px;
  color: #27282c;
  text-decoration: none;
  font-weight: 700;
  transition: border-color .18s ease, transform .18s ease;
}

.ta-cp-social-link:hover {
  color: #27282c;
  border-color: #6CD3C2;
  transform: translateY(-2px);
  text-decoration: none;
}

.ta-cp-contact-meta {
  display: grid;
  gap: 12px;
}

.ta-cp-contact-item {
  padding: 12px 0;
  border-top: 1px solid #f1f5f9;
}

.ta-cp-contact-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.ta-cp-contact-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #6b7280;
  font-weight: 700;
  margin-bottom: 4px;
}

.ta-cp-contact-value {
  color: #27282c;
  font-weight: 600;
}

.ta-cp-details {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.ta-cp-details + .ta-cp-details {
  margin-top: 12px;
}

.ta-cp-details summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 700;
  color: #27282c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.ta-cp-details summary::-webkit-details-marker {
  display: none;
}

.ta-cp-details summary::after {
  content: '+';
  font-size: 20px;
  color: #6CD3C2;
  flex-shrink: 0;
}

.ta-cp-details[open] summary::after {
  content: '\2212';
}

.ta-cp-details-body {
  border-top: 1px solid #f1f5f9;
  padding: 16px 18px 18px;
}

/* Remove module chrome when it only wraps a CTA */
.ta-fp-module:has(> .ta-cp-cta:only-child) {
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 24px;
}

/* ── Contact Form 7 – polished form styles ────────────────── */
.ta-cp-form-shell .wpcf7,
.ta-cp-form-shell .wpcf7-form {
  width: 100%;
}

.ta-cp-form-shell .wpcf7-form > p,
.ta-cp-form-shell .wpcf7-form > div {
  margin-bottom: 20px;
}

.ta-cp-form-shell .wpcf7-form > p:last-of-type {
  margin-bottom: 0;
}

.ta-cp-form-shell label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.ta-cp-form-shell input:not([type='submit']):not([type='checkbox']):not([type='radio']),
.ta-cp-form-shell textarea,
.ta-cp-form-shell select {
  display: block;
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 14px;
  background: #fff;
  font-size: 0.95rem;
  color: #27282c;
  transition: border-color .18s ease, box-shadow .18s ease;
  -webkit-appearance: none;
  appearance: none;
}

.ta-cp-form-shell input:not([type='submit']):focus,
.ta-cp-form-shell textarea:focus,
.ta-cp-form-shell select:focus {
  outline: none;
  border-color: #6CD3C2;
  box-shadow: 0 0 0 3px rgba(108, 211, 194, .2);
}

.ta-cp-form-shell textarea {
  min-height: 180px;
  resize: vertical;
}

.ta-cp-form-shell select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Submit button */
.ta-cp-form-shell input[type='submit'],
.ta-cp-form-shell .wpcf7-submit,
.ta-cp-button,
.ta-cp-page .btn-dark.ta-cp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 0;
  background: #27282c;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, transform .12s ease;
}

.ta-cp-form-shell input[type='submit']:hover,
.ta-cp-form-shell .wpcf7-submit:hover,
.ta-cp-button:hover,
.ta-cp-page .btn-dark.ta-cp-button:hover {
  color: #fff;
  background: #3d8b80;
  text-decoration: none;
  transform: translateY(-1px);
}

.ta-cp-form-shell input[type='submit']:active,
.ta-cp-form-shell .wpcf7-submit:active {
  transform: translateY(0);
}

/* Spinner */
.ta-cp-form-shell .wpcf7-spinner {
  margin-left: 12px;
}

/* Validation error per field */
.ta-cp-form-shell .wpcf7-not-valid {
  border-color: #ef4444;
}

.ta-cp-form-shell .wpcf7-not-valid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .15);
}

.ta-cp-form-shell .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ef4444;
}

/* Response output (success / error banner) */
.ta-cp-form-shell .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
}

.ta-cp-form-shell .wpcf7-form.invalid .wpcf7-response-output,
.ta-cp-form-shell .wpcf7-form.unaccepted .wpcf7-response-output,
.ta-cp-form-shell .wpcf7-form.failed .wpcf7-response-output {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.ta-cp-form-shell .wpcf7-form.sent .wpcf7-response-output {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
}

/* Acceptance / checkbox */
.ta-cp-form-shell .wpcf7-acceptance label,
.ta-cp-form-shell .wpcf7-checkbox label,
.ta-cp-form-shell .wpcf7-radio label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 0.9rem;
  color: #52525b;
  cursor: pointer;
}

.ta-cp-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ta-cp-post-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 16px;
  background: #f1f5f9;
}

.ta-cp-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ta-cp-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 10px;
}

.ta-cp-post-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #2d8c7d;
  font-weight: 700;
  text-decoration: none;
}

.ta-cp-post-more:hover {
  color: #1d655a;
}

.ta-cp-pagination .pagination {
  margin: 0;
}

.ta-cp-note-box {
  display: flex;
  align-items: flex-start;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 18px;
  background: #f8fafc;
  color: #475569;
}

@media (max-width: 991.98px) {
  .ta-cp-grid--4,
  .ta-cp-grid--3,
  .ta-cp-quotes,
  .ta-cp-steps,
  .ta-cp-post-grid,
  .ta-cp-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .ta-cp-grid--2,
  .ta-cp-grid--3,
  .ta-cp-grid--4,
  .ta-cp-quotes,
  .ta-cp-steps,
  .ta-cp-post-grid,
  .ta-cp-social-grid {
    grid-template-columns: 1fr;
  }

  .ta-cp-hero-float--left,
  .ta-cp-hero-float--right,
  .ta-cp-hero-float--center {
    display: none;
  }
}


/* ============================================================
   About / Om oss styles
   ============================================================ */

/* ── Founder intro card ───────────────────────────────────── */
.ta-about-founder {
  margin-bottom: 32px;
}

.ta-about-founder-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 12px;
  padding: 28px;
}

.ta-about-founder-avatar {
  flex-shrink: 0;
  width: auto;
  height: 160px;
  border-radius: 8px;
  background: linear-gradient(135deg, #6CD3C2 0%, #3d8b80 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  overflow: hidden;
}

.ta-about-founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ta-about-founder-content {
  flex: 1;
  min-width: 0;
}

.ta-about-founder-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: #27282c;
  margin: 0 0 4px;
}

.ta-about-founder-role {
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 600;
  margin: 0 0 16px;
}

.ta-about-quote {
  margin: 0;
  padding: 16px 20px;
  background: #f8faf9;
  border-left: 3px solid #6CD3C2;
  border-radius: 0 10px 10px 0;
  color: #3f3f46;
  font-size: 0.98rem;
  line-height: 1.7;
  font-style: italic;
  position: relative;
}

.ta-about-quote-mark {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: #6CD3C2;
  font-style: normal;
  position: absolute;
  top: 8px;
  left: 12px;
  opacity: .25;
}

/* ── Highlight callout (mid-story) ────────────────────────── */
.ta-about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 24px 0;
  padding: 20px;
  background: #f0faf8;
  border-radius: 12px;
  border: 1px solid #d9f0eb;
}

.ta-about-highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: #3d8b80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid #cfeee7;
}

.ta-about-highlight p {
  margin: 0;
  color: #2d5f57;
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── Vision banner ────────────────────────────────────────── */
.ta-about-vision {
  text-align: center;
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, #27282c 0%, #2d5f57 60%, #3d8b80 100%);
  border-radius: 12px;
  color: #fff;
}

.ta-about-vision > i {
  font-size: 1.5rem;
  color: #6CD3C2;
  margin-bottom: 10px;
  display: block;
}

.ta-about-vision p {
  max-width: 56ch;
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.6;
}

.ta-about-vision-label {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.65);
}

/* ── Value cards ──────────────────────────────────────────── */
.ta-about-value-card {
  background: #fff;
  border: 1px solid rgb(224, 224, 224);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}

.ta-about-value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.ta-about-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef9f6 0%, #d9f0eb 100%);
  color: #2d5f57;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.ta-about-value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #27282c;
  margin: 0 0 8px;
}

.ta-about-value-card p {
  margin: 0;
  color: #52525b;
  line-height: 1.7;
  font-size: 0.92rem;
}

/* ── Story section prose spacing ──────────────────────────── */
.ta-about-story .ta-cp-prose p {
  font-size: 0.98rem;
}

/* ── About responsive ────────────────────────────────────── */
@media (max-width: 767.98px) {
  .ta-about-founder-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .ta-about-quote {
    border-left: none;
    border-top: 3px solid #6CD3C2;
    border-radius: 0 0 10px 10px;
    text-align: left;
  }

  .ta-about-highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ta-about-vision p {
    font-size: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BLI EN KREATÖR  (ta-bek-*)
   ═══════════════════════════════════════════════════════════════ */

/* ── Stats Bar ─────────────────────────────────────────────── */
.ta-bek-stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  margin: -2rem auto 2.5rem;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.ta-bek-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
}

.ta-bek-stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #27282c;
  line-height: 1.2;
}

.ta-bek-stat-label {
  font-size: .8rem;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 500;
}

.ta-bek-stats-divider {
  width: 1px;
  height: 36px;
  background: #e4e4e7;
}

/* ── Benefit Cards ─────────────────────────────────────────── */
.ta-bek-benefit-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  border: 1px solid #f0f0f0;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ta-bek-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.ta-bek-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.ta-bek-benefit-icon svg {
  width: 24px;
  height: 24px;
}

.ta-bek-benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #27282c;
  margin: 0 0 .5rem;
}

.ta-bek-benefit-card p {
  font-size: .925rem;
  color: #52525b;
  line-height: 1.65;
  margin: 0;
}

/* ── Earnings Section ──────────────────────────────────────── */
.ta-bek-earnings-section {
  background: linear-gradient(135deg, #27282c 0%, #2d5f57 60%, #3d8b80 100%);
  border-radius: 20px;
  padding: 3.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  color: #fff;
}

.ta-bek-earnings-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: center;
}

.ta-bek-earnings-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: .5rem 0 1rem;
  line-height: 1.3;
}

.ta-bek-earnings-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.ta-bek-earnings-example {
  background: rgba(255, 255, 255, .08);
  border-radius: 14px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, .1);
}

.ta-bek-earnings-example-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1rem;
  font-weight: 500;
}

.ta-bek-earnings-bar {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  height: 44px;
  background: rgba(255, 255, 255, .1);
}

.ta-bek-earnings-bar-fill {
  background: #6CD3C2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
}

.ta-bek-earnings-bar-fill span {
  font-weight: 700;
  font-size: .85rem;
  color: #27282c;
  white-space: nowrap;
}

.ta-bek-earnings-bar-rest {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.ta-bek-earnings-bar-rest span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
  white-space: nowrap;
}

.ta-bek-earnings-details {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.ta-bek-earnings-details span {
  font-size: .8rem;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: .35rem;
}

.ta-bek-earnings-details svg {
  color: #6CD3C2;
  flex-shrink: 0;
}

/* ── Donut Chart ───────────────────────────────────────────── */
.ta-bek-earnings-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ta-bek-earnings-donut {
  position: relative;
  width: 200px;
  height: 200px;
}

.ta-bek-donut-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ta-bek-donut-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ta-bek-donut-value {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.ta-bek-donut-label {
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
  margin-top: .25rem;
}

/* ── Steps ─────────────────────────────────────────────────── */
.ta-bek-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.ta-bek-step {
  text-align: center;
  flex: 1;
  max-width: 200px;
}

.ta-bek-step-icon-wrap {
  position: relative;
  margin-bottom: 1rem;
}

.ta-bek-step-number {
  position: absolute;
  top: -6px;
  right: calc(50% - 32px);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #6CD3C2;
  color: #27282c;
  font-size: .7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.ta-bek-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6CD3C2 0%, #3d8b80 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.ta-bek-step-icon svg {
  width: 24px;
  height: 24px;
}

.ta-bek-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #27282c;
  margin: 0 0 .35rem;
}

.ta-bek-step p {
  font-size: .85rem;
  color: #71717a;
  line-height: 1.5;
  margin: 0;
}

.ta-bek-step-connector {
  display: flex;
  align-items: center;
  padding-top: 18px;
  flex-shrink: 0;
}

/* ── Premium Section ───────────────────────────────────────── */
.ta-bek-premium {
  background: linear-gradient(135deg, #27282c 0%, #2d5f57 60%, #3d8b80 100%);
  border-radius: 20px;
  padding: 3.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  color: #fff;
}

.ta-bek-premium-inner {
  text-align: center;
}

.ta-bek-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  padding: .4rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 1.25rem;
}

.ta-bek-premium h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .75rem;
}

.ta-bek-premium-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
}

.ta-bek-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.ta-bek-premium-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, .06);
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .08);
}

.ta-bek-premium-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(245, 158, 11, .15);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ta-bek-premium-item-icon svg {
  width: 18px;
  height: 18px;
}

.ta-bek-premium-item p {
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
  line-height: 1.55;
  margin: 0;
}

.ta-bek-premium-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .75rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.ta-bek-premium-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, .35);
  color: #fff;
}

/* ── Testimonials ──────────────────────────────────────────── */
.ta-bek-testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.ta-bek-testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #f0f0f0;
  position: relative;
  transition: transform .2s ease;
}

.ta-bek-testimonial:hover {
  transform: translateY(-3px);
}

.ta-bek-testimonial--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #f0fdf9 0%, #f8fafc 100%);
  border-color: #6CD3C2;
}

.ta-bek-testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: #6CD3C2;
  font-family: Georgia, serif;
  margin-bottom: -.5rem;
}

.ta-bek-testimonial blockquote {
  margin: 0;
  padding: 0;
  border: none;
}

.ta-bek-testimonial blockquote p {
  font-size: .925rem;
  color: #52525b;
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

.ta-bek-testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.ta-bek-testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6CD3C2, #3d8b80);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.ta-bek-testimonial-author span {
  font-size: .85rem;
  font-weight: 600;
  color: #27282c;
}

/* ── Final CTA ─────────────────────────────────────────────── */
.ta-bek-final-cta {
  background: linear-gradient(135deg, #27282c 0%, #2d5f57 60%, #3d8b80 100%);
  border-radius: 20px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: #fff;
}

.ta-bek-final-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #6CD3C2;
}

.ta-bek-final-cta h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .75rem;
}

.ta-bek-final-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── BEK Responsive ───────────────────────────────────────── */
@media (max-width: 991.98px) {
  .ta-bek-stats-bar {
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1.5rem;
  }

  .ta-bek-stats-divider {
    display: none;
  }

  .ta-bek-stat {
    min-width: 120px;
  }

  .ta-bek-earnings-inner {
    grid-template-columns: 1fr;
  }

  .ta-bek-earnings-right {
    display: none;
  }

  .ta-bek-earnings-section {
    padding: 2.5rem 1.75rem;
  }

  .ta-bek-steps {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .ta-bek-step-connector {
    display: none;
  }

  .ta-bek-step {
    min-width: 140px;
  }

  .ta-bek-premium {
    padding: 2.5rem 1.75rem;
  }

  .ta-bek-testimonials {
    grid-template-columns: 1fr;
  }

  .ta-bek-testimonial--featured {
    grid-column: auto;
  }
}

@media (max-width: 767.98px) {
  .ta-bek-stats-bar {
    margin-top: -1rem;
  }

  .ta-bek-stat-number {
    font-size: 1.25rem;
  }

  .ta-bek-earnings-section,
  .ta-bek-premium,
  .ta-bek-final-cta {
    padding: 2rem 1.25rem;
    border-radius: 14px;
  }

  .ta-bek-earnings-title,
  .ta-bek-premium h2,
  .ta-bek-final-cta h2 {
    font-size: 1.35rem;
  }

  .ta-bek-earnings-details {
    flex-direction: column;
    gap: .5rem;
  }

  .ta-bek-benefit-card {
    padding: 1.5rem 1.25rem;
  }

  .ta-bek-premium-grid {
    grid-template-columns: 1fr;
  }
}


/* ═══════════════════════════════════════════════════════════════
   SUPPORT  (ta-support-*)
   ═══════════════════════════════════════════════════════════════ */

/* ── Grid override: sidebar + main ─────────────────────────── */
.ta-cp-grid--support {
  grid-template-columns: 1fr 1.6fr;
}

/* ── Tip callout ───────────────────────────────────────────── */
.ta-support-tip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: #f0faf8;
  border-radius: 12px;
  border: 1px solid #d9f0eb;
}

.ta-support-tip-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  color: #3d8b80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid #cfeee7;
}

.ta-support-tip-content strong {
  display: block;
  color: #27282c;
  margin-bottom: 4px;
}

.ta-support-tip-content p {
  margin: 0;
  color: #2d5f57;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── Contact list with icons ──────────────────────────────── */
.ta-support-contact-list {
  display: grid;
  gap: 0;
}

.ta-support-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid #f1f5f9;
}

.ta-support-contact-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.ta-support-contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef9f6;
  color: #2d5f57;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

/* ── Small info note inside contact panel ─────────────────── */
.ta-support-help-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.6;
}

.ta-support-help-note > i {
  flex-shrink: 0;
  margin-top: 2px;
  color: #94a3b8;
}

/* ── Support responsive ──────────────────────────────────── */
@media (max-width: 991.98px) {
  .ta-cp-grid--support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .ta-support-tip {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}


/* ═══════════════════════════════════════════════════════════
   404 PAGE
   ═══════════════════════════════════════════════════════════ */
.ta-404 {
  padding: 72px 0 80px;
}

/* ── Hero ── */
.ta-404-hero {
  max-width: 640px;
  margin: 0 auto 56px;
}

.ta-404-code {
  display: block;
  font-size: clamp(6rem, 14vw, 10rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #6CD3C2 0%, #3d8b80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -4px;
}

.ta-404-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 14px;
}

.ta-404-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #555;
  max-width: 52ch;
  margin: 0 auto 32px;
}

/* ── Search bar ── */
.ta-404-search {
  max-width: 480px;
  margin: 0 auto;
}

.ta-404-search-inner {
  display: flex;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.ta-404-search-inner:focus-within {
  border-color: #6CD3C2;
  box-shadow: 0 0 0 4px rgba(108,211,194,.15);
}

.ta-404-search-input {
  flex: 1;
  border: 0;
  padding: 14px 18px;
  font-size: .95rem;
  background: #fff;
  outline: none;
}

.ta-404-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  border: 0;
  background: linear-gradient(135deg, #6CD3C2 0%, #3d8b80 100%);
  color: #fff;
  cursor: pointer;
  transition: opacity .2s;
}

.ta-404-search-btn:hover {
  opacity: .88;
}

/* ── Category cards ── */
.ta-404-cats {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.ta-404-cats-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.ta-404-cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ta-404-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 14px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  text-decoration: none;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.ta-404-cat-card:hover {
  border-color: #6CD3C2;
  box-shadow: 0 4px 16px rgba(108,211,194,.18);
  transform: translateY(-2px);
}

.ta-404-cat-name {
  font-weight: 700;
  font-size: .95rem;
  color: #1a1a2e;
}

.ta-404-cat-count {
  font-size: .8rem;
  color: #888;
}

/* ── CTA buttons ── */
.ta-404-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ta-404-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: .95rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .2s;
}

.ta-404-btn-primary {
  background: linear-gradient(135deg, #6CD3C2 0%, #3d8b80 100%);
  color: #fff;
}

.ta-404-btn-primary:hover {
  box-shadow: 0 4px 14px rgba(108,211,194,.35);
  transform: translateY(-1px);
  color: #fff;
}

.ta-404-btn-outline {
  border: 2px solid #e0e0e0;
  color: #1a1a2e;
  background: #fff;
}

.ta-404-btn-outline:hover {
  border-color: #6CD3C2;
  color: #3d8b80;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .ta-404 {
    padding: 48px 0 56px;
  }

  .ta-404-cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 479.98px) {
  .ta-404-cats-grid {
    grid-template-columns: 1fr;
  }

  .ta-404-cta {
    flex-direction: column;
    align-items: center;
  }

  .ta-404-btn {
    width: 100%;
    justify-content: center;
  }
}
