.ti-main {
      background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
      color: #0f172a;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      min-height: 100vh;
    }

    .ti-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 32px 100px;
    }

    .ti-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
      border: 1px solid #0ea5e9;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #0369a1;
      margin-bottom: 24px;
    }

    .ti-eyebrow-indicator {
      width: 6px;
      height: 6px;
      background: #0ea5e9;
      border-radius: 50%;
      animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .ti-header {
      margin-bottom: 56px;
    }

    .ti-title {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.15;
      letter-spacing: -0.025em;
      color: #0f172a;
      margin-bottom: 20px;
      max-width: 900px;
    }

    @media (max-width: 768px) {
      .ti-title {
        font-size: 32px;
      }
    }

    .ti-subtitle {
      font-size: 20px;
      line-height: 1.6;
      color: #475569;
      max-width: 800px;
      margin-bottom: 32px;
    }

    .ti-meta-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 24px;
      padding: 32px;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      margin-top: 40px;
    }

    .ti-meta-item {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .ti-meta-label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #64748b;
    }

    .ti-meta-value {
      font-size: 15px;
      font-weight: 600;
      color: #0f172a;
    }

    .ti-stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin: 64px 0;
    }

    .ti-stat-card {
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 32px;
      position: relative;
      overflow: hidden;
    }

    .ti-stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
    }

    .ti-stat-value {
      font-size: 48px;
      font-weight: 700;
      color: #0f172a;
      line-height: 1;
      margin-bottom: 12px;
    }

    .ti-stat-label {
      font-size: 14px;
      font-weight: 600;
      color: #334155;
      margin-bottom: 8px;
    }

    .ti-stat-description {
      font-size: 13px;
      line-height: 1.5;
      color: #64748b;
    }

    .ti-content-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 48px;
      margin-top: 64px;
    }

    @media (max-width: 1024px) {
      .ti-content-grid {
        grid-template-columns: 1fr;
      }
    }

    .ti-section {
      margin-bottom: 56px;
    }

    .ti-section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #3b82f6;
      margin-bottom: 16px;
    }

    .ti-section-title {
      font-size: 28px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 20px;
      line-height: 1.3;
    }

    .ti-section-content {
      font-size: 16px;
      line-height: 1.75;
      color: #334155;
      margin-bottom: 20px;
    }

    .ti-section-content strong {
      color: #0f172a;
      font-weight: 600;
    }

    .ti-list {
      margin: 20px 0;
      padding-left: 0;
      list-style: none;
    }

    .ti-list li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 12px;
      font-size: 15px;
      line-height: 1.6;
      color: #475569;
    }

    .ti-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 16px;
      height: 2px;
      background: #3b82f6;
    }

    .ti-sidebar {
      position: sticky;
      top: 32px;
      height: fit-content;
    }

    .ti-quote-card {
      background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
      border: 1px solid #bae6fd;
      border-radius: 12px;
      padding: 32px;
      margin-bottom: 24px;
    }

    .ti-quote-text {
      font-size: 16px;
      line-height: 1.7;
      color: #0c4a6e;
      font-style: italic;
      margin-bottom: 20px;
    }

    .ti-quote-author {
      padding-top: 16px;
      border-top: 1px solid #7dd3fc;
    }

    .ti-quote-name {
      font-size: 15px;
      font-weight: 700;
      color: #0c4a6e;
      margin-bottom: 4px;
    }

    .ti-quote-role {
      font-size: 13px;
      color: #0369a1;
    }

    .ti-info-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 28px;
      margin-bottom: 24px;
    }

    .ti-info-title {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: #3b82f6;
      margin-bottom: 16px;
    }

    .ti-info-list {
      margin: 0;
      padding-left: 0;
      list-style: none;
    }

    .ti-info-list li {
      position: relative;
      padding-left: 24px;
      margin-bottom: 10px;
      font-size: 14px;
      line-height: 1.6;
      color: #334155;
    }

    .ti-info-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #10b981;
      font-weight: 700;
    }

    .ti-visual-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 24px;
    }

    .ti-visual-item {
      aspect-ratio: 3/2;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #e2e8f0;
    }

    .ti-visual-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .ti-cta-section {
      margin-top: 80px;
      padding: 48px;
      background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
      border-radius: 16px;
      text-align: center;
      color: #ffffff;
    }

    .ti-cta-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .ti-cta-description {
      font-size: 16px;
      line-height: 1.6;
      color: #dbeafe;
      margin-bottom: 32px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .ti-cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .ti-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.2s ease;
      border: 2px solid transparent;
    }

    .ti-btn-primary {
      background: #ffffff;
      color: #1e40af;
    }

    .ti-btn-primary:hover {
      background: #f0f9ff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .ti-btn-secondary {
      background: transparent;
      color: #ffffff;
      border-color: rgba(255, 255, 255, 0.3);
    }

    .ti-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.5);
    }

    .ti-highlight {
      background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
      border-left: 4px solid #10b981;
      padding: 24px;
      border-radius: 8px;
      margin: 32px 0;
    }

    .ti-highlight-title {
      font-size: 16px;
      font-weight: 700;
      color: #065f46;
      margin-bottom: 12px;
    }

    .ti-highlight-text {
      font-size: 15px;
      line-height: 1.7;
      color: #047857;
    }
