:root {
  --tp-bg: #f4f6f8;
  --tp-surface: #ffffff;
  --tp-soft: #f8fafc;
  --tp-ink: #172033;
  --tp-text: #3f4a5f;
  --tp-muted: #6b7280;
  --tp-border: #dde4ee;
  --tp-orange: #ff7a1a;
  --tp-green: #20a884;
  --tp-blue: #2b72d6;
  --tp-shadow: 0 18px 48px rgba(20, 31, 51, 0.08);
  --tp-radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--tp-text);
  background: var(--tp-bg);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

.tp-page {
  min-height: 100vh;
  background: var(--tp-bg);
}

.tp-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.tp-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--tp-border);
  backdrop-filter: blur(14px);
}

.tp-header .tp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.tp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.tp-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--tp-ink);
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
  overflow: hidden;
  white-space: nowrap;
}

.tp-brand-mark.has-logo {
  background: #ffffff;
  border: 1px solid var(--tp-border);
}

.tp-brand-mark.has-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tp-brand strong,
.tp-brand small {
  display: block;
}

.tp-brand strong {
  color: var(--tp-ink);
  font-size: 16px;
  line-height: 22px;
}

.tp-brand small {
  color: var(--tp-muted);
  line-height: 18px;
}

.tp-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--tp-text);
  font-size: 14px;
  font-weight: 700;
}

.tp-nav a {
  white-space: nowrap;
}

.tp-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--tp-ink);
  background: #ffffff;
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius);
  font-weight: 900;
  cursor: pointer;
}

.tp-btn svg {
  width: 17px;
  height: 17px;
}

.tp-btn-primary {
  color: #ffffff;
  background: var(--tp-orange);
  border-color: var(--tp-orange);
}

.tp-btn-dark {
  color: #ffffff;
  background: var(--tp-ink);
  border-color: var(--tp-ink);
}

.tp-section {
  padding: 76px 0;
}

.tp-section-title {
  margin-bottom: 26px;
}

.tp-section-title span {
  display: inline-flex;
  color: var(--tp-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.tp-section-title h2 {
  margin: 10px 0 0;
  color: var(--tp-ink);
  font-size: 34px;
  line-height: 42px;
  letter-spacing: 0;
}

.tp-section-title p {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--tp-muted);
  font-size: 16px;
  line-height: 26px;
}

.tp-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 68px;
  background: #ffffff;
}

.tp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.tp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 11px;
  color: #7a3c0d;
  background: #fff2e6;
  border: 1px solid rgba(255, 122, 26, 0.22);
  border-radius: 999px;
  font-weight: 900;
}

.tp-hero h1 {
  margin: 18px 0 0;
  color: var(--tp-ink);
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0;
}

.tp-hero p {
  margin: 18px 0 0;
  color: var(--tp-text);
  font-size: 18px;
  line-height: 30px;
}

.tp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.tp-hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #e9edf2;
  border-radius: var(--tp-radius);
  box-shadow: var(--tp-shadow);
}

.tp-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.tp-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.tp-trust div {
  padding: 14px;
  background: var(--tp-soft);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius);
}

.tp-trust strong,
.tp-trust span {
  display: block;
}

.tp-trust strong {
  color: var(--tp-ink);
  font-size: 20px;
  line-height: 26px;
}

.tp-trust span {
  margin-top: 3px;
  color: var(--tp-muted);
  line-height: 20px;
}

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

.tp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.tp-card {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius);
  box-shadow: 0 10px 28px rgba(20, 31, 51, 0.04);
}

.tp-card i {
  color: var(--tp-orange);
}

.tp-card strong,
.tp-card span,
.tp-card p {
  display: block;
}

.tp-card strong {
  color: var(--tp-ink);
  font-size: 18px;
  line-height: 24px;
}

.tp-card span,
.tp-card p {
  margin-top: 8px;
  color: var(--tp-muted);
  line-height: 24px;
}

.tp-feature-card {
  min-height: 178px;
}

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

.tp-case-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius);
}

.tp-case-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tp-case-card div {
  padding: 16px;
}

.tp-process {
  counter-reset: step;
}

.tp-process .tp-card {
  position: relative;
  padding-top: 54px;
}

.tp-process .tp-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 18px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  background: var(--tp-orange);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.tp-faq {
  display: grid;
  gap: 10px;
}

.tp-faq details {
  background: #ffffff;
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius);
}

.tp-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--tp-ink);
  font-weight: 900;
}

.tp-faq p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--tp-muted);
  line-height: 24px;
}

.tp-cta {
  padding: 44px 0;
  color: #ffffff;
  background: var(--tp-ink);
}

.tp-cta .tp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tp-cta h2 {
  margin: 0;
  font-size: 30px;
  line-height: 38px;
  letter-spacing: 0;
}

.tp-cta span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.tp-footer {
  padding: 28px 0;
  color: var(--tp-muted);
  background: #ffffff;
  border-top: 1px solid var(--tp-border);
}

.tp-footer .tp-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.tp-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  padding: 12px 14px;
  color: #ffffff;
  background: var(--tp-ink);
  border-radius: var(--tp-radius);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.tp-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tp-back-top {
  position: fixed;
  right: 22px;
  bottom: 76px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--tp-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--tp-border);
  border-radius: 50%;
  box-shadow: var(--tp-shadow);
  opacity: 0;
  pointer-events: none;
}

.tp-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.tp-company {
  --tp-bg: #f2f4f6;
  --tp-orange: #305f92;
  --tp-ink: #18212c;
  --tp-border: #d8dee6;
  --tp-shadow: 0 20px 54px rgba(18, 29, 45, 0.1);
}

.tp-product {
  --tp-bg: #f6f2ec;
  --tp-orange: #ff7a1a;
  --tp-ink: #27231f;
  --tp-border: #e2d6c8;
}

.tp-store {
  --tp-orange: #db5a7a;
  --tp-ink: #251b26;
}

.tp-portfolio {
  --tp-bg: #f5f2ed;
  --tp-orange: #9b6b35;
  --tp-ink: #231f1a;
  --tp-text: #4a4238;
  --tp-muted: #756c60;
  --tp-border: #e0d7ca;
}

.tp-company .tp-header {
  background: rgba(247, 249, 251, 0.96);
}

.tp-company .tp-header .tp-container {
  width: min(1280px, calc(100% - 40px));
  gap: 14px;
}

.tp-company .tp-brand {
  min-width: 190px;
}

.tp-company .tp-nav {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  gap: 12px;
  font-size: 13px;
}

.tp-company .tp-actions .tp-btn {
  padding-right: 13px;
  padding-left: 13px;
}

.tp-company .tp-brand-mark {
  border-radius: 6px;
  background: #18212c;
}

.tp-company-board {
  padding: 74px 0 0;
  background: #f7f9fb;
}

.tp-company-board > .tp-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
}

.tp-company-board-main {
  padding: 46px 0 54px;
}

.tp-company-board-main h1 {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--tp-ink);
  font-size: 58px;
  line-height: 68px;
}

.tp-company-board-main p {
  max-width: 740px;
  margin: 18px 0 0;
  color: var(--tp-text);
  font-size: 18px;
  line-height: 31px;
}

.tp-company-contact {
  align-self: end;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: #18212c;
  border-radius: 4px 4px 0 0;
}

.tp-company-contact span,
.tp-company-contact strong,
.tp-company-contact p {
  display: block;
}

.tp-company-contact > span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
}

.tp-company-contact strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 30px;
}

.tp-company-contact p {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 22px;
}

.tp-company-contact .tp-btn:not(.tp-btn-dark) {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}

.tp-company-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #18212c;
}

.tp-company-facts div {
  min-height: 104px;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.tp-company-facts div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.tp-company-facts span,
.tp-company-facts strong {
  display: block;
}

.tp-company-facts span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
}

.tp-company-facts strong {
  margin-top: 7px;
  color: #f8fafc;
  line-height: 22px;
}

.tp-company-hero {
  padding: 96px 0 72px;
  background:
    linear-gradient(90deg, #f7f9fb 0%, #f7f9fb 54%, #e7ecf2 54%, #e7ecf2 100%);
}

.tp-company-hero .tp-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
}

.tp-company-hero .tp-kicker {
  color: #274d73;
  background: #eaf0f6;
  border-color: #cbd8e5;
  border-radius: 6px;
}

.tp-company-hero h1 {
  max-width: 720px;
  font-size: 54px;
  line-height: 64px;
}

.tp-company-hero .tp-hero-media {
  min-height: 500px;
  border-radius: 4px;
  box-shadow: 0 26px 70px rgba(18, 29, 45, 0.16);
}

.tp-company-hero .tp-hero-media img {
  min-height: 500px;
}

.tp-company-proof {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  color: #f9fbfd;
  background: rgba(24, 33, 44, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.tp-company-proof span,
.tp-company-proof strong,
.tp-company-proof small {
  display: block;
}

.tp-company-proof span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 900;
}

.tp-company-proof strong {
  margin-top: 5px;
  font-size: 22px;
  line-height: 28px;
}

.tp-company-proof small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 20px;
}

.tp-company-strip {
  background: #18212c;
}

.tp-company-strip .tp-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tp-company-strip div {
  min-height: 94px;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.tp-company-strip div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.tp-company-strip span,
.tp-company-strip strong {
  display: block;
}

.tp-company-strip span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
}

.tp-company-strip strong {
  margin-top: 7px;
  color: #f8fafc;
  line-height: 22px;
}

.tp-company-services {
  display: grid;
  border-top: 1px solid var(--tp-border);
}

.tp-company-service {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--tp-border);
}

.tp-company-service > span {
  color: #8a98a8;
  font-size: 22px;
  font-weight: 900;
  line-height: 30px;
}

.tp-company-service strong,
.tp-company-service p {
  display: block;
}

.tp-company-service strong {
  color: var(--tp-ink);
  font-size: 24px;
  line-height: 32px;
}

.tp-company-service p {
  max-width: 760px;
  margin: 7px 0 0;
  color: var(--tp-text);
  font-size: 16px;
  line-height: 26px;
}

.tp-company .tp-cta {
  background: #18212c;
}

.tp-product .tp-header {
  background: rgba(252, 248, 241, 0.96);
}

.tp-product .tp-brand-mark {
  color: #3b2412;
  background: #ffd9b8;
  border-radius: 6px;
}

.tp-product-desk {
  padding: 56px 0 0;
  background: #fff8ef;
}

.tp-product-desk > .tp-container {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 310px;
  gap: 18px;
  align-items: stretch;
}

.tp-product-catalog,
.tp-product-inquiry {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
  background: #fffaf4;
  border: 1px solid #e5d4bf;
  border-radius: 4px 4px 0 0;
}

.tp-product-catalog span,
.tp-product-inquiry > span {
  color: #98603a;
  font-size: 12px;
  font-weight: 900;
}

.tp-product-catalog a {
  padding: 10px 0;
  color: var(--tp-ink);
  border-bottom: 1px solid #eadbc9;
  font-weight: 900;
}

.tp-product-summary {
  padding: 28px 26px 0;
}

.tp-product-summary h1 {
  margin: 18px 0 0;
  color: var(--tp-ink);
  font-size: 50px;
  line-height: 60px;
}

.tp-product-summary p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--tp-text);
  font-size: 17px;
  line-height: 29px;
}

.tp-product-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 36px;
  background: #2b241d;
}

.tp-product-steps div {
  min-height: 116px;
  padding: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.tp-product-steps div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.tp-product-steps span,
.tp-product-steps strong,
.tp-product-steps small {
  display: block;
}

.tp-product-steps span {
  color: #f7a55b;
  font-size: 12px;
  font-weight: 900;
}

.tp-product-steps strong {
  margin-top: 7px;
  color: #fffaf4;
  font-size: 18px;
  line-height: 24px;
}

.tp-product-steps small {
  margin-top: 5px;
  color: rgba(255, 250, 244, 0.66);
  line-height: 20px;
}

.tp-product-inquiry strong {
  color: var(--tp-ink);
  font-size: 22px;
  line-height: 29px;
}

.tp-product-inquiry ul {
  display: grid;
  gap: 7px;
  margin: 4px 0 6px;
  padding: 0;
  color: var(--tp-text);
  list-style: none;
}

.tp-product-inquiry li {
  padding: 9px 10px;
  background: #ffffff;
  border: 1px solid #eee0d0;
  border-radius: 4px;
  line-height: 20px;
}

.tp-product-hero {
  padding: 78px 0 58px;
  background:
    linear-gradient(180deg, #fff8ef 0%, #fff8ef 72%, #f6f2ec 72%, #f6f2ec 100%);
}

.tp-product-hero .tp-hero-grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 38px;
}

.tp-product-hero h1 {
  font-size: 48px;
  line-height: 58px;
}

.tp-product-hero .tp-hero-media {
  min-height: 430px;
  border: 1px solid #dfcdb9;
  border-radius: 4px;
  box-shadow: 0 20px 56px rgba(100, 62, 25, 0.16);
}

.tp-product-hero .tp-hero-media img {
  min-height: 430px;
}

.tp-quote-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(300px, calc(100% - 36px));
  padding: 17px;
  background: #fffaf4;
  border: 1px solid #e6d0b8;
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(60, 39, 19, 0.14);
}

.tp-quote-panel span,
.tp-quote-panel strong {
  display: block;
}

.tp-quote-panel span {
  color: #98603a;
  font-size: 12px;
  font-weight: 900;
}

.tp-quote-panel strong {
  margin-top: 5px;
  color: var(--tp-ink);
  font-size: 20px;
  line-height: 26px;
}

.tp-quote-panel ul {
  display: grid;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  color: var(--tp-text);
  list-style: none;
}

.tp-quote-panel li {
  padding: 8px 9px;
  background: #ffffff;
  border: 1px solid #eee0d0;
  border-radius: 4px;
  line-height: 20px;
}

.tp-product-list {
  display: grid;
  gap: 10px;
}

.tp-product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px 100px;
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
  background: #fffaf4;
  border: 1px solid #e5d4bf;
  border-radius: 4px;
}

.tp-product-row strong,
.tp-product-row p {
  display: block;
}

.tp-product-row strong {
  color: var(--tp-ink);
  font-size: 20px;
  line-height: 28px;
}

.tp-product-row p {
  margin: 5px 0 0;
  color: var(--tp-text);
  line-height: 24px;
}

.tp-product-row > span {
  justify-self: start;
  padding: 6px 9px;
  color: #8f4d15;
  background: #ffebd9;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.tp-product-row button {
  min-height: 38px;
  color: #ffffff;
  background: var(--tp-orange);
  border: 1px solid var(--tp-orange);
  border-radius: 4px;
  font-weight: 900;
  cursor: pointer;
}

.tp-product .tp-card {
  border-color: #f0dfcf;
}

.tp-product-specs {
  background: #2b241d;
}

.tp-product-specs .tp-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tp-product-specs div {
  min-height: 112px;
  padding: 22px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.tp-product-specs div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.tp-product-specs span,
.tp-product-specs strong,
.tp-product-specs small {
  display: block;
}

.tp-product-specs span {
  color: #f7a55b;
  font-size: 12px;
  font-weight: 900;
}

.tp-product-specs strong {
  margin-top: 7px;
  color: #fffaf4;
  font-size: 18px;
  line-height: 24px;
}

.tp-product-specs small {
  margin-top: 5px;
  color: rgba(255, 250, 244, 0.66);
  line-height: 20px;
}

.tp-portfolio .tp-header {
  background: rgba(250, 247, 241, 0.96);
}

.tp-portfolio .tp-brand-mark {
  color: #fff9ef;
  background: #7b5730;
  border-radius: 999px;
}

.tp-portfolio-hero {
  padding: 88px 0 80px;
  background:
    linear-gradient(90deg, rgba(250, 247, 241, 0.96), rgba(250, 247, 241, 0.7)),
    url("https://images.pexels.com/photos/5691531/pexels-photo-5691531.jpeg?auto=compress&cs=tinysrgb&w=1800") center / cover;
}

.tp-portfolio-intro {
  display: grid;
  justify-items: center;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.tp-portfolio-avatar {
  width: 76px;
  height: 76px;
  margin-bottom: 18px;
  font-size: 30px;
}

.tp-portfolio-hero .tp-kicker {
  color: #7b5730;
  background: #fff7eb;
  border-color: #e4d1b8;
}

.tp-portfolio-hero h1 {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--tp-ink);
  font-size: 58px;
  line-height: 68px;
}

.tp-portfolio-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--tp-text);
  font-size: 18px;
  line-height: 30px;
}

.tp-portfolio-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tp-portfolio .tp-card {
  background: #fffaf3;
  border-color: #e2d5c4;
}

.tp-portfolio-work {
  background: #fffaf3;
  border-top: 1px solid #e4d7c8;
  border-bottom: 1px solid #e4d7c8;
}

.tp-portfolio-work-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 26px;
}

.tp-portfolio-work-head .tp-section-title {
  margin-bottom: 0;
}

.tp-portfolio-cases {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}

.tp-portfolio-case {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e1d3c2;
  border-radius: 4px;
}

.tp-portfolio-case:first-child {
  grid-row: span 2;
}

.tp-portfolio-case img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tp-portfolio-case:first-child img {
  aspect-ratio: 4 / 3;
}

.tp-portfolio-case div {
  padding: 16px;
}

.tp-portfolio-case strong,
.tp-portfolio-case span {
  display: block;
}

.tp-portfolio-case strong {
  color: var(--tp-ink);
  font-size: 19px;
  line-height: 26px;
}

.tp-portfolio-case span {
  margin-top: 6px;
  color: var(--tp-muted);
  line-height: 22px;
}

.tp-portfolio-skill {
  padding: 18px 0;
  border-top: 1px solid #dfd1c0;
}

.tp-portfolio-skill:last-child {
  border-bottom: 1px solid #dfd1c0;
}

.tp-portfolio-skill strong,
.tp-portfolio-skill p {
  display: block;
}

.tp-portfolio-skill strong {
  color: var(--tp-ink);
  font-size: 22px;
  line-height: 30px;
}

.tp-portfolio-skill p {
  margin: 6px 0 0;
  color: var(--tp-muted);
  line-height: 24px;
}

.tp-portfolio .tp-cta {
  background: #231f1a;
}

.tp-store .tp-hero {
  background: #fff8fb;
}

.tp-store .tp-kicker {
  color: #87324d;
  background: #ffeef4;
  border-color: #ffd7e3;
}

.site-lead-fab {
  position: fixed;
  right: 24px;
  bottom: 82px;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--tp-blue);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--tp-shadow);
  font-weight: 900;
  cursor: pointer;
}

.site-lead-fab svg {
  width: 17px;
  height: 17px;
}

.site-lead-drawer {
  position: fixed;
  right: 24px;
  bottom: 140px;
  z-index: 76;
  width: min(340px, calc(100vw - 32px));
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--tp-border);
  border-radius: 18px;
  box-shadow: var(--tp-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.18s ease;
}

.site-lead-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-lead-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.site-lead-head strong {
  color: var(--tp-ink);
  font-size: 18px;
}

.site-lead-head button {
  width: 32px;
  height: 32px;
  color: var(--tp-muted);
  background: var(--tp-soft);
  border: 1px solid var(--tp-border);
  border-radius: 999px;
  font-size: 20px;
  cursor: pointer;
}

.site-lead-drawer form,
.site-lead-drawer label {
  display: grid;
  gap: 10px;
}

.site-lead-drawer label {
  color: var(--tp-muted);
  font-size: 13px;
  font-weight: 800;
}

.site-lead-drawer input,
.site-lead-drawer textarea {
  width: 100%;
  color: var(--tp-ink);
  background: #f9fbfd;
  border: 1px solid var(--tp-border);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  outline: none;
}

.site-lead-drawer form > button {
  min-height: 44px;
  color: #ffffff;
  background: var(--tp-blue);
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 960px) {
  .tp-container {
    width: min(100% - 28px, 720px);
  }

  .tp-header .tp-container,
  .tp-cta .tp-container,
  .tp-footer .tp-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .tp-nav {
    flex-wrap: wrap;
  }

  .tp-hero-grid,
  .tp-grid-3,
  .tp-grid-4,
  .tp-case-grid,
  .tp-company-strip .tp-container,
  .tp-company-board > .tp-container,
  .tp-company-facts,
  .tp-product-desk > .tp-container,
  .tp-product-steps,
  .tp-product-row,
  .tp-product-specs .tp-container,
  .tp-portfolio-services,
  .tp-portfolio-cases {
    grid-template-columns: 1fr;
  }

  .tp-company-hero,
  .tp-product-hero {
    padding: 56px 0 42px;
    background: #ffffff;
  }

  .tp-company-hero .tp-hero-grid,
  .tp-product-hero .tp-hero-grid {
    grid-template-columns: 1fr;
  }

  .tp-company-hero .tp-hero-media,
  .tp-company-hero .tp-hero-media img,
  .tp-product-hero .tp-hero-media,
  .tp-product-hero .tp-hero-media img {
    min-height: 320px;
  }

  .tp-company-strip div {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .tp-company-board {
    padding-top: 48px;
  }

  .tp-company-board-main {
    padding: 18px 0 4px;
  }

  .tp-company-board-main h1,
  .tp-product-summary h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .tp-company-contact {
    border-radius: 4px;
  }

  .tp-company-facts {
    margin-top: 10px;
  }

  .tp-company-facts div {
    min-height: auto;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .tp-product-desk {
    padding-top: 34px;
  }

  .tp-product-summary {
    padding: 10px 0 0;
  }

  .tp-product-catalog,
  .tp-product-inquiry {
    border-radius: 4px;
  }

  .tp-product-steps {
    margin-top: 24px;
  }

  .tp-product-steps div {
    min-height: auto;
  }

  .tp-product-specs div {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .tp-company-service {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .tp-hero h1 {
    font-size: 38px;
    line-height: 46px;
  }

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

@media (max-width: 720px) {
  .tp-container {
    width: min(100% - 32px, 720px);
  }

  .tp-header {
    position: sticky;
  }

  .tp-header .tp-container {
    min-height: auto;
    gap: 12px;
    padding: 12px 0;
  }

  .tp-brand {
    min-width: 0;
    width: 100%;
  }

  .tp-brand > div {
    min-width: 0;
  }

  .tp-brand strong,
  .tp-brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .tp-nav {
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .tp-nav::-webkit-scrollbar {
    display: none;
  }

  .tp-nav a {
    flex: 0 0 auto;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--tp-border);
    border-radius: 999px;
    font-size: 13px;
  }

  .tp-actions {
    display: none;
  }

  .tp-section {
    padding: 50px 0;
  }

  .tp-section-title {
    margin-bottom: 20px;
  }

  .tp-section-title h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .tp-section-title p {
    font-size: 15px;
    line-height: 24px;
  }

  .tp-hero {
    padding: 48px 0 40px;
  }

  .tp-company-hero,
  .tp-portfolio-hero {
    padding: 46px 0 38px;
  }

  .tp-hero h1,
  .tp-company-hero h1,
  .tp-product-hero h1,
  .tp-company-board-main h1,
  .tp-product-summary h1,
  .tp-portfolio-hero h1 {
    font-size: 34px;
    line-height: 42px;
  }

  .tp-hero p,
  .tp-portfolio-hero p {
    font-size: 16px;
    line-height: 27px;
  }

  .tp-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .tp-hero-actions .tp-btn,
  .tp-cta .tp-btn {
    width: 100%;
    min-height: 46px;
  }

  .tp-hero-media,
  .tp-company-hero .tp-hero-media,
  .tp-product-hero .tp-hero-media {
    min-height: 260px;
  }

  .tp-hero-media img,
  .tp-company-hero .tp-hero-media img,
  .tp-product-hero .tp-hero-media img {
    min-height: 260px;
  }

  .tp-company-proof,
  .tp-quote-panel {
    position: static;
    width: auto;
    margin: 10px;
  }

  .tp-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .tp-trust div {
    padding: 10px 8px;
  }

  .tp-trust strong {
    font-size: 16px;
    line-height: 22px;
  }

  .tp-trust span {
    font-size: 12px;
    line-height: 16px;
  }

  .tp-company-strip div,
  .tp-company-facts div,
  .tp-product-steps div,
  .tp-product-specs div {
    min-height: auto;
    padding: 16px;
  }

  .tp-company-service {
    padding: 18px 0;
  }

  .tp-company-service strong,
  .tp-product-row strong {
    font-size: 20px;
    line-height: 28px;
  }

  .tp-product-row {
    gap: 10px;
    min-height: auto;
    padding: 15px;
  }

  .tp-product-row button {
    width: 100%;
    min-height: 42px;
  }

  .tp-case-card img {
    aspect-ratio: 16 / 10;
  }

  .tp-portfolio-avatar {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }

  .tp-portfolio-work-head {
    display: grid;
    gap: 14px;
  }

  .tp-portfolio-case:first-child {
    grid-row: auto;
  }

  .tp-cta {
    padding: 34px 0;
  }

  .tp-cta .tp-container,
  .tp-footer .tp-container {
    gap: 14px;
  }

  .tp-cta h2 {
    font-size: 25px;
    line-height: 32px;
  }

  .tp-back-top {
    right: 16px;
    bottom: 18px;
  }

  .tp-toast {
    left: 16px;
    right: 16px;
    bottom: 18px;
    text-align: center;
  }
}

/* Enterprise one-page module polish */
.tp-company-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
}

.tp-company-about-card,
.tp-company-contact-card,
.tp-company-capability-grid article,
.tp-company-team article,
.tp-company-news button,
.tp-company-jobs button {
  background: #ffffff;
  border: 1px solid var(--tp-border);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(18, 29, 45, 0.06);
}

.tp-company-about-card,
.tp-company-contact-card {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.tp-company-about-card strong,
.tp-company-contact-card strong {
  color: var(--tp-ink);
  font-size: 24px;
  line-height: 32px;
}

.tp-company-about-card p,
.tp-company-contact-card span {
  margin: 0;
  color: var(--tp-muted);
  line-height: 25px;
}

.tp-company-band {
  background: #eef2f6;
  border-top: 1px solid #d8dee6;
  border-bottom: 1px solid #d8dee6;
}

.tp-company-soft {
  background: #f8fafc;
}

.tp-company-capability-grid,
.tp-company-team,
.tp-company-news {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tp-company-capability-grid article,
.tp-company-team article {
  min-height: 170px;
  padding: 22px;
}

.tp-company-capability-grid i {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: #305f92;
}

.tp-company-capability-grid strong,
.tp-company-team strong,
.tp-company-news strong,
.tp-company-jobs strong {
  display: block;
  color: var(--tp-ink);
  font-size: 20px;
  line-height: 28px;
}

.tp-company-capability-grid p,
.tp-company-team span,
.tp-company-news p,
.tp-company-news span,
.tp-company-jobs span {
  display: block;
  margin: 8px 0 0;
  color: var(--tp-muted);
  line-height: 24px;
}

.tp-company-jobs {
  display: grid;
  gap: 12px;
}

.tp-company-jobs button,
.tp-company-news button {
  width: 100%;
  padding: 20px;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.tp-company-news button {
  min-height: 170px;
}

.tp-company-news button:hover,
.tp-company-jobs button:hover {
  border-color: #b9c8d8;
  box-shadow: 0 20px 52px rgba(18, 29, 45, 0.1);
  transform: translateY(-1px);
}

.tp-company-contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
}

.tp-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
}

.tp-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.42);
}

.tp-detail-card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--tp-border);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(17, 24, 39, 0.22);
}

.tp-detail-card strong {
  display: block;
  color: var(--tp-ink);
  font-size: 24px;
  line-height: 32px;
}

.tp-detail-card p {
  margin: 14px 0 0;
  color: var(--tp-text);
  line-height: 28px;
}

.tp-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--tp-muted);
  background: #f8fafc;
  border: 1px solid var(--tp-border);
  border-radius: 999px;
  cursor: pointer;
}

.tp-detail-close svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 960px) {
  .tp-company-split,
  .tp-company-contact-section,
  .tp-company-capability-grid,
  .tp-company-team,
  .tp-company-news {
    grid-template-columns: 1fr;
  }
}
