@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-semibold.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-bold.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/syne-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/syne-semibold.woff2') format('woff2');
}
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/syne-bold.woff2') format('woff2');
}

:root {
  --tbp-font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --tbp-font-heading: 'Syne', -apple-system, BlinkMacSystemFont, Georgia, serif;
  --tbp-bg-dark: #0f1215;
  --tbp-bg-dark-card: #171b1f;
  --tbp-bg-dark-surface: #20262b;
  --tbp-bg-light: #f6f5f2;
  --tbp-bg-white: #ffffff;
  --tbp-bg-warm: #eceae4;
  --tbp-text-dark: #121518;
  --tbp-text-muted: #6b7280;
  --tbp-text-light: #f3f4f6;
  --tbp-text-light-muted: #9ca3af;
  --tbp-accent-pine: #1b3832;
  --tbp-accent-pine-hover: #264e46;
  --tbp-accent-gold: #c39b53;
  --tbp-accent-gold-hover: #d8af65;
  --tbp-accent-sand: #e6dfd5;
  --tbp-border-dark: rgba(255, 255, 255, 0.1);
  --tbp-border-light: rgba(0, 0, 0, 0.08);
  --tbp-radius-sm: 8px;
  --tbp-radius-md: 14px;
  --tbp-radius-lg: 24px;
  --tbp-radius-pill: 9999px;
  --tbp-shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.06);
  --tbp-shadow-deep: 0 16px 36px rgba(0, 0, 0, 0.25);
  --tbp-transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--tbp-font-main);
  background-color: var(--tbp-bg-light);
  color: var(--tbp-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--tbp-font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 0.875rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--tbp-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.tbp-container {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.tbp-container-narrow {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

.tbp-topbar {
  background-color: var(--tbp-bg-dark);
  color: var(--tbp-text-light-muted);
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--tbp-border-dark);
  padding: 6px 0;
}

.tbp-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tbp-topbar-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.tbp-topbar-item {
  display: inline-flex;
  align-items: center;
}

.tbp-topbar-item span {
  color: var(--tbp-accent-gold);
  font-weight: 600;
  margin-right: 6px;
}

.tbp-lang-switch {
  display: flex;
  align-items: center;
}

.tbp-lang-link {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--tbp-text-light-muted);
  border: 1px solid transparent;
}

.tbp-lang-link.tbp-lang-active {
  color: #ffffff;
  background-color: var(--tbp-accent-pine);
  border-color: rgba(255, 255, 255, 0.2);
}

.tbp-lang-link:hover:not(.tbp-lang-active) {
  color: #ffffff;
}

.tbp-lang-divider {
  margin: 0 4px;
  color: var(--tbp-border-dark);
}

.tbp-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(15, 18, 21, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--tbp-border-dark);
}

.tbp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.tbp-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.tbp-brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

.tbp-nav-desktop {
  display: flex;
  align-items: center;
}

.tbp-nav-list {
  display: flex;
  align-items: center;
}

.tbp-nav-item {
  margin-left: 14px;
}

.tbp-nav-link {
  font-size: 0.84rem;
  font-weight: 500;
  color: #e2e4e8;
  padding: 6px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.tbp-nav-link:hover, .tbp-nav-link.tbp-nav-active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.tbp-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 16px;
  flex-shrink: 0;
}

.tbp-burger-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--tbp-border-dark);
  border-radius: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.tbp-burger-line {
  width: 20px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--tbp-transition);
}

.tbp-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  background-color: var(--tbp-bg-dark);
  border-left: 1px solid var(--tbp-border-dark);
  z-index: 1001;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tbp-drawer.tbp-drawer-open {
  right: 0;
}

.tbp-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.tbp-drawer-backdrop.tbp-backdrop-visible {
  opacity: 1;
  visibility: visible;
}

.tbp-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--tbp-border-dark);
}

.tbp-drawer-close {
  background: transparent;
  border: 1px solid var(--tbp-border-dark);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.tbp-drawer-nav {
  margin-top: 18px;
  margin-bottom: 18px;
}

.tbp-drawer-list {
  display: flex;
  flex-direction: column;
}

.tbp-drawer-item {
  margin-bottom: 2px;
}

.tbp-drawer-link {
  display: block;
  font-family: var(--tbp-font-heading);
  font-size: 1.05rem;
  color: #e5e7eb;
  padding: 8px 12px;
  border-radius: 6px;
}

.tbp-drawer-link:hover, .tbp-drawer-link.tbp-nav-active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.tbp-drawer-footer {
  padding-top: 16px;
  border-top: 1px solid var(--tbp-border-dark);
}

.tbp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: var(--tbp-radius-pill);
  transition: var(--tbp-transition);
  cursor: pointer;
  border: 1px solid transparent;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.tbp-btn-primary {
  background-color: var(--tbp-accent-pine);
  color: #ffffff;
  border-color: var(--tbp-accent-pine);
}

.tbp-btn-primary:hover {
  background-color: var(--tbp-accent-pine-hover);
  border-color: var(--tbp-accent-pine-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(27, 56, 50, 0.3);
}

.tbp-btn-gold {
  background-color: var(--tbp-accent-gold);
  color: #121518;
  border-color: var(--tbp-accent-gold);
}

.tbp-btn-gold:hover {
  background-color: var(--tbp-accent-gold-hover);
  border-color: var(--tbp-accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(195, 155, 83, 0.3);
}

.tbp-btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.tbp-btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.tbp-btn-outline-dark {
  background-color: transparent;
  color: var(--tbp-text-dark);
  border-color: rgba(0, 0, 0, 0.2);
}

.tbp-btn-outline-dark:hover {
  background-color: var(--tbp-text-dark);
  color: #ffffff;
  border-color: var(--tbp-text-dark);
}

.tbp-btn-sm {
  font-size: 0.75rem;
  padding: 6px 14px;
}

.tbp-btn-lg {
  font-size: 0.9375rem;
  padding: 12px 28px;
}

.tbp-btn-block {
  width: 100%;
}

.tbp-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--tbp-radius-pill);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tbp-badge-gold {
  background-color: rgba(195, 155, 83, 0.15);
  color: var(--tbp-accent-gold);
  border: 1px solid rgba(195, 155, 83, 0.3);
}

.tbp-badge-dark {
  background-color: rgba(0, 0, 0, 0.06);
  color: var(--tbp-text-dark);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.tbp-badge-pine {
  background-color: rgba(27, 56, 50, 0.15);
  color: var(--tbp-accent-pine);
  border: 1px solid rgba(27, 56, 50, 0.25);
}

.tbp-hero-cinematic {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background-color: var(--tbp-bg-dark);
  color: #ffffff;
  overflow: hidden;
  padding: 60px 0;
}

.tbp-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tbp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.tbp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 18, 21, 0.35) 0%, rgba(15, 18, 21, 0.85) 100%);
  z-index: 2;
}

.tbp-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.tbp-hero-title {
  font-size: 2.85rem;
  margin-top: 14px;
  margin-bottom: 16px;
  color: #ffffff;
}

.tbp-hero-lead {
  font-size: 1.05rem;
  color: #d1d5db;
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 650px;
}

.tbp-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tbp-hero-inner-page {
  position: relative;
  padding: 60px 0 40px;
  background-color: var(--tbp-bg-dark);
  color: #ffffff;
  overflow: hidden;
}

.tbp-hero-inner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
  z-index: 1;
}

.tbp-hero-inner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tbp-hero-inner-content {
  position: relative;
  z-index: 2;
  max-width: 840px;
}

.tbp-hero-inner-title {
  font-size: 2.35rem;
  margin-top: 10px;
  margin-bottom: 12px;
}

.tbp-hero-inner-desc {
  font-size: 1rem;
  color: var(--tbp-text-light-muted);
  max-width: 680px;
}

.tbp-breadcrumbs {
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: var(--tbp-text-light-muted);
  margin-bottom: 12px;
}

.tbp-breadcrumbs a {
  color: #ffffff;
}

.tbp-breadcrumbs a:hover {
  color: var(--tbp-accent-gold);
}

.tbp-breadcrumbs-sep {
  margin: 0 6px;
  opacity: 0.5;
}

.tbp-section {
  padding: 60px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

.tbp-section-dark {
  background-color: var(--tbp-bg-dark);
  color: #ffffff;
}

.tbp-section-warm {
  background-color: var(--tbp-bg-warm);
}

.tbp-section-white {
  background-color: var(--tbp-bg-white);
}

.tbp-section-header {
  margin-bottom: 36px;
}

.tbp-section-header.tbp-text-center {
  text-align: center;
}

.tbp-section-title {
  font-size: 2rem;
  margin-top: 10px;
  margin-bottom: 12px;
}

.tbp-section-subtitle {
  font-size: 0.9375rem;
  color: var(--tbp-text-muted);
  max-width: 640px;
}

.tbp-section-dark .tbp-section-subtitle {
  color: var(--tbp-text-light-muted);
}

.tbp-section-header.tbp-text-center .tbp-section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.tbp-split-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.tbp-split-row:last-child {
  margin-bottom: 0;
}

.tbp-split-reverse {
  flex-direction: row-reverse;
}

.tbp-split-col-text {
  width: 48%;
}

.tbp-split-col-media {
  width: 48%;
}

.tbp-split-title {
  font-size: 1.75rem;
  margin-top: 10px;
  margin-bottom: 14px;
}

.tbp-split-desc {
  font-size: 0.9375rem;
  color: var(--tbp-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.tbp-section-dark .tbp-split-desc {
  color: var(--tbp-text-light-muted);
}

.tbp-media-frame {
  position: relative;
  border-radius: var(--tbp-radius-md);
  overflow: hidden;
  box-shadow: var(--tbp-shadow-soft);
}

.tbp-media-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.tbp-media-frame:hover img {
  transform: scale(1.02);
}

.tbp-card-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
  margin-bottom: -24px;
}

.tbp-card-col-3 {
  width: 33.333%;
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
  display: flex;
}

.tbp-card-col-4 {
  width: 25%;
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
  display: flex;
}

.tbp-card-col-2 {
  width: 50%;
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
  display: flex;
}

.tbp-card {
  width: 100%;
  background-color: var(--tbp-bg-white);
  border-radius: var(--tbp-radius-md);
  overflow: hidden;
  box-shadow: var(--tbp-shadow-soft);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--tbp-border-light);
  transition: var(--tbp-transition);
}

.tbp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.tbp-card-dark {
  background-color: var(--tbp-bg-dark-card);
  border-color: var(--tbp-border-dark);
  color: #ffffff;
}

.tbp-card-dark:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  border-color: rgba(195, 155, 83, 0.3);
}

.tbp-card-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.tbp-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tbp-card:hover .tbp-card-img-wrap img {
  transform: scale(1.04);
}

.tbp-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.tbp-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tbp-card-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.tbp-card-text {
  font-size: 0.875rem;
  color: var(--tbp-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.tbp-card-dark .tbp-card-text {
  color: var(--tbp-text-light-muted);
}

.tbp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--tbp-border-light);
}

.tbp-card-dark .tbp-card-footer {
  border-top-color: var(--tbp-border-dark);
}

.tbp-card-meta {
  font-size: 0.75rem;
  color: var(--tbp-text-muted);
  font-weight: 500;
}

.tbp-card-dark .tbp-card-meta {
  color: var(--tbp-accent-gold);
}

.tbp-feature-list {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  margin-bottom: 18px;
}

.tbp-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.875rem;
}

.tbp-feature-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--tbp-accent-gold);
  margin-right: 10px;
  margin-top: 6px;
  flex-shrink: 0;
}

.tbp-facts-strip {
  background-color: var(--tbp-accent-pine);
  color: #ffffff;
  padding: 30px 0;
}

.tbp-facts-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.tbp-fact-item {
  text-align: center;
  padding: 8px 16px;
}

.tbp-fact-number {
  font-family: var(--tbp-font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--tbp-accent-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.tbp-fact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
}

.tbp-inquiry-box {
  background-color: var(--tbp-bg-dark-card);
  border: 1px solid var(--tbp-border-dark);
  border-radius: var(--tbp-radius-md);
  padding: 30px;
  color: #ffffff;
  box-shadow: var(--tbp-shadow-deep);
}

.tbp-form-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -12px;
}

.tbp-form-col-2 {
  width: 50%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 12px;
}

.tbp-form-col-3 {
  width: 33.333%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 12px;
}

.tbp-form-col-1 {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 12px;
}

.tbp-form-group {
  display: flex;
  flex-direction: column;
}

.tbp-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--tbp-text-light-muted);
  margin-bottom: 6px;
}

.tbp-input, .tbp-select, .tbp-textarea {
  width: 100%;
  background-color: var(--tbp-bg-dark-surface);
  border: 1px solid var(--tbp-border-dark);
  border-radius: var(--tbp-radius-sm);
  color: #ffffff;
  padding: 10px 14px;
  font-size: 0.875rem;
  transition: var(--tbp-transition);
}

.tbp-input:focus, .tbp-select:focus, .tbp-textarea:focus {
  outline: none;
  border-color: var(--tbp-accent-gold);
  background-color: #272f36;
}

.tbp-input-light, .tbp-select-light, .tbp-textarea-light {
  background-color: var(--tbp-bg-white);
  border-color: var(--tbp-border-light);
  color: var(--tbp-text-dark);
}

.tbp-input-light:focus, .tbp-select-light:focus, .tbp-textarea-light:focus {
  background-color: #ffffff;
  border-color: var(--tbp-accent-pine);
}

.tbp-form-notice {
  font-size: 0.75rem;
  color: var(--tbp-text-light-muted);
  line-height: 1.5;
  margin-top: 12px;
}

.tbp-alert {
  padding: 12px 16px;
  border-radius: var(--tbp-radius-sm);
  font-size: 0.8125rem;
  margin-bottom: 18px;
}

.tbp-alert-info {
  background-color: rgba(195, 155, 83, 0.12);
  border: 1px solid rgba(195, 155, 83, 0.3);
  color: #e5e7eb;
}

.tbp-alert-success {
  background-color: rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(46, 125, 50, 0.35);
  color: #81c784;
}

.tbp-accordion-item {
  background-color: var(--tbp-bg-white);
  border: 1px solid var(--tbp-border-light);
  border-radius: var(--tbp-radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--tbp-transition);
}

.tbp-accordion-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--tbp-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--tbp-text-dark);
}

.tbp-accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--tbp-bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
  font-size: 0.875rem;
}

.tbp-accordion-item.tbp-accordion-active .tbp-accordion-icon {
  transform: rotate(45deg);
  background-color: var(--tbp-accent-pine);
  color: #ffffff;
}

.tbp-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
  font-size: 0.875rem;
  color: var(--tbp-text-muted);
  line-height: 1.6;
}

.tbp-accordion-item.tbp-accordion-active .tbp-accordion-body {
  padding-bottom: 18px;
}

.tbp-legal-content {
  background-color: var(--tbp-bg-white);
  border-radius: var(--tbp-radius-md);
  padding: 36px 30px;
  border: 1px solid var(--tbp-border-light);
  box-shadow: var(--tbp-shadow-soft);
}

.tbp-legal-intro {
  font-size: 0.9375rem;
  color: var(--tbp-text-muted);
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--tbp-border-light);
}

.tbp-legal-section {
  margin-bottom: 28px;
}

.tbp-legal-section:last-child {
  margin-bottom: 0;
}

.tbp-legal-heading {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--tbp-text-dark);
}

.tbp-legal-text {
  font-size: 0.875rem;
  color: var(--tbp-text-muted);
  line-height: 1.65;
  margin-bottom: 10px;
}

.tbp-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0;
}

.tbp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
  text-align: left;
}

.tbp-table th {
  background-color: var(--tbp-bg-warm);
  color: var(--tbp-text-dark);
  font-weight: 600;
  padding: 10px 14px;
  border: 1px solid var(--tbp-border-light);
}

.tbp-table td {
  padding: 10px 14px;
  border: 1px solid var(--tbp-border-light);
  color: var(--tbp-text-muted);
}

.tbp-table tr:nth-child(even) td {
  background-color: rgba(0, 0, 0, 0.02);
}

.tbp-disclaimer-box {
  background-color: var(--tbp-bg-warm);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--tbp-radius-sm);
  padding: 18px 22px;
  margin: 22px 0;
  font-size: 0.8125rem;
  color: var(--tbp-text-muted);
  line-height: 1.55;
}

.tbp-disclaimer-box strong {
  color: var(--tbp-text-dark);
}

.tbp-footer {
  background-color: var(--tbp-bg-dark);
  color: var(--tbp-text-light-muted);
  padding: 50px 0 24px;
  border-top: 1px solid var(--tbp-border-dark);
}

.tbp-footer-top {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--tbp-border-dark);
}

.tbp-footer-col-about {
  width: 35%;
  padding-left: 16px;
  padding-right: 16px;
}

.tbp-footer-col-nav {
  width: 20%;
  padding-left: 16px;
  padding-right: 16px;
}

.tbp-footer-col-legal {
  width: 20%;
  padding-left: 16px;
  padding-right: 16px;
}

.tbp-footer-col-contact {
  width: 25%;
  padding-left: 16px;
  padding-right: 16px;
}

.tbp-footer-heading {
  font-family: var(--tbp-font-heading);
  font-size: 0.9375rem;
  color: #ffffff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tbp-footer-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.tbp-footer-list {
  display: flex;
  flex-direction: column;
}

.tbp-footer-item {
  margin-bottom: 8px;
}

.tbp-footer-link {
  font-size: 0.8125rem;
  color: var(--tbp-text-light-muted);
}

.tbp-footer-link:hover {
  color: var(--tbp-accent-gold);
}

.tbp-footer-middle {
  padding: 22px 0;
  border-bottom: 1px solid var(--tbp-border-dark);
}

.tbp-responsible-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.tbp-responsible-left {
  display: flex;
  align-items: center;
}

.tbp-age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #d32f2f;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  margin-right: 12px;
  flex-shrink: 0;
}

.tbp-responsible-text {
  font-size: 0.75rem;
  max-width: 580px;
  line-height: 1.45;
}

.tbp-responsible-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tbp-responsible-tag {
  font-size: 0.6875rem;
  padding: 4px 10px;
  border-radius: var(--tbp-radius-pill);
  border: 1px solid var(--tbp-border-dark);
  color: var(--tbp-text-light-muted);
  background-color: var(--tbp-bg-dark-card);
}

.tbp-responsible-tag:hover {
  color: #ffffff;
  border-color: var(--tbp-accent-gold);
}

.tbp-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  font-size: 0.75rem;
}

.tbp-cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 400px;
  background-color: var(--tbp-bg-dark-card);
  border: 1px solid var(--tbp-border-dark);
  border-radius: var(--tbp-radius-md);
  padding: 18px;
  color: #ffffff;
  box-shadow: var(--tbp-shadow-deep);
  z-index: 999;
  display: none;
  flex-direction: column;
}

.tbp-cookie-title {
  font-family: var(--tbp-font-heading);
  font-size: 1rem;
  margin-bottom: 6px;
}

.tbp-cookie-text {
  font-size: 0.75rem;
  color: var(--tbp-text-light-muted);
  line-height: 1.45;
  margin-bottom: 12px;
}

.tbp-cookie-actions {
  display: flex;
  gap: 8px;
}

.tbp-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.tbp-modal-box {
  background-color: var(--tbp-bg-dark-card);
  border: 1px solid var(--tbp-border-dark);
  border-radius: var(--tbp-radius-md);
  max-width: 560px;
  width: 100%;
  padding: 28px;
  color: #ffffff;
  position: relative;
  box-shadow: var(--tbp-shadow-deep);
}

.tbp-modal-title {
  font-family: var(--tbp-font-heading);
  font-size: 1.35rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.tbp-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.35rem;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .tbp-nav-desktop {
    display: none !important;
  }
  .tbp-burger-btn {
    display: flex !important;
  }
  .tbp-header-inner {
    height: 64px;
  }
}

@media (max-width: 992px) {
  .tbp-topbar {
    display: none;
  }
  .tbp-split-row {
    flex-direction: column;
    margin-bottom: 36px;
  }
  .tbp-split-reverse {
    flex-direction: column;
  }
  .tbp-split-col-text {
    width: 100%;
    margin-bottom: 22px;
  }
  .tbp-split-col-media {
    width: 100%;
  }
  .tbp-card-col-3 {
    width: 50%;
  }
  .tbp-card-col-4 {
    width: 50%;
  }
  .tbp-footer-col-about {
    width: 100%;
    margin-bottom: 24px;
  }
  .tbp-footer-col-nav {
    width: 33.333%;
  }
  .tbp-footer-col-legal {
    width: 33.333%;
  }
  .tbp-footer-col-contact {
    width: 33.333%;
  }
  .tbp-hero-title {
    font-size: 2.35rem;
  }
}

@media (max-width: 768px) {
  .tbp-container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .tbp-container-narrow {
    padding-left: 12px;
    padding-right: 12px;
  }
  .tbp-header-inner {
    height: 58px;
  }
  .tbp-brand-logo {
    height: 32px;
  }
  .tbp-header-actions .tbp-btn {
    padding: 5px 12px;
    font-size: 0.75rem;
  }
  .tbp-burger-btn {
    width: 36px;
    height: 36px;
    padding: 7px;
  }
  .tbp-card-col-3, .tbp-card-col-4, .tbp-card-col-2 {
    width: 100%;
  }
  .tbp-form-col-2, .tbp-form-col-3 {
    width: 100%;
  }
  .tbp-footer-col-nav, .tbp-footer-col-legal, .tbp-footer-col-contact {
    width: 100%;
    margin-bottom: 20px;
  }
  .tbp-hero-title {
    font-size: 1.85rem;
  }
  .tbp-hero-inner-title {
    font-size: 1.7rem;
  }
  .tbp-section {
    padding: 34px 0;
  }
  .tbp-section-title {
    font-size: 1.6rem;
  }
  .tbp-split-title {
    font-size: 1.45rem;
  }
  .tbp-legal-content {
    padding: 20px 14px;
  }
  .tbp-inquiry-box {
    padding: 20px 14px;
  }
  .tbp-card-body {
    padding: 16px;
  }
  .tbp-cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    max-width: none;
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .tbp-header-actions .tbp-btn {
    display: none;
  }
  .tbp-hero-buttons .tbp-btn {
    width: 100%;
  }
}
