:root {
  --teps-orange: #F7A70B;
  --teps-orange-dark: #e8961a;
  --teps-navy: #0c2436;
  --teps-navy-2: #0a2030;
  --ink: #1c1c1c;
  --muted: #7a7a7a;
  --line: #ececec;
  --green: #21a35b;
  --xgray: #c7c7c7;
  --cmp-sticky-top: 84px;
}

* {
  box-sizing: border-box;
}

/* Wide fluid container for the pricing page (48px side margins) */
@media(min-width:992px) {
  .pricing-page .container {
    max-width: 100%;
    padding-left: 48px;
    padding-right: 48px;
  }
}

a {
  text-decoration: none;
}

/* warm wash behind hero */
.hero {
  position: relative;
  padding: 48px 0 28px;
}

/* ---------- Brand logo ---------- */
.brand-logo {
  height: auto;
  width: 8rem;
  display: block;
}

.site-footer .brand-logo {
  height: 88px;
}

/* ---------- Navbar ---------- */

.teps-nav {
  padding: 15px 0;
  background: transparent;
  box-shadow: none;
  transition: background .3s ease, box-shadow .3s ease;
  padding-top: 3rem;
}

.teps-nav.scrolled {
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
  padding-top: 15px !important;
}

.teps-nav .nav-link {
  color: #555;
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: .35rem .9rem;
}

.teps-nav .nav-link:hover {
  color: var(--teps-navy);
}

.teps-nav .nav-link.active {
  color: var(--teps-navy);
  font-weight: 600;
}

.teps-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: -2px;
  width: 13px;
  height: 7px;
  border-radius: 12px;
  background: var(--teps-orange);
}

.lang-switch {
  color: #444;
  font-weight: 500;
  font-size: .92rem;
}

.lang-switch i {
  color: var(--teps-orange);
}

.login-link {
  color: #444;
  font-weight: 500;
  font-size: .92rem;
}

.login-link:hover {
  color: var(--teps-navy);
}

.btn-teps {
  background: var(--teps-orange);
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  transition: background .2s ease, transform .15s ease;
  padding: 12px 10px;
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.12);
}

.rounded-3 {
  border-radius: 14px !important;
}

.btn-teps:hover {
  background: var(--teps-orange-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- Hero ---------- */
.diamond {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  background: linear-gradient(135deg, var(--teps-orange), #cfcfcf);
  transform: rotate(45deg) translateY(-1px);
  border-radius: 2px;
  vertical-align: middle;
}

.hero-title {
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--teps-navy);
  margin-bottom: 14px;
}

.hero-sub {
  color: var(--muted);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 26px;
}

.billing-toggle {
  display: inline-flex;
  background: #f1f1f1;
  border-radius: 40px;
  padding: 5px;
  gap: 4px;
}

.bt-option {
  border: none;
  background: transparent;
  border-radius: 30px;
  padding: 9px 22px;
  font-weight: 500;
  font-size: .92rem;
  color: #666;
  cursor: pointer;
  transition: all .2s ease;
}

.bt-option.active {
  background: var(--teps-orange);
  color: #fff;
  box-shadow: 0 4px 10px rgba(245, 165, 36, .35);
}

/* ---------- Pricing cards ---------- */
.pricing-section {
  padding: 40px 0 70px;
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
  align-self: start;
}

.price-card.popular {
  border: 2px solid var(--teps-orange);
  overflow: visible;
  box-shadow: 0 24px 50px rgba(245, 165, 36, .22);
  z-index: 2;
  border-radius: 20px;
  margin-top: -4px;
  padding-top: 38px;
}

.popular-banner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--teps-orange);
  color: #fff;
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  padding: 9px 28px;
  border-radius: 30px;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(245, 165, 36, .35);
}

.price-card .pc-inner {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0;
}

.tier-badge {
  display: inline-block;
  background: transparent;
  color: var(--teps-navy);
  border-radius: 0;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 10px;
  align-self: center;
}

.tier-desc {
  color: #777;
  font-size: .82rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
  min-height: auto;
}

.price-line {
  margin-bottom: 18px;
  text-align: center;
}

.price-amt {
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--teps-navy);
}

.price-per {
  color: #999;
  font-size: .82rem;
}

.price-monthly {
  display: none;
}

body.bill-monthly .price-monthly {
  display: inline;
}

body.bill-monthly .price-annual {
  display: none;
}

.feat-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}

.feat-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .92rem;
  font-weight: 500;
  color: #333;
  padding: 8px 0;
}

.feat-list li.off {
  color: #bdbdbd;
  font-weight: 400;
}

.feat-list li .fi {
  width: 16px;
  text-align: center;
  font-size: .8rem;
}

.feat-list li .fi.yes {
  color: var(--teps-orange);
}

.feat-list li.off .fi {
  color: #cfcfcf;
}

.btn-sub {
  width: 100%;
  border-radius: 8px;
  padding: 13px;
  font-weight: 600;
  font-size: .95rem;
  background: var(--teps-navy);
  color: #fff;
  border: none;
  transition: all .2s ease;
}

.btn-sub:hover {
  background: var(--teps-navy-2);
  color: #fff;
}

.btn-sub.orange {
  background: var(--teps-orange);
}

.btn-sub.orange:hover {
  background: var(--teps-orange-dark);
}

/* ---------- Compare section ---------- */
.compare-section {
  padding: 50px 0 60px;
  background: linear-gradient(180deg, #fdfaf4, #fff 240px);
}

.section-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--teps-navy);
  margin-bottom: 34px;
}

.compare-wrap {
  overflow-x: auto;
}

@media(min-width:992px) {
  .compare-wrap {
    overflow: visible;
  }
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 880px;
}

.compare-table th,
.compare-table td {
  padding: 0;
}

.ct-label-col {
  width: 24%;
  vertical-align: bottom;
}

.compare-heading {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--teps-navy);
  padding: 0 0 18px 6px;
}

/* sticky header cards inside table */
.compare-head-row th {
  vertical-align: bottom;
  padding: 0 8px;
  position: sticky;
  top: var(--cmp-sticky-top);
  z-index: 900;
  background: #fff;
}

.compare-head-row th::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 60px;
  background: #fff;
}

.cmp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px 14px 0 0;
  border-bottom: none;
  padding: 26px 22px 14px;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, .03);
}

.cmp-card.popular {
  border: 2px solid var(--teps-orange);
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 -6px 20px rgba(245, 165, 36, .12);
}

.cmp-card.popular .cmp-banner {
  background: var(--teps-orange);
  color: #fff;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  padding: 7px;
  margin: 0 0 16px;
}

.cmp-card .cmp-pad {
  padding: 0;
}

.cmp-card.popular .cmp-pad {
  padding: 0 0 2px;
}

.cmp-badge {
  display: block;
  background: transparent;
  color: var(--teps-navy);
  border-radius: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
}

.cmp-desc {
  color: #777;
  font-size: .82rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
  min-height: auto;
}

.cmp-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--teps-navy);
  text-align: center;
  margin-bottom: 18px;
}

.cmp-price small {
  font-weight: 400;
  color: #999;
  font-size: .82rem;
}

.cmp-btn {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-size: .95rem;
  font-weight: 600;
  background: var(--teps-navy);
  color: #fff;
  transition: all .2s ease;
}

.cmp-btn:hover {
  background: var(--teps-navy-2);
  color: #fff;
}

.cmp-btn.orange {
  background: var(--teps-orange);
}

.cmp-btn.orange:hover {
  background: var(--teps-orange-dark);
}

/* category rows */
.cat-row td {
  padding: 12px 14px;
  font-weight: 600;
  color: var(--teps-navy);
  font-size: .9rem;
  background: #fafafa;
  border-top: 1px solid var(--line);
  cursor: pointer;
}

.cat-row .fa-chevron-down {
  font-size: .7rem;
  margin-right: 8px;
  color: #888;
  transition: transform .2s ease;
}

.cat-row.collapsed .fa-chevron-down {
  transform: rotate(-90deg);
}

.feat-row td {
  padding: 14px;
  font-size: .85rem;
  border-top: 1px solid #f4f4f4;
  text-align: center;
  color: #333;
}

.feat-row td:first-child {
  text-align: left;
  color: #555;
  font-weight: 500;
  padding-left: 14px;
}

.feat-row td.pop-col {
  color: var(--teps-orange);
}

.feat-row .ic-yes {
  color: var(--green);
  font-size: 1.05rem;
}

.feat-row .ic-no {
  color: var(--xgray);
  font-size: 1rem;
}

.val-muted {
  color: #9a9a9a;
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 30px 0 70px;
}

.cta-box {
  background: var(--teps-navy);
  border-radius: 18px;
  padding: 46px 20px;
  color: #fff;
}

.cta-title {
  font-weight: 700;
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.text-teps {
  color: var(--teps-orange);
}

.cta-sub {
  font-size: 1.05rem;
  margin-bottom: 22px;
  color: #e8e8e8;
}

/* ---------- Footer ---------- */
.site-footer {
  background: rgba(247, 167, 11, 0.04);
  padding: 50px 0 0;
  border-top: 1px solid #f1f1f1;
}

.footer-desc {
  color: #777;
  font-size: .85rem;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 18px;
}

.footer-contact li {
  color: #444;
  font-size: .88rem;
  margin-bottom: 8px;
}

.footer-contact i {
  color: var(--teps-orange);
  width: 18px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--teps-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: transform .15s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
}

.footer-col-title {
  font-weight: 600;
  color: var(--teps-navy);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #666;
  font-size: .88rem;
}

.footer-links a:hover {
  color: var(--teps-orange);
}

.footer-bottom {
  background: var(--teps-navy);
  color: #cdd6de;
  margin-top: 40px;
  padding: 16px 0;
  font-size: .82rem;
}

.footer-bottom a {
  color: #cdd6de;
}

.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom .divider {
  color: #5a6b78;
}

@media(max-width:991px) {
  .nav-actions {
    margin-top: 14px;
  }

  .hero-title {
    font-size: 1.5rem;
  }
}