html,
body {
  min-height: 100%;
}

body.tp-page {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.tp-page .tp-main {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}

body.tp-page .tp-main > :first-child {
  margin-top: 0 !important;
}

body.tp-page .tp-main > :last-child {
  margin-bottom: 0 !important;
}

body.tp-page .tp-main > .min-h-screen {
  min-height: auto;
  margin: 0;
}

body.tp-page a {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

body.tp-page .tp-site-header,
body.tp-page .tp-site-footer {
  box-sizing: border-box;
  font-family: inherit;
}

body.tp-page .tp-site-header *,
body.tp-page .tp-site-footer * {
  box-sizing: border-box;
}

body.tp-page .tp-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--color-slate-200);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-slate-900);
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
}

body.tp-page .tp-site-header a,
body.tp-page .tp-site-footer a {
  color: inherit;
  text-decoration: none;
}

body.tp-page .tp-site-header button {
  border: 0;
  background: transparent;
  color: inherit;
  line-height: 1;
  cursor: pointer;
}

body.tp-page .tp-site-header .tp-btn {
  border: 0;
  color: var(--color-slate-700);
  text-decoration: none;
}

body.tp-page .tp-site-header .tp-btn-primary {
  color: #fff;
}

body.tp-page .tp-site-header .tp-btn-nav:hover,
body.tp-page .tp-site-header .tp-btn-nav:focus-visible {
  background: var(--color-sky-50);
  color: var(--color-sky-600);
}

body.tp-page .tp-site-header .nav-dropdown {
  color: var(--color-slate-700);
  line-height: 1.5;
}

body.tp-page .tp-site-header .tp-dropdown-link {
  color: var(--color-slate-700);
}

body.tp-page .tp-site-header .tp-dropdown-link:hover,
body.tp-page .tp-site-header .tp-mobile-nav-link:hover,
body.tp-page .tp-site-header .tp-mobile-subnav-link:hover {
  color: var(--color-sky-600);
  text-decoration: none;
}

body.tp-page .tp-site-footer {
  background: var(--color-slate-900);
  color: var(--color-slate-300);
  line-height: 1.5;
}

body.tp-page .tp-site-footer h2,
body.tp-page .tp-site-footer h3,
body.tp-page .tp-site-footer p,
body.tp-page .tp-site-footer ul {
  margin-top: 0;
}

body.tp-page .tp-site-footer ul {
  padding-left: 0;
  list-style: none;
}

body.tp-page .tp-site-footer h3 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
}

body.tp-page .tp-site-footer p {
  color: var(--color-slate-400);
}

body.tp-page .tp-site-footer a {
  color: var(--color-slate-300);
}

body.tp-page .tp-site-footer a:hover,
body.tp-page .tp-site-footer a:focus-visible {
  color: var(--color-sky-400);
  text-decoration: none;
}

body.tp-page .tp-site-footer .tp-friend-link {
  color: var(--color-slate-400);
}

body.tp-page .tp-site-footer .tp-friend-link:hover,
body.tp-page .tp-site-footer .tp-friend-link:focus-visible {
  color: var(--color-sky-400);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.tp-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  /*padding-block: 1.5rem;*/
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--card);
  color: var(--card-foreground);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.tp-input,
.tp-select,
.tp-textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--input);
  border-radius: 0.375rem;
  background: transparent;
  color: var(--foreground);
  font-size: 1rem;
  line-height: 1.5rem;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
  outline: none;
}

.tp-input,
.tp-select {
  height: 2.25rem;
  padding: 0.25rem 0.75rem;
}

.tp-input::placeholder,
.tp-textarea::placeholder {
  color: var(--muted-foreground);
}

.tp-input:focus,
.tp-input:focus-visible,
.tp-select:focus,
.tp-select:focus-visible,
.tp-textarea:focus,
.tp-textarea:focus-visible {
  border-color: var(--color-sky-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

.tp-input:disabled,
.tp-select:disabled,
.tp-textarea:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.tp-input-lg {
  height: 3.5rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.tp-input-md {
  height: 3rem;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.tp-textarea {
  min-height: 4rem;
  padding: 0.5rem 0.75rem;
  resize: vertical;
}

.tp-home-hero {
  isolation: isolate;
  overflow: visible;
}

.tp-home-hero > .container {
  z-index: 2;
}

.tp-home-hero-photo {
  z-index: 0;
}

.tp-home-hero-overlay {
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(240, 249, 255, 0.9) 0%,
    rgba(239, 246, 255, 0.72) 44%,
    rgba(255, 255, 255, 0.22) 100%
  );
}

.tp-hero-panel {
  position: relative;
  z-index: 30;
  overflow: visible;
}

.tp-home-search-select {
  position: relative;
  z-index: 40;
}

.tp-home-search-select .layui-form-select {
  position: relative;
  z-index: 40;
}

.tp-home-search-select .layui-form-select .layui-select-title {
  position: relative;
}

.tp-home-search-select .layui-form-select .layui-input {
  height: 3.5rem;
  padding-right: 3rem;
  padding-left: 3rem;
  border: 2px solid var(--color-slate-200);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--foreground);
  font-size: 1.125rem;
  line-height: 1.75rem;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.tp-home-search-select .layui-form-select .layui-input::placeholder {
  color: var(--color-slate-400);
}

.tp-home-search-select .tp-home-search-icon {
  z-index: 80;
  color: var(--color-slate-600) !important;
  stroke: currentColor;
  pointer-events: none;
  transition: color 0.18s ease;
}

.tp-home-search-select .tp-home-search-icon circle,
.tp-home-search-select .tp-home-search-icon line {
  stroke: currentColor !important;
}

.tp-home-search-select:hover .tp-home-search-icon,
.tp-home-search-select:focus-within .tp-home-search-icon {
  color: var(--color-sky-600) !important;
}

.tp-home-search-select .layui-edge {
  right: 1rem;
  margin-top: -0.1875rem;
  border-top-color: var(--color-slate-600);
  transition: border-color 0.18s ease;
}

.tp-home-search-select .layui-form-selected .layui-edge,
.tp-home-search-select .layui-form-select:hover .layui-edge {
  border-top-color: var(--color-sky-600);
}

.tp-home-search-select .layui-form-select .layui-input:focus {
  border-color: var(--color-sky-500) !important;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

.tp-home-search-select .layui-form-select dl {
  left: 0;
  right: 0;
  top: 3.75rem;
  z-index: 999;
  box-sizing: border-box;
  width: 100%;
  min-width: 100%;
  max-height: 18rem;
  margin: 0;
  padding: 0.5rem;
  border-radius: 0.75rem;
  border-color: var(--color-slate-200);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  overflow-x: hidden;
  overflow-y: auto;
}

.tp-home-search-select .layui-form-select dl dd {
  min-height: 2.5rem;
  margin: 0;
  padding: 0 0.875rem;
  border-radius: 0.625rem;
  color: var(--color-slate-700);
  font-size: 0.9375rem;
  line-height: 2.5rem;
  transition:
    color 0.18s ease,
    background-color 0.18s ease;
}

.tp-home-search-select .layui-form-select dl dd + dd {
  margin-top: 0.125rem;
}

.tp-home-search-select .layui-form-select dl::-webkit-scrollbar {
  width: 0.375rem;
}

.tp-home-search-select .layui-form-select dl::-webkit-scrollbar-thumb {
  border-radius: 9999px;
  background: var(--color-slate-300);
}

.tp-home-search-select .layui-form-select dl::-webkit-scrollbar-track {
  background: transparent;
}

.tp-home-search-select .layui-form-select dl dd.layui-select-tips {
  color: var(--color-slate-400);
}

.tp-home-search-select .layui-form-select dl dd:hover {
  background-color: var(--color-sky-50);
  color: var(--color-sky-700);
}

.tp-home-search-select .layui-form-select dl dd.layui-this {
  background-color: var(--color-sky-500);
  color: #fff;
}

.tp-draft-banner {
  display: none;
  width: 100%;
  margin-top: 0.875rem;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 0.875rem;
  background: rgba(248, 250, 252, 0.92);
  color: var(--color-slate-700);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.tp-draft-banner-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tp-draft-banner-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  flex: 0 0 2.375rem;
  border-radius: 0.75rem;
  background: var(--color-sky-50);
  color: var(--color-sky-600);
}

.tp-draft-banner-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}

.tp-draft-banner-copy {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.875rem;
  line-height: 1.45;
}

.tp-draft-banner-title {
  display: block;
  margin-bottom: 0.125rem;
  color: var(--color-slate-900);
  font-weight: 700;
}

.tp-draft-banner-route {
  color: var(--color-slate-500);
}

.tp-draft-banner-action {
  flex-shrink: 0;
  min-height: 2.125rem;
  padding-inline: 0.875rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 9999px;
  background: #fff;
  color: var(--color-sky-700);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.08);
}

.tp-draft-banner-action:hover {
  border-color: rgba(14, 165, 233, 0.36);
  background: var(--color-sky-50);
  color: var(--color-sky-700);
}

.tp-draft-banner-action:focus-visible {
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

.tp-draft-banner-action svg {
  color: currentColor;
}

.draft-confirm-layer,
.precheck-layer {
  border-radius: 1rem !important;
  overflow: hidden;
}

.draft-confirm-layer .layui-layer-title,
.precheck-layer .layui-layer-title {
  height: auto;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-slate-200);
  background: #fff;
  color: var(--color-slate-900);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

.draft-confirm-layer .layui-layer-content,
.precheck-layer .layui-layer-content {
  padding: 1.25rem;
  color: var(--color-slate-700);
}

.draft-confirm-layer .layui-layer-btn,
.precheck-layer .layui-layer-btn {
  padding: 0 1.25rem 1.25rem;
}

.draft-confirm-layer .layui-layer-btn a,
.precheck-layer .layui-layer-btn a {
  height: 2.5rem;
  min-width: 6.25rem;
  margin: 0 0.25rem;
  padding: 0 1rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  line-height: 2.375rem;
  font-weight: 700;
}

.draft-confirm-layer .layui-layer-btn .layui-layer-btn0,
.precheck-layer .layui-layer-btn .layui-layer-btn0 {
  border-color: transparent;
  background: var(--color-sky-500);
  color: #fff;
}

.draft-confirm-layer .layui-layer-btn .layui-layer-btn1,
.precheck-layer .layui-layer-btn .layui-layer-btn1 {
  border-color: var(--color-slate-200);
  background: #fff;
  color: var(--color-slate-700);
}

.draft-confirm-box,
.precheck-modal {
  display: grid;
  gap: 1rem;
}

.draft-confirm-desc,
.precheck-intro {
  color: var(--color-slate-600);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.draft-confirm-routes {
  display: grid;
  gap: 0.75rem;
}

.draft-confirm-route {
  padding: 0.875rem 1rem;
  border: 1px solid var(--color-slate-200);
  border-radius: 0.75rem;
  background: var(--color-slate-50);
}

.draft-confirm-route.is-highlight {
  border-color: rgba(14, 165, 233, 0.36);
  background: var(--color-sky-50);
}

.draft-confirm-label {
  margin-bottom: 0.25rem;
  color: var(--color-sky-700);
  font-size: 0.8125rem;
  line-height: 1.125rem;
  font-weight: 700;
}

.draft-confirm-value {
  color: var(--color-slate-900);
  font-size: 0.9375rem;
  line-height: 1.4;
  word-break: break-word;
}

.precheck-question {
  display: grid;
  gap: 0.625rem;
}

.precheck-label {
  color: var(--color-slate-800);
  font-size: 0.9375rem;
  line-height: 1.35;
  font-weight: 700;
}

.precheck-required {
  margin-left: 0.25rem;
  color: var(--color-red-500);
}

.precheck-options {
  display: grid;
  gap: 0.5rem;
}

.precheck-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--color-slate-200);
  border-radius: 0.75rem;
  background: #fff;
  color: var(--color-slate-700);
  cursor: pointer;
}

.precheck-option:hover {
  border-color: var(--color-sky-300);
  background: var(--color-sky-50);
}

.precheck-option input {
  width: 1rem;
  height: 1rem;
  accent-color: var(--color-sky-500);
}

.precheck-input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--color-slate-200);
  border-radius: 0.75rem;
  background: #fff;
  color: var(--color-slate-900);
  font-size: 0.9375rem;
  line-height: 1.5rem;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.precheck-input:focus {
  border-color: var(--color-sky-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.16);
}

.landing-review-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  width: 100%;
  padding: 0.25rem 0.25rem 2.75rem;
}

.landing-review-page-mobile {
  grid-template-columns: minmax(0, 1fr);
}

.landing-review-slide {
  min-width: 0;
  height: 100%;
}

.landing-review-slide .landing-review-card {
  height: 100%;
}

@media (max-width: 640px) {
  .tp-home-search-select .layui-form-select .layui-input {
    height: 3.25rem;
    font-size: 1rem;
  }

  .tp-home-search-select .layui-form-select dl {
    top: 3.5rem;
    max-height: 15rem;
  }

  .tp-draft-banner-inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .tp-draft-banner-copy {
    flex: 1 1 calc(100% - 3.125rem);
  }

  .tp-draft-banner-action {
    width: 100%;
  }

  .landing-review-page {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .tp-input:not(.tp-input-lg, .tp-input-md),
  .tp-select,
  .tp-textarea {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  outline: none;
  cursor: pointer;
}

.tp-btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.tp-btn:focus-visible,
.tp-badge:focus-visible {
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.tp-btn svg {
  flex-shrink: 0;
  pointer-events: none;
}

.tp-btn svg:not([class*="size-"]) {
  width: 1rem;
  height: 1rem;
}

.tp-btn-default {
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
}

.tp-btn-sm {
  min-height: 2rem;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
}

.tp-btn-lg {
  min-height: 2.5rem;
  padding: 0.5rem 1.5rem;
}

.tp-btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.tp-btn-primary:hover {
  background: color-mix(in srgb, var(--primary) 90%, #000);
}

.tp-btn-ghost:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}

.tp-btn-ghost-light {
  color: #fff;
}

.tp-btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.tp-btn-ghost-sky {
  color: var(--primary);
}

.tp-btn-nav {
  color: var(--color-slate-700);
}

.tp-btn-nav:hover {
  color: var(--color-sky-600);
  background: var(--color-sky-50);
}

.tp-btn-outline {
  border: 1px solid var(--border);
  background: var(--background);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.tp-btn-outline:hover {
  background: var(--accent);
  color: var(--accent-foreground);
}

.tp-btn-outline-light {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.tp-btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.tp-btn-gradient-sky {
  background-image: linear-gradient(
    135deg,
    var(--color-sky-500),
    var(--color-blue-600)
  );
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.25);
}

.tp-btn-gradient-sky:hover {
  background-image: linear-gradient(
    135deg,
    var(--color-sky-600),
    var(--color-blue-700)
  );
}

.tp-btn-gradient-green {
  background-image: linear-gradient(
    135deg,
    var(--color-green-500),
    var(--color-teal-600)
  );
}

.tp-btn-gradient-orange {
  background-image: linear-gradient(
    135deg,
    var(--color-orange-500),
    var(--color-amber-600)
  );
}

.tp-btn-gradient-pink {
  background-image: linear-gradient(
    135deg,
    var(--color-pink-500),
    var(--color-rose-600)
  );
}

.tp-btn-gradient-blue {
  background-image: linear-gradient(
    135deg,
    var(--color-blue-500),
    var(--color-indigo-600)
  );
}

.tp-btn-gradient-purple {
  background-image: linear-gradient(
    135deg,
    var(--color-purple-500),
    var(--color-pink-600)
  );
}

.tp-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: fit-content;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.tp-badge svg {
  width: 0.75rem;
  height: 0.75rem;
  pointer-events: none;
}

.tp-badge-solid {
  background: var(--primary);
  color: var(--primary-foreground);
}

.tp-badge-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
}

.tp-badge-info {
  background: var(--color-sky-100);
  color: var(--color-sky-700);
}

.tp-badge-chip {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5rem;
  background: var(--color-sky-100);
  color: var(--color-sky-700);
  cursor: pointer;
}

.tp-badge-chip:hover {
  background: var(--color-sky-200);
}

.tp-badge-success {
  background: var(--color-green-100);
  color: var(--color-green-700);
}

.tp-badge-warn {
  background: var(--color-yellow-100);
  color: var(--color-yellow-700);
}

.tp-badge-purple {
  background: var(--color-purple-100);
  color: var(--color-purple-700);
}

.tp-badge-amber {
  background: var(--color-amber-100);
  color: var(--color-amber-700);
}

.tp-badge-danger {
  background: var(--color-red-100);
  color: var(--color-red-700);
}

.tp-badge-blue {
  background: var(--color-blue-100);
  color: var(--color-blue-700);
}

.tp-badge-slate {
  background: var(--color-slate-100);
  color: var(--color-slate-700);
}

.tp-badge-outline-info {
  border-color: var(--color-sky-200);
  color: var(--color-sky-600);
  background: transparent;
}

.tp-section-head {
  margin-bottom: 3rem;
  text-align: center;
}

.tp-section-title {
  margin-bottom: 1rem;
  color: var(--color-slate-900);
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.tp-section-subtitle {
  max-width: 42rem;
  margin-inline: auto;
  color: var(--color-slate-600);
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.tp-dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.tp-dropdown-link:hover {
  background: var(--color-sky-50);
}

.tp-mobile-nav-link {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: var(--color-slate-700);
}

.tp-mobile-nav-link:hover {
  background: var(--color-sky-50);
  color: var(--color-sky-600);
}

.tp-mobile-subnav-link {
  display: block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: var(--color-slate-600);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.tp-mobile-subnav-link:hover {
  background: var(--color-sky-50);
  color: var(--color-sky-600);
}

.tp-mobile-group {
  border: 1px solid var(--color-slate-200);
  border-radius: 0.75rem;
  background: #fff;
  overflow: hidden;
}

.tp-mobile-group-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 1rem;
  color: var(--color-slate-800);
  font-weight: 600;
  text-align: left;
}

.tp-mobile-group-trigger svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.tp-mobile-group-trigger[data-state="open"] svg {
  transform: rotate(180deg);
}

.tp-mobile-group-content {
  padding: 0 0.5rem 0.5rem;
  border-top: 1px solid var(--color-slate-100);
  background: var(--color-slate-50);
}

.tp-mobile-group-content .tp-mobile-subnav-link {
  background: transparent;
}

.tp-hero-panel {
  padding: 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.tp-tag-link {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  background: var(--color-slate-100);
  color: var(--color-slate-700);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.tp-tag-link:hover {
  background: var(--color-sky-100);
  color: var(--color-sky-700);
}

.tp-hot-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tp-hot-label {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  color: var(--color-slate-500);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

.tp-tag-sm {
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  background: var(--color-sky-50);
  color: var(--color-sky-600);
  font-size: 0.75rem;
  line-height: 1rem;
}

.tp-country-chip {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-slate-200);
  border-radius: 0.75rem;
  background: #fff;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.tp-country-chip:hover {
  border-color: var(--color-sky-300);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  transform: translateY(-0.25rem);
}

.tp-info-row {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: var(--color-slate-50);
}

.tp-info-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
  color: var(--color-slate-400);
}

.tp-step-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--color-sky-500);
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
}

.tp-tabs-scroll {
  overflow-x: auto;
  padding-bottom: 0.25rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tp-tabs-scroll::-webkit-scrollbar {
  display: none;
}

.tp-tabs-list {
  min-width: max-content;
}

.tp-tabs-list [data-slot="tabs-trigger"] {
  flex: 0 0 auto;
}

.tp-tab-trigger {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  height: calc(100% - 1px);
  padding: 0.25rem 0.5rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  color: var(--foreground);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  outline: none;
  cursor: pointer;
}

.tp-tab-trigger[data-state="active"] {
  background: var(--background);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

.tp-tab-trigger:focus-visible,
.tp-select-trigger:focus-visible,
.tp-accordion-trigger:focus-visible {
  border-color: var(--color-sky-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

.tp-tab-trigger:disabled,
.tp-select-trigger:disabled,
.tp-accordion-trigger:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.tp-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: fit-content;
  height: 2.25rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--input);
  border-radius: 0.375rem;
  background: transparent;
  font-size: 0.875rem;
  line-height: 1.25rem;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  outline: none;
}

.tp-select-trigger [data-slot="select-value"] {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tp-select-trigger svg {
  flex-shrink: 0;
  pointer-events: none;
}

.tp-accordion-trigger {
  display: flex;
  flex: 1 1 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding-block: 1rem;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  transition:
    color 0.2s ease,
    box-shadow 0.2s ease;
  outline: none;
}

.tp-accordion-trigger:hover {
  text-decoration: underline;
}

.tp-accordion-trigger[data-state="open"] > svg {
  transform: rotate(180deg);
}

@media (min-width: 48rem) {
  .tp-hero-panel {
    padding: 2rem;
  }

  .tp-section-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 64rem) {
  .tp-hot-tags {
    padding-left: 3rem;
  }
}

body.tp-page .nav-group {
  position: relative;
}

body.tp-page .nav-group::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0.5rem;
}

body.tp-page .nav-dropdown {
  margin-top: 0 !important;
  padding-top: 0.5rem;
}

body.tp-page .nav-group:hover .nav-dropdown,
body.tp-page .nav-group:focus-within .nav-dropdown {
  display: block;
}

.tp-home-hero-photo {
  background-image:
    linear-gradient(90deg, rgba(240, 249, 255, 0.28), rgba(255, 255, 255, 0.04)),
    url("/assets/images/home/hero-travel.jpg");
  background-size: cover;
  background-position: center right;
  opacity: 0.98;
}

.tp-home-visual-card {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.875rem;
  border: 1px solid rgba(186, 230, 253, 0.8);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(16px);
}

.tp-home-visual-card img {
  width: 5rem;
  height: 4.25rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.tp-home-visual-card span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-sky-600);
  font-size: 0.8125rem;
  line-height: 1.125rem;
  font-weight: 700;
}

.tp-home-visual-card strong {
  display: block;
  color: var(--color-slate-900);
  font-size: 0.9375rem;
  line-height: 1.35rem;
}

.tp-home-visa-types {
  position: relative;
  z-index: 1;
}

.tp-home-visa-types .tp-card {
  display: block;
  min-height: 8.625rem;
  padding: 1.5rem;
  border: 1px solid var(--color-slate-200);
  border-radius: 0.875rem;
  background: #fff;
  color: var(--color-slate-900);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.tp-home-visa-types .tp-card:hover {
  border-color: var(--color-sky-200);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  transform: translateY(-0.25rem);
}

.tp-home-visa-types .tp-card > .flex {
  gap: 1rem;
}

.tp-home-visa-types .tp-card > .flex > div:first-child {
  flex: 0 0 3.5rem;
}

.tp-home-visa-types .tp-card h3 {
  margin-bottom: 0.25rem;
  color: var(--color-slate-900);
  line-height: 1.35;
}

.tp-home-visa-types .tp-card p {
  color: var(--color-slate-500);
}

.tp-home-visa-types .tp-tag-sm {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  padding: 0.25rem 0.625rem;
  background: var(--color-sky-50);
  color: var(--color-sky-700);
  font-weight: 500;
}

.tp-home-visa-types .tp-card svg {
  color: #fff;
}

.tp-home-news .tp-card {
  background: rgba(255, 255, 255, 0.96);
}

.tp-news-image {
  position: relative;
  overflow: hidden;
  background: var(--color-slate-100);
}

.tp-news-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.tp-card:hover .tp-news-image img {
  transform: scale(1.04);
}

.tp-news-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 0.8125rem;
  line-height: 1.125rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.tp-home-destinations {
  position: relative;
}

.tp-home-destinations .tp-card {
  gap: 0;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.tp-home-destinations .tp-card:hover {
  border-color: rgba(14, 165, 233, 0.35);
  box-shadow: 0 24px 60px rgba(14, 165, 233, 0.16);
  transform: translateY(-3px);
}

.tp-home-destinations .tp-card > div:first-child {
  min-height: 11.5rem;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.tp-home-destinations .tp-card > div:first-child::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.5)),
    linear-gradient(90deg, rgba(14, 165, 233, 0.35), rgba(37, 99, 235, 0.12));
}

.tp-home-destinations .tp-card > div:first-child > div:last-child {
  position: relative;
  z-index: 1;
}

.tp-home-destinations .tp-card:nth-child(1) > div:first-child {
  background-image: url("/assets/images/home/hero-travel.jpg");
}

.tp-home-destinations .tp-card:nth-child(2) > div:first-child {
  background-image: url("/assets/images/home/travel-scene.jpg");
}

.tp-home-destinations .tp-card:nth-child(3) > div:first-child {
  background-image: url("/assets/images/home/travel-planning.jpg");
}

.tp-home-destinations .tp-card:nth-child(4) > div:first-child {
  background-image: url("/assets/images/home/business-office.jpg");
}

.tp-home-destinations .tp-card:nth-child(5) > div:first-child {
  background-image: url("/assets/images/home/consultant.jpg");
}

.tp-home-destinations .tp-card:nth-child(6) > div:first-child {
  background-image: url("/assets/images/home/visa-documents.jpg");
}

.tp-home-destinations .tp-card > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 1.25rem;
}

.tp-home-destinations .tp-card > div:last-child > div:first-child {
  margin-bottom: 0;
}

.tp-home-destinations .tp-card > div:last-child > div:first-child > div {
  display: none;
}

.tp-home-destinations .tp-card > div:last-child > div:nth-child(2) {
  display: grid;
  gap: 0.375rem;
  margin-bottom: 0;
}

.tp-home-destinations .tp-card > div:last-child > div:nth-child(2) svg {
  color: var(--color-sky-500);
}

.tp-home-destinations .tp-card > div:last-child > div:nth-child(3) {
  margin-bottom: 0;
}

.tp-home-destinations .tp-card > div:last-child > div:nth-child(3) span {
  background: var(--color-sky-50);
  color: var(--color-slate-700);
}

.tp-home-destinations .tp-card [data-slot="button"] {
  min-height: 2.5rem;
  margin-top: 0.125rem;
  border-radius: 0.75rem;
  box-shadow: none;
}

.tp-home-cases {
  overflow: hidden;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background:
    radial-gradient(circle at 10% 0%, rgba(14, 165, 233, 0.08), transparent 26rem),
    linear-gradient(180deg, #fff 0%, var(--color-slate-50) 100%);
}

.tp-case-more {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.625rem 1rem;
  border: 1px solid var(--color-sky-200);
  border-radius: 9999px;
  background: #fff;
  color: var(--color-sky-700);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.1);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.tp-case-more:hover {
  border-color: var(--color-sky-300);
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.16);
  transform: translateY(-1px);
}

.tp-case-marquee {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  max-width: 60%;
  margin-top: 10px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.tp-case-marquee::before,
.tp-case-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 4rem;
  height: 100%;
  pointer-events: none;
}

.tp-case-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--color-slate-50), rgba(248, 250, 252, 0));
}

.tp-case-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--color-slate-50), rgba(248, 250, 252, 0));
}

.tp-case-track {
  display: flex;
  width: max-content;
  animation: tp-case-scroll 42s linear infinite;
}

.tp-case-group {
  display: flex;
  flex: 0 0 auto;
  gap: 1rem;
  padding-right: 1rem;
}

.tp-case-card {
  width: 19rem;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.tp-case-image {
  position: relative;
  height: 8.5rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(37, 99, 235, 0.92));
}

.tp-case-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.tp-case-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.36));
}

.tp-case-image-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 900;
}

.tp-case-image.is-fallback .tp-case-image-fallback,
.tp-case-image:not(:has(img)) .tp-case-image-fallback {
  display: flex;
}

.tp-case-body {
  display: flex;
  min-height: 12.5rem;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.125rem;
}

.tp-case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tp-case-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 1.625rem;
  padding-inline: 0.625rem;
  border-radius: 9999px;
  background: var(--color-slate-100);
  color: var(--color-slate-600);
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 700;
}

.tp-case-body h3 {
  color: var(--color-slate-900);
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 900;
}

.tp-case-result {
  width: fit-content;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.12);
  color: var(--color-emerald-600);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 800;
}

.tp-case-body p {
  color: var(--color-slate-600);
  font-size: 0.875rem;
  line-height: 1.625rem;
}

@keyframes tp-case-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tp-case-track {
    animation: none;
  }
}

.tp-home-process .tp-process-cta {
  min-height: 3rem;
  padding: 0.75rem 1.75rem;
  border-radius: 0.875rem;
  background: #fff;
  color: var(--color-sky-600);
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 800;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.22);
}

.tp-home-process .tp-process-cta:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-blue-700);
  transform: translateY(-1px);
}

.tp-home-process .tp-process-cta svg {
  width: 1.125rem;
  height: 1.125rem;
}

.tp-friend-links {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.tp-friend-links-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tp-friend-links-head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.tp-friend-links-head h2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0;
  color: #fff;
}

.tp-friend-links-head h2::before {
  content: "";
  width: 0.25rem;
  height: 1rem;
  border-radius: 9999px;
  background: var(--color-sky-500);
}

.tp-friend-links-head p {
  margin: 0;
  color: var(--color-slate-500);
  font-size: 0.875rem;
  line-height: 1.5rem;
}

.tp-friend-links-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.625rem;
  column-gap: 0;
  margin-inline: -0.75rem;
}

.tp-friend-link {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  padding-inline: 0.75rem;
  border-right: 1px solid rgba(148, 163, 184, 0.22);
  color: var(--color-slate-400);
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: color 0.2s ease;
}

.tp-friend-link:last-child {
  border-right: 0;
}

.tp-friend-link:hover {
  color: var(--color-sky-400);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.tp-home-trust {
  background:
    linear-gradient(180deg, #fff, var(--color-slate-50));
}

.tp-home-trust .tp-section-head {
  margin-bottom: 2.5rem;
}

.tp-home-trust .grid > div {
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.h-40 {
  height: 10rem;
}

.h-44 {
  height: 11rem;
}

.p-7 {
  padding: 1.75rem;
}

.items-end {
  align-items: flex-end;
}

@media (min-width: 40rem) {
  .sm\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .sm\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .sm\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .sm\:h-full {
    height: 100%;
  }
}

@media (min-width: 48rem) {
  .md\:p-10 {
    padding: 2.5rem;
  }
}

@media (min-width: 64rem) {
  .tp-friend-links-inner {
    display: grid;
    grid-template-columns: 20rem minmax(0, 1fr);
    align-items: center;
  }

  .lg\:grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }
}

.tp-header-contact {
  display: none;
  gap: 0.5rem;
}

.tp-header-contact-number {
  display: none;
}

@media (min-width: 48rem) {
  .tp-header-contact {
    display: flex;
  }
}

@media (min-width: 80rem) {
  .tp-header-contact-number {
    display: inline;
  }
}

@media (max-width: 63.9375rem) {
  body.tp-page .mobile-menu {
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .tp-mobile-nav-link {
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-slate-200);
    background: #fff;
    font-weight: 600;
  }

  .tp-mobile-subnav-link {
    padding-inline: 0.75rem;
  }

  .tp-tabs-scroll {
    margin-inline: -1rem;
    padding-inline: 1rem;
  }

  .tp-tabs-list {
    justify-content: flex-start;
  }

  .tp-tabs-list [data-slot="tabs-trigger"] {
    min-width: 5.5rem;
    padding-inline: 0.875rem;
  }
}

body.tp-page .tp-site-header .hidden {
  display: none;
}

@media (min-width: 48rem) {
  body.tp-page .tp-site-header .md\:flex {
    display: flex;
  }
}

@media (min-width: 64rem) {
  body.tp-page .tp-site-header .lg\:flex {
    display: flex;
  }

  body.tp-page .tp-site-header .lg\:hidden {
    display: none;
  }
}

/* Header/Footer layout hardening after raw layui.css */
body.tp-page .tp-site-header > .container,
body.tp-page .tp-site-footer > .container,
body.tp-page .tp-site-footer > .border-t > .container {
  width: 100%;
  max-width: 80rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

body.tp-page .tp-site-header > .container > .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  gap: 1.5rem;
}

body.tp-page .tp-site-header .tp-brand-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--color-slate-900);
  min-width: 0;
  padding: 0.25rem 0;
}

body.tp-page .tp-site-header .tp-brand-logo {
  display: block;
  width: auto;
  height: 2.55rem;
  max-width: 15.5rem;
  object-fit: contain;
}

@media (max-width: 640px) {
  body.tp-page .tp-site-header .tp-brand-logo {
    height: 2.25rem;
    max-width: 12rem;
  }
}

body.tp-page .tp-site-header nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

body.tp-page .tp-site-header .tp-btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  color: var(--color-slate-700);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}

body.tp-page .tp-site-header .tp-btn-nav svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
}

body.tp-page .tp-site-header .nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  width: 37.5rem;
  margin-top: 0;
  padding: 1.5rem;
  border: 1px solid var(--color-slate-200);
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.18);
}

body.tp-page .tp-site-header .nav-dropdown .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.tp-page .tp-site-header .tp-dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

body.tp-page .tp-site-header > .container > .flex > div:last-child {
  display: flex;
  align-items: center;
  gap: 1rem;
}

body.tp-page .tp-site-header [data-mobile-toggle] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
}

body.tp-page .tp-site-header [data-mobile-menu] {
  display: none;
}

body.tp-page .tp-site-header [data-mobile-menu].open {
  display: block;
}

body.tp-page .tp-site-header .tp-mobile-group + .tp-mobile-group,
body.tp-page .tp-site-header .tp-mobile-group + div,
body.tp-page .tp-site-header .mobile-menu > div > div + div {
  margin-top: 0.5rem;
}

body.tp-page .tp-site-footer {
  padding: 0;
}

body.tp-page .tp-site-footer > .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

body.tp-page .tp-site-footer > .container > .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

body.tp-page .tp-site-footer > .container > .grid > div {
  min-width: 0;
}

body.tp-page .tp-site-footer .tp-footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.875rem;
  background: #fff;
  color: #fff;
  box-shadow: 0 14px 34px rgba(2, 132, 199, 0.18);
}

body.tp-page .tp-site-footer .tp-footer-logo {
  display: block;
  width: auto;
  height: 3rem;
  max-width: 15.5rem;
  object-fit: contain;
}

body.tp-page .tp-site-footer > .container > .grid > div:first-child p {
  margin-bottom: 1.5rem;
  color: var(--color-slate-400);
  line-height: 1.625;
}

body.tp-page .tp-site-footer .space-y-3 > * + * {
  margin-top: 0.75rem;
}

body.tp-page .tp-site-footer .space-y-3 .flex {
  display: flex;
  align-items: center;
}

body.tp-page .tp-site-footer .space-y-3 svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.75rem;
  color: var(--color-sky-400);
  flex: 0 0 auto;
}

body.tp-page .tp-site-footer li + li {
  margin-top: 0.75rem;
}

body.tp-page .tp-site-footer li a,
body.tp-page .tp-site-footer .border-t a {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

body.tp-page .tp-site-footer > .border-t {
  border-top: 1px solid var(--color-slate-800);
}

body.tp-page .tp-site-footer > .border-t > .container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

body.tp-page .tp-site-footer > .border-t .flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body.tp-page .tp-site-footer > .border-t .flex .flex {
  flex-direction: row;
  gap: 1.5rem;
}

@media (min-width: 48rem) {
  body.tp-page .tp-site-footer > .container > .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.tp-page .tp-site-footer > .border-t .flex {
    flex-direction: row;
  }
}

@media (min-width: 64rem) {
  body.tp-page .tp-site-header nav {
    display: flex;
  }

  body.tp-page .tp-site-header [data-mobile-toggle],
  body.tp-page .tp-site-header [data-mobile-menu],
  body.tp-page .tp-site-header [data-mobile-menu].open {
    display: none;
  }

  body.tp-page .tp-site-footer > .container > .grid {
    grid-template-columns: minmax(0, 1.25fr) repeat(4, minmax(0, 1fr));
  }
}
