/* =========================================
   LETI — Teachers pages styles
   (teachers.html + teacher.html)
   ========================================= */

.nav-link--active {
  color: var(--brand) !important;
  font-weight: 700;
}

/* =========================================
   BREADCRUMB (shared)
   ========================================= */
.pg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.pg-breadcrumb a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.pg-breadcrumb a:hover { color: #fff; }
.pg-breadcrumb__sep { color: rgba(255,255,255,0.4); }
.pg-breadcrumb__current { color: #fff; font-weight: 600; }

/* =========================================
   CATALOG HERO (teachers.html)
   ========================================= */
.tc-hero {
  position: relative;
  padding: 140px 0 90px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  overflow: hidden;
}
.tc-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 25%, rgba(255, 77, 126, 0.30), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(255, 214, 229, 0.18), transparent 50%);
  pointer-events: none;
}
.tc-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.tc-hero__shape--1 {
  width: 380px; height: 380px;
  top: -120px; right: -80px;
  background: rgba(255, 77, 126, 0.32);
}
.tc-hero__shape--2 {
  width: 320px; height: 320px;
  bottom: -120px; left: -60px;
  background: rgba(255, 214, 229, 0.16);
}
.tc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.tc-hero__inner .section-tag { margin-bottom: 16px; }

.tc-hero__title {
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
}
.tc-hero__title-hl {
  background: linear-gradient(120deg, #FFD6E5, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tc-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 740px;
  margin-bottom: 40px;
}

.tc-hero__topline {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 22px 28px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}
.tc-hero__top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tc-hero__top strong {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.tc-hero__top span {
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.tc-hero__top-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* =========================================
   WHY OUR TEACHERS
   ========================================= */
.tc-why {
  padding: 100px 0;
  background: var(--bg);
}
.tc-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.tc-why__card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.tc-why__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 15, 62, 0.25);
}
.tc-why__icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.tc-why__card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tc-why__card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =========================================
   CATALOG LIST
   ========================================= */
.tc-list {
  padding: 100px 0;
  background: var(--bg-light);
}
.tc-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.tc-chip {
  padding: 10px 20px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.tc-chip:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.tc-chip--active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.tc-list__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.tc-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  color: inherit;
}
.tc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 15, 62, 0.25);
}
.tc-card[hidden] { display: none; }

.tc-card__photo {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tc-card__photo--1 { background: linear-gradient(135deg, #8B0F3E, #b8145a); }
.tc-card__photo--2 { background: linear-gradient(135deg, #4F46E5, #7C3AED); }
.tc-card__photo--3 { background: linear-gradient(135deg, #EA580C, #F59E0B); }
.tc-card__photo--4 { background: linear-gradient(135deg, #0EA5E9, #0284C7); }
.tc-card__photo--5 { background: linear-gradient(135deg, #10B981, #059669); }

.tc-card__initials {
  color: #fff;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.tc-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 10px;
  background: rgba(255,255,255,0.95);
  color: var(--brand);
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.tc-card__body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.tc-card__name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.tc-card__role {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.tc-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  padding: 10px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  margin: 4px 0;
}
.tc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.tc-card__tag {
  padding: 4px 10px;
  background: var(--brand-pale);
  color: var(--brand);
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
}

.tc-list__more {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* =========================================
   PROFILE HERO (teacher.html)
   ========================================= */
.tp-hero {
  position: relative;
  padding: 130px 0 80px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  overflow: hidden;
}
.tp-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 77, 126, 0.32), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(255, 214, 229, 0.18), transparent 50%);
  pointer-events: none;
}
.tp-hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.tp-hero__shape--1 {
  width: 420px; height: 420px;
  top: -140px; right: -120px;
  background: rgba(255, 77, 126, 0.28);
}
.tp-hero__shape--2 {
  width: 360px; height: 360px;
  bottom: -140px; left: -80px;
  background: rgba(255, 214, 229, 0.14);
}
.tp-hero__inner {
  position: relative;
  z-index: 1;
}

.tp-hero__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 6px;
}
.tp-hero__photo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.tp-hero__photo {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #FF4D7E, var(--brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border: 4px solid rgba(255,255,255,0.12);
}
.tp-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tp-hero__photo-initials {
  color: #fff;
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 18px rgba(0,0,0,0.2);
}
.tp-hero__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(8px);
}
.tp-hero__status-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(16,185,129,0.8);
  animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(1.2); }
}

.tp-hero__info {
  display: flex;
  flex-direction: column;
}
.tp-hero__info .section-tag {
  align-self: flex-start;
  margin-bottom: 14px;
}
.tp-hero__name {
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin-bottom: 8px;
}
.tp-hero__role {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.tp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-bottom: 28px;
}
.tp-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.tp-hero__meta-icon { font-size: 16px; }

.tp-hero__stats {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 20px 26px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.tp-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tp-hero__stat strong {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.tp-hero__stat span {
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
}
.tp-hero__stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

.tp-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================
   ABOUT / SPECIALIZATION
   ========================================= */
.tp-section {
  padding: 100px 0;
  background: var(--bg);
}
.tp-section__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.tp-side {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tp-side__card {
  padding: 22px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.tp-side__card--accent {
  background: linear-gradient(135deg, var(--brand-pale) 0%, #fff 100%);
  border-color: rgba(139, 15, 62, 0.15);
}
.tp-side__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.tp-side__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14.5px;
  color: var(--text-secondary);
  font-weight: 500;
}
.tp-side__text {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tp-main__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.tp-main__lead {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 32px;
}

.tp-timeline {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  padding-left: 30px;
}
.tp-timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--brand), var(--brand-pale));
  border-radius: 2px;
}
.tp-timeline__item {
  position: relative;
  padding: 18px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.tp-timeline__item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--brand);
}
.tp-timeline__item:hover {
  border-color: rgba(139, 15, 62, 0.25);
  transform: translateX(4px);
}
.tp-timeline__year {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.tp-timeline__body h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.tp-timeline__body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =========================================
   ACHIEVEMENTS
   ========================================= */
.tp-achv {
  padding: 100px 0;
  background: var(--bg-light);
}
.tp-achv__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.tp-achv__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.tp-achv__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.tp-achv__icon {
  font-size: 32px;
  margin-bottom: 6px;
}
.tp-achv__card strong {
  font-size: 40px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.02em;
}
.tp-achv__card span {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}
.tp-achv__card small {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.45;
}

.tp-achv__card--accent {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-color: transparent;
  color: #fff;
}
.tp-achv__card--accent strong { color: #fff; }
.tp-achv__card--accent span { color: rgba(255,255,255,0.95); }
.tp-achv__card--accent small { color: rgba(255,255,255,0.7); }

/* =========================================
   METHOD (Teaching style)
   ========================================= */
.tp-method {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1A0A14 0%, var(--brand-dark) 100%);
  color: #fff;
  overflow: hidden;
}
.tp-method::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 77, 126, 0.18), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(184, 20, 90, 0.20), transparent 45%);
  pointer-events: none;
}
.tp-method .container { position: relative; z-index: 1; }
.tp-method .section-title { color: #fff; }
.tp-method .section-sub { color: rgba(255,255,255,0.78); }

.tp-method__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.tp-method__step {
  padding: 28px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.tp-method__step:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.25);
}
.tp-method__num {
  font-size: 32px;
  font-weight: 800;
  color: #FFD6E5;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1;
}
.tp-method__step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.tp-method__step p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.tp-method__quote {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  text-align: center;
}
.tp-method__quote-mark {
  position: absolute;
  top: -18px;
  left: 30px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #FF4D7E, var(--brand));
  border-radius: 50%;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 14px;
  box-shadow: 0 8px 24px rgba(255,77,126,0.4);
}
.tp-method__quote p {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 14px;
}
.tp-method__quote-author {
  font-size: 14px;
  color: #FFD6E5;
  font-weight: 700;
}

/* =========================================
   LINKED PRODUCTS
   ========================================= */
.tp-products {
  padding: 100px 0;
  background: var(--bg);
}
.tp-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tp-product {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  color: inherit;
  align-items: flex-start;
}
.tp-product:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 15, 62, 0.3);
  box-shadow: var(--shadow-md);
}
.tp-product:hover .tp-product__arrow {
  color: var(--brand);
  transform: translateX(4px);
}
.tp-product__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--brand-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.tp-product__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tp-product__tag {
  align-self: flex-start;
  padding: 3px 8px;
  background: var(--brand-pale);
  color: var(--brand);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tp-product__tag--free {
  background: rgba(16,185,129,0.1);
  color: #059669;
}
.tp-product__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.tp-product__body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.tp-product__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--text-secondary);
  font-weight: 600;
}
.tp-product__arrow {
  font-size: 22px;
  color: var(--text-muted);
  font-weight: 700;
  transition: all var(--transition);
  align-self: center;
}

/* =========================================
   RESULTS
   ========================================= */
.tp-results {
  padding: 100px 0;
  background: var(--bg-light);
}
.tp-results__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.tp-result {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}
.tp-result:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 15, 62, 0.2);
}

.tp-result__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tp-result__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.tp-result__avatar--1 { background: linear-gradient(135deg, #8B0F3E, #b8145a); }
.tp-result__avatar--2 { background: linear-gradient(135deg, #4F46E5, #7C3AED); }
.tp-result__avatar--3 { background: linear-gradient(135deg, #EA580C, #F59E0B); }
.tp-result__avatar--4 { background: linear-gradient(135deg, #0EA5E9, #0284C7); }

.tp-result__person {
  flex: 1;
  min-width: 0;
}
.tp-result__person strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.tp-result__person small {
  font-size: 12.5px;
  color: var(--text-muted);
}
.tp-result__badge {
  padding: 5px 10px;
  background: var(--brand-pale);
  color: var(--brand);
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
}

.tp-result__progress {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--brand-pale) 100%);
  border-radius: var(--radius-md);
}
.tp-result__from,
.tp-result__to {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
}
.tp-result__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tp-result__from strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-secondary);
}
.tp-result__to strong {
  font-size: 17px;
  font-weight: 800;
  color: var(--brand);
}
.tp-result__arrow {
  font-size: 20px;
  color: var(--brand);
  font-weight: 700;
}
.tp-result__quote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
}

.tp-results__more {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* =========================================
   APPLY FORM (inside final-cta)
   ========================================= */
.tp-apply {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto 14px;
  width: 100%;
}
.tp-apply__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tp-apply__input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-full);
  color: #fff;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 500;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
}
.tp-apply__input::placeholder {
  color: rgba(255,255,255,0.6);
}
.tp-apply__input:focus {
  outline: none;
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.5);
}
.tp-apply__btn {
  width: 100%;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .tc-hero,
  .tp-hero { padding: 110px 0 70px; }
  .tc-hero__topline { gap: 18px; }
  .tc-hero__top strong { font-size: 24px; }

  .tc-why__grid { grid-template-columns: repeat(2, 1fr); }
  .tc-list__grid { grid-template-columns: repeat(3, 1fr); }

  .tp-hero__grid { grid-template-columns: 220px 1fr; gap: 32px; }
  .tp-hero__photo { width: 220px; height: 220px; }
  .tp-hero__photo-initials { font-size: 72px; }
  .tp-hero__stats { gap: 16px; padding: 16px 20px; }
  .tp-hero__stat strong { font-size: 22px; }

  .tp-section__inner { grid-template-columns: 1fr; gap: 28px; }
  .tp-side { position: static; }

  .tp-achv__grid { grid-template-columns: repeat(2, 1fr); }
  .tp-method__grid { grid-template-columns: repeat(2, 1fr); }
  .tp-products__grid { grid-template-columns: 1fr; }
  .tp-results__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .tc-hero,
  .tp-hero { padding: 90px 0 60px; }
  .tc-hero__title { font-size: 32px; }
  .tc-hero__sub { font-size: 16px; }
  .tc-hero__topline { padding: 18px 20px; gap: 16px; }
  .tc-hero__top-divider { display: none; }
  .tc-hero__top { flex: 1; min-width: 120px; }

  .tc-why,
  .tc-list,
  .tp-section,
  .tp-achv,
  .tp-method,
  .tp-products,
  .tp-results { padding: 70px 0; }

  .tc-why__grid { grid-template-columns: 1fr; }
  .tc-list__grid { grid-template-columns: 1fr; }

  .tp-hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .tp-hero__photo-wrap { align-items: flex-start; }
  .tp-hero__photo { width: 160px; height: 160px; }
  .tp-hero__photo-initials { font-size: 56px; }
  .tp-hero__name { font-size: 32px; }
  .tp-hero__role { font-size: 16px; }
  .tp-hero__stats { padding: 14px 18px; gap: 14px; }
  .tp-hero__stat-divider { display: none; }
  .tp-hero__stat { flex: 1; min-width: 110px; }
  .tp-hero__stat strong { font-size: 20px; }

  .tp-achv__grid { grid-template-columns: 1fr; }
  .tp-achv__card strong { font-size: 34px; }

  .tp-method__grid { grid-template-columns: 1fr; }
  .tp-method__quote { padding: 32px 24px; }
  .tp-method__quote p { font-size: 16px; }

  .tp-result__progress { gap: 8px; padding: 12px; }
  .tp-result__from strong { font-size: 13px; }
  .tp-result__to strong { font-size: 15px; }

  .tp-apply__row { grid-template-columns: 1fr; }
}
