:root {
  --color-bg-global: #FFFFFF;
  --color-bg-card: #F8FAFC;
  --color-text-primary: #1E2937;
  --color-text-secondary: #64748B;
  --color-accent: #06B6D4;
  --color-accent-deep: #0891B2;
  --color-border: #E2E8F0;
  --color-soft-gray: #94A3B8;
  --color-pastel: #F1F5F9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--color-bg-global);
  color: var(--color-text-primary);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

strong, p, span, h1, h2, h3, h4, h5, h6, li, a, button {
  color: inherit;
}

.font-unbounded {
  font-family: 'Unbounded', 'Hiragino Sans', 'Yu Gothic', sans-serif;
}

.font-jet {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}

.font-manrope {
  font-family: 'Manrope', 'Hiragino Sans', 'Yu Gothic', sans-serif;
}


.tpt-floating-panel {
  position: fixed;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  width: 280px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 24px 20px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 90vh;
  overflow-y: auto;
}

.tpt-logo-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.tpt-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 18px;
}

.tpt-logo-domain {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--color-text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tpt-logo-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-primary);
  line-height: 1.3;
}

.tpt-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tpt-nav-list a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all 0.18s ease-out;
  border-left: 2px solid transparent;
}

.tpt-nav-list a:hover {
  background: var(--color-accent);
  color: #FFFFFF;
  border-left-color: var(--color-accent-deep);
}

.tpt-nav-list a.tpt-active {
  background: var(--color-pastel);
  color: var(--color-accent-deep);
  border-left-color: var(--color-accent);
}

.tpt-cta-strip {
  background: var(--color-accent);
  color: #FFFFFF;
  padding: 14px 16px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  box-shadow: 4px 4px 0px var(--color-accent-deep);
  display: block;
  transition: transform 0.18s ease-out;
}

.tpt-cta-strip:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--color-accent-deep);
  color: #FFFFFF;
}

.tpt-cta-secondary {
  display: block;
  text-align: center;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  background: #FFFFFF;
  color: var(--color-text-primary);
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.18s ease-out;
}

.tpt-cta-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-deep);
}


.tpt-mobile-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  z-index: 60;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
}

.tpt-burger {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.tpt-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  position: relative;
}

.tpt-burger span::before,
.tpt-burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
}

.tpt-burger span::before {
  top: -7px;
}

.tpt-burger span::after {
  top: 7px;
}

.tpt-mobile-drawer {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 70;
  display: none;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
  background-image:
    linear-gradient(to right, rgba(6, 182, 212, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(6, 182, 212, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.tpt-mobile-drawer.tpt-open {
  display: flex;
}

.tpt-mobile-drawer a {
  display: block;
  padding: 18px 0;
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
}

.tpt-mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  font-size: 22px;
  color: var(--color-text-primary);
}

@media (max-width: 1024px) {
  .tpt-floating-panel {
    display: none;
  }
  .tpt-mobile-bar {
    display: flex;
  }
  body {
    padding-top: 64px;
  }
}


.tpt-main {
  margin-left: 328px;
  min-height: 100vh;
  background: var(--color-bg-global);
  color: var(--color-text-primary);
}

@media (max-width: 1024px) {
  .tpt-main {
    margin-left: 0;
  }
}


.tpt-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 80px 64px;
  display: flex;
  align-items: center;
  background: #FFFFFF;
}

.tpt-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(226, 232, 240, 0.5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226, 232, 240, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.tpt-hero-marquee {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.08;
}

.tpt-hero-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: marquee-flow 35s linear infinite;
}

.tpt-hero-marquee span {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: 160px;
  color: var(--color-accent);
  letter-spacing: 0.15em;
  white-space: nowrap;
}

@keyframes marquee-flow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.tpt-hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 1024px) {
  .tpt-hero {
    padding: 40px 24px;
    min-height: auto;
  }
  .tpt-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tpt-hero-marquee span {
    font-size: 80px;
  }
}

.tpt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px;
  background: var(--color-pastel);
  border: 1px solid var(--color-border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--color-text-primary);
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.tpt-hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.tpt-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  margin: 0 0 24px;
}

.tpt-hero h1 .accent {
  color: var(--color-accent);
  display: block;
}

.tpt-hero-subline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--color-text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  line-height: 1.8;
}

.tpt-hero-subline span {
  display: inline-block;
  margin-right: 12px;
}

.tpt-hero-subline span::before {
  content: '·';
  margin-right: 8px;
  color: var(--color-accent);
}

.tpt-hero-subline span:first-child::before {
  content: '';
  margin-right: 0;
}

.tpt-hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tpt-btn-primary {
  background: var(--color-accent);
  color: #FFFFFF;
  padding: 22px 36px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--color-accent-deep);
  transition: all 0.2s ease-out;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.05em;
}

.tpt-btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--color-accent-deep);
  color: #FFFFFF;
}

.tpt-btn-outline {
  background: #FFFFFF;
  color: var(--color-text-primary);
  padding: 22px 36px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 2px solid var(--color-text-primary);
  cursor: pointer;
  transition: all 0.2s ease-out;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.05em;
}

.tpt-btn-outline:hover {
  background: var(--color-text-primary);
  color: #FFFFFF;
}

.tpt-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

.tpt-hero-stats .num {
  font-family: 'Unbounded', sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1;
}

.tpt-hero-stats .num small {
  font-size: 18px;
  color: var(--color-accent);
}

.tpt-hero-stats .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--color-text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}


.tpt-hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--color-pastel);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.tpt-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(6, 182, 212, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(6, 182, 212, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
}

.tpt-hero-visual::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  bottom: 24px;
  border: 2px solid var(--color-accent);
  pointer-events: none;
}

.tpt-hero-visual .tpt-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-accent);
  color: #FFFFFF;
  padding: 6px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  z-index: 5;
}

.tpt-hero-visual .tpt-visual-content {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 5;
}

.tpt-hero-visual .tpt-visual-content h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-text-primary);
}

.tpt-hero-visual .tpt-visual-content p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--color-text-secondary);
  margin: 0;
}


.tpt-section {
  padding: 120px 64px;
  position: relative;
  background: #FFFFFF;
  color: var(--color-text-primary);
}

.tpt-section-dark {
  background: #0F172A;
  color: #FFFFFF;
}

.tpt-section-soft {
  background: var(--color-bg-card);
  color: var(--color-text-primary);
}

@media (max-width: 1024px) {
  .tpt-section {
    padding: 64px 24px;
  }
}

.tpt-section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.tpt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.tpt-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-accent);
}

.tpt-section h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(30px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: var(--color-text-primary);
}

.tpt-section-dark h2 {
  color: #FFFFFF;
}

.tpt-section-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 720px;
  margin: 0 0 64px;
}

.tpt-section-dark .tpt-section-lead {
  color: var(--color-soft-gray);
}


.tpt-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.tpt-stack-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.6fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.25s ease-out;
  margin-bottom: -1px;
}

.tpt-stack-card:hover {
  z-index: 10;
  transform: scale(1.02);
  border-color: var(--color-accent);
  box-shadow: 8px 8px 0 rgba(6, 182, 212, 0.12);
}

.tpt-stack-card .tpt-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.tpt-stack-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--color-text-primary);
}

.tpt-stack-card p {
  margin: 0 0 12px;
  color: var(--color-text-secondary);
  font-size: 15px;
}

.tpt-stack-card .tpt-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--color-accent-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .tpt-stack-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
  }
  .tpt-stack-card .tpt-num {
    font-size: 40px;
  }
  .tpt-stack-card h3 {
    font-size: 22px;
  }
}


.tpt-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

.tpt-bento .cell {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease-out;
}

.tpt-bento .cell:hover {
  z-index: 10;
  transform: scale(1.02);
  border-color: var(--color-accent);
  box-shadow: 6px 6px 0 rgba(6, 182, 212, 0.1);
}

.tpt-bento .large {
  grid-column: span 2;
  grid-row: span 2;
}

.tpt-bento .wide {
  grid-column: span 2;
}

.tpt-bento .tall {
  grid-row: span 2;
}

.tpt-bento .cell.dark {
  background: #0F172A;
  color: #FFFFFF;
}

.tpt-bento .cell.accent {
  background: var(--color-accent);
  color: #FFFFFF;
}

.tpt-bento .cell.soft {
  background: var(--color-bg-card);
}

.tpt-bento .cell .tpt-bento-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.tpt-bento .cell.dark .tpt-bento-num,
.tpt-bento .cell.accent .tpt-bento-num {
  color: rgba(255, 255, 255, 0.7);
}

.tpt-bento .cell h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.2;
}

.tpt-bento .cell.large h3 {
  font-size: 32px;
}

.tpt-bento .cell p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.tpt-bento .cell.dark p,
.tpt-bento .cell.accent p {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
  .tpt-bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .tpt-bento .large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .tpt-bento .wide {
    grid-column: span 2;
  }
  .tpt-bento .tall {
    grid-row: span 1;
  }
}


.tpt-process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
  background: #FFFFFF;
}

.tpt-process-step {
  padding: 32px 24px;
  border-right: 1px solid var(--color-border);
  position: relative;
  background: #FFFFFF;
  color: var(--color-text-primary);
  transition: all 0.25s ease-out;
}

.tpt-process-step:last-child {
  border-right: none;
}

.tpt-process-step:hover {
  background: var(--color-accent);
  color: #FFFFFF;
}

.tpt-process-step:hover .tpt-step-num,
.tpt-process-step:hover .tpt-step-meta {
  color: #FFFFFF;
}

.tpt-process-step .tpt-step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 16px;
}

.tpt-process-step .tpt-step-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tpt-process-step h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.3;
}

.tpt-process-step p {
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.tpt-process-step:hover p {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1024px) {
  .tpt-process {
    grid-template-columns: 1fr;
  }
  .tpt-process-step {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .tpt-process-step:last-child {
    border-bottom: none;
  }
}


.tpt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.tpt-split-visual {
  background: var(--color-pastel);
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid var(--color-border);
  overflow: hidden;
  background-image:
    linear-gradient(to right, rgba(6, 182, 212, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(6, 182, 212, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tpt-split-visual-content {
  text-align: center;
  padding: 40px;
}

.tpt-split-visual-content .tpt-badge {
  display: inline-block;
  background: var(--color-accent);
  color: #FFFFFF;
  padding: 10px 20px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.tpt-split-visual-content h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--color-text-primary);
  margin: 0 0 16px;
}

.tpt-split-visual-content p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--color-text-secondary);
  margin: 0;
}

.tpt-split-content {
  padding: 80px 64px;
}

.tpt-split-content h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 32px;
  color: var(--color-text-primary);
}

.tpt-split-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0 0 20px;
}

.tpt-fact-list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tpt-fact-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
}

.tpt-fact-list .year {
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  color: var(--color-accent);
  font-size: 18px;
}

.tpt-fact-list strong {
  font-weight: 600;
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.tpt-fact-list .desc {
  font-size: 13px;
  color: var(--color-text-secondary);
}

@media (max-width: 1024px) {
  .tpt-split {
    grid-template-columns: 1fr;
  }
  .tpt-split-visual {
    height: 400px;
    position: relative;
  }
  .tpt-split-content {
    padding: 48px 24px;
  }
}


.tpt-flexgrow {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--color-border);
}

.tpt-flexgrow .item {
  padding: 36px 24px;
  background: #FFFFFF;
  border-right: 1px solid var(--color-border);
  transition: all 0.3s ease-out;
  color: var(--color-text-primary);
}

.tpt-flexgrow .item:last-child {
  border-right: none;
}

.tpt-flexgrow .item:hover {
  background: var(--color-text-primary);
  color: #FFFFFF;
  transform: scaleY(1.05);
}

.tpt-flexgrow .item:hover .tpt-flex-num {
  color: var(--color-accent);
}

.tpt-flexgrow .item:hover p {
  color: rgba(255, 255, 255, 0.85);
}

.tpt-flexgrow .tpt-flex-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 20px;
}

.tpt-flexgrow h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.3;
}

.tpt-flexgrow p {
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

@media (max-width: 1024px) {
  .tpt-flexgrow {
    grid-template-columns: 1fr;
  }
  .tpt-flexgrow .item {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .tpt-flexgrow .item:last-child {
    border-bottom: none;
  }
  .tpt-flexgrow .item:hover {
    transform: scale(1.02);
  }
}


.tpt-team {
  border-top: 1px solid var(--color-border);
}

.tpt-team-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  cursor: pointer;
  transition: all 0.25s ease-out;
  color: var(--color-text-primary);
}

.tpt-team-row:hover {
  background: var(--color-pastel);
  padding-left: 24px;
  padding-right: 24px;
}

.tpt-team-row .tpt-team-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--color-text-secondary);
  letter-spacing: 0.1em;
}

.tpt-team-row h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  margin: 0;
}

.tpt-team-row .tpt-team-role {
  font-size: 14px;
  color: var(--color-text-secondary);
}

.tpt-team-row .tpt-team-years {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--color-accent);
}

.tpt-team-tooltip {
  display: none;
}

.tpt-team-row:hover .tpt-team-tooltip {
  display: flex;
  position: absolute;
  left: calc(100% + 20px);
  top: 50%;
  transform: translateY(-50%);
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 16px;
  z-index: 30;
  gap: 14px;
  align-items: center;
  box-shadow: 6px 6px 0 rgba(6, 182, 212, 0.15);
  width: 280px;
}

.tpt-team-tooltip img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

.tpt-team-tooltip .who {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 13px;
}

.tpt-team-tooltip .role {
  font-size: 11px;
  color: var(--color-text-secondary);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .tpt-team-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .tpt-team-row:hover .tpt-team-tooltip {
    display: none;
  }
}


.tpt-coverflow {
  position: relative;
  perspective: 1400px;
  padding: 40px 0 80px;
}

.tpt-coverflow-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 40px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) var(--color-pastel);
}

.tpt-coverflow-track::-webkit-scrollbar {
  height: 6px;
}

.tpt-coverflow-track::-webkit-scrollbar-track {
  background: var(--color-pastel);
}

.tpt-coverflow-track::-webkit-scrollbar-thumb {
  background: var(--color-accent);
}

.tpt-coverflow-item {
  flex: 0 0 380px;
  scroll-snap-align: center;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 36px;
  transition: all 0.3s ease-out;
  color: var(--color-text-primary);
}

.tpt-coverflow-item:hover {
  transform: translateY(-6px);
  border-color: var(--color-accent);
  box-shadow: 6px 6px 0 rgba(6, 182, 212, 0.15);
}

.tpt-coverflow-item .stars {
  color: var(--color-accent);
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.tpt-coverflow-item .quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-primary);
  margin: 0 0 24px;
}

.tpt-coverflow-item .author {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.tpt-coverflow-item .org {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--color-text-secondary);
  letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
  .tpt-coverflow-item {
    flex: 0 0 280px;
    padding: 24px;
  }
}


.tpt-faq {
  border-top: 1px solid var(--color-border);
}

.tpt-faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 24px 0;
}

.tpt-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  gap: 24px;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: 'Unbounded', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text-primary);
}

.tpt-faq-q .tpt-faq-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--color-accent);
}

.tpt-faq-q .tpt-faq-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.25s ease-out;
  background: #FFFFFF;
  color: var(--color-text-primary);
}

.tpt-faq-item.tpt-open .tpt-faq-icon {
  background: var(--color-accent);
  color: #FFFFFF;
  border-color: var(--color-accent);
}

.tpt-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out, padding 0.35s ease-out;
  padding: 0 0 0 84px;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.tpt-faq-item.tpt-open .tpt-faq-a {
  max-height: 320px;
  padding: 16px 0 16px 84px;
}

@media (max-width: 1024px) {
  .tpt-faq-q {
    grid-template-columns: 32px 1fr 32px;
    gap: 12px;
    font-size: 15px;
  }
  .tpt-faq-a,
  .tpt-faq-item.tpt-open .tpt-faq-a {
    padding-left: 44px;
  }
}


.tpt-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--color-border);
  background: #FFFFFF;
}

.tpt-contact-form {
  padding: 64px;
  border-right: 1px solid var(--color-border);
  background: #FFFFFF;
  color: var(--color-text-primary);
}

.tpt-contact-info {
  padding: 64px;
  background: var(--color-text-primary);
  color: #FFFFFF;
}

.tpt-contact-info .tpt-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tpt-contact-info .tpt-info-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 32px;
  line-height: 1.3;
}

.tpt-contact-info .tpt-info-value.small {
  font-size: 15px;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}

.tpt-form-row {
  margin-bottom: 32px;
}

.tpt-form-row label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tpt-form-row input,
.tpt-form-row textarea,
.tpt-form-row select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--color-border);
  padding: 12px 0;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  color: var(--color-text-primary);
  outline: none;
  transition: border-color 0.2s ease-out;
}

.tpt-form-row textarea {
  min-height: 100px;
  resize: vertical;
}

.tpt-form-row input:focus,
.tpt-form-row textarea:focus,
.tpt-form-row select:focus {
  border-bottom-color: var(--color-accent);
}

.tpt-form-row input::placeholder,
.tpt-form-row textarea::placeholder {
  color: var(--color-soft-gray);
}

.tpt-submit {
  background: var(--color-accent);
  color: #FFFFFF;
  padding: 18px 32px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--color-accent-deep);
  transition: all 0.2s ease-out;
  letter-spacing: 0.05em;
}

.tpt-submit:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-accent-deep);
}

.tpt-submit:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--color-accent-deep);
}

@media (max-width: 1024px) {
  .tpt-contact-split {
    grid-template-columns: 1fr;
  }
  .tpt-contact-form {
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .tpt-contact-info {
    padding: 32px 24px;
  }
}


.tpt-footer {
  background: var(--color-accent);
  color: #FFFFFF;
  padding: 80px 64px 40px;
  position: relative;
  overflow: hidden;
}

.tpt-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.tpt-footer-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.tpt-footer h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 500;
}

.tpt-footer .tpt-footer-brand {
  font-family: 'Unbounded', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.tpt-footer p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
}

.tpt-footer address {
  font-style: normal;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 16px;
}

.tpt-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tpt-footer ul li {
  margin-bottom: 10px;
}

.tpt-footer a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.tpt-footer a:hover {
  opacity: 1;
  text-decoration: underline;
}

.tpt-footer-bottom {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.tpt-footer-bottom .copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
}

.tpt-footer-bottom .legal {
  display: flex;
  gap: 24px;
}

.tpt-footer-bottom .legal a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

@media (max-width: 1024px) {
  .tpt-footer {
    padding: 48px 24px 24px;
  }
  .tpt-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .tpt-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


.tpt-cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 24px;
  z-index: 100;
  box-shadow: 6px 6px 0 rgba(6, 182, 212, 0.15);
  color: var(--color-text-primary);
}

.tpt-cookie h6 {
  font-family: 'Unbounded', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--color-text-primary);
}

.tpt-cookie p {
  font-size: 12px;
  color: var(--color-text-secondary);
  margin: 0 0 16px;
  line-height: 1.6;
}

.tpt-cookie .tpt-cookie-links {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
}

.tpt-cookie .tpt-cookie-links a {
  color: var(--color-accent);
  text-decoration: underline;
}

.tpt-cookie-btns {
  display: flex;
  gap: 8px;
}

.tpt-cookie-btns button {
  flex: 1;
  padding: 10px;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  letter-spacing: 0.05em;
}

.tpt-cookie-accept {
  background: var(--color-accent);
  color: #FFFFFF;
}

.tpt-cookie-decline {
  background: var(--color-pastel);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}


.tpt-lens {
  position: fixed;
  width: 72px;
  height: 72px;
  border: 3px solid var(--color-accent);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
  pointer-events: none;
  z-index: 200;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s, width 0.2s, height 0.2s;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .tpt-lens.tpt-show {
    display: block;
  }
}


.tpt-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.tpt-reveal.tpt-shown {
  opacity: 1;
  transform: translateY(0);
}


.tpt-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.tpt-stagger.tpt-shown > *:nth-child(1) { transition-delay: 0s; }
.tpt-stagger.tpt-shown > *:nth-child(2) { transition-delay: 0.06s; }
.tpt-stagger.tpt-shown > *:nth-child(3) { transition-delay: 0.12s; }
.tpt-stagger.tpt-shown > *:nth-child(4) { transition-delay: 0.18s; }
.tpt-stagger.tpt-shown > *:nth-child(5) { transition-delay: 0.24s; }
.tpt-stagger.tpt-shown > *:nth-child(6) { transition-delay: 0.30s; }
.tpt-stagger.tpt-shown > *:nth-child(7) { transition-delay: 0.36s; }
.tpt-stagger.tpt-shown > *:nth-child(8) { transition-delay: 0.42s; }

.tpt-stagger.tpt-shown > * {
  opacity: 1;
  transform: translateY(0);
}


.tpt-page-hero {
  padding: 120px 64px 80px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-primary);
}

.tpt-page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.tpt-page-hero h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--color-text-primary);
}

.tpt-page-hero h1 .accent {
  color: var(--color-accent);
}

.tpt-page-hero p {
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 720px;
  margin: 0;
  line-height: 1.7;
}

.tpt-breadcrumb {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
  margin-bottom: 24px;
}

.tpt-breadcrumb a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.tpt-breadcrumb a:hover {
  color: var(--color-accent);
}

.tpt-breadcrumb .sep {
  color: var(--color-accent);
}

@media (max-width: 1024px) {
  .tpt-page-hero {
    padding: 80px 24px 48px;
  }
}


.tpt-cta-banner {
  background: var(--color-text-primary);
  color: #FFFFFF;
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tpt-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(6, 182, 212, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(6, 182, 212, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.tpt-cta-banner-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.tpt-cta-banner h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #FFFFFF;
}

.tpt-cta-banner h2 .accent {
  color: var(--color-accent);
}

.tpt-cta-banner p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px;
}

.tpt-cta-banner .tpt-btn-primary {
  background: var(--color-accent);
}

@media (max-width: 1024px) {
  .tpt-cta-banner {
    padding: 56px 24px;
  }
}


.tpt-service-detail {
  padding: 80px 64px;
  background: #FFFFFF;
}

.tpt-service-detail-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.tpt-service-detail h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--color-text-primary);
}

.tpt-service-detail p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0 0 20px;
}

.tpt-service-detail h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 48px 0 16px;
  color: var(--color-text-primary);
}

.tpt-service-detail ul {
  padding: 0;
  margin: 16px 0 24px;
  list-style: none;
}

.tpt-service-detail ul li {
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  color: var(--color-text-primary);
  font-size: 15px;
}

.tpt-service-detail ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

.tpt-service-detail .tpt-price-box {
  background: var(--color-pastel);
  border: 1px solid var(--color-border);
  padding: 32px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tpt-service-detail .tpt-price-box .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tpt-service-detail .tpt-price-box .val {
  font-family: 'Unbounded', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.tpt-service-detail .tpt-price-box .val small {
  font-size: 14px;
  color: var(--color-text-secondary);
  font-weight: 400;
  margin-left: 8px;
}

@media (max-width: 1024px) {
  .tpt-service-detail {
    padding: 48px 24px;
  }
  .tpt-service-detail .tpt-price-box {
    grid-template-columns: 1fr;
  }
}


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

.tpt-gallery .item {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
  transition: all 0.25s ease-out;
}

.tpt-gallery .item:hover {
  transform: scale(1.02);
  border-color: var(--color-accent);
  box-shadow: 6px 6px 0 rgba(6, 182, 212, 0.15);
  z-index: 5;
}

.tpt-gallery .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tpt-gallery .item .tpt-gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  padding: 12px 16px;
  font-family: 'Unbounded', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.tpt-gallery .tall {
  grid-row: span 2;
}

@media (max-width: 1024px) {
  .tpt-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .tpt-gallery .tall {
    grid-row: span 1;
  }
}


.tpt-thanks {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  text-align: center;
  background: #FFFFFF;
  color: var(--color-text-primary);
}

.tpt-thanks-inner {
  max-width: 640px;
}

.tpt-thanks h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.tpt-thanks h1 .accent {
  color: var(--color-accent);
}

.tpt-thanks p {
  font-size: 17px;
  color: var(--color-text-secondary);
  margin: 0 0 40px;
  line-height: 1.7;
}

.tpt-thanks .tpt-thanks-meta {
  display: inline-block;
  background: var(--color-pastel);
  border: 1px solid var(--color-border);
  padding: 12px 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--color-text-primary);
  letter-spacing: 0.08em;
}


.tpt-legal {
  padding: 80px 64px;
  background: #FFFFFF;
  color: var(--color-text-primary);
}

.tpt-legal-inner {
  max-width: 880px;
  margin: 0 auto;
}

.tpt-legal h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.tpt-legal h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 48px 0 16px;
  color: var(--color-text-primary);
}

.tpt-legal p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0 0 16px;
}

.tpt-legal ul {
  padding-left: 24px;
  margin: 0 0 16px;
}

.tpt-legal ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .tpt-legal {
    padding: 48px 24px;
  }
}