/* ===== Kurumsal Icerik Sayfalari ===== */
.content-page {
  padding: 28px 0 48px;
  background: #f8fafc;
}

.content-container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.content-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  color: #718096;
}

.content-breadcrumb a {
  color: #64748b;
  transition: color 0.2s;
}

.content-breadcrumb a:hover {
  color: #FF6600;
}

.content-breadcrumb-sep {
  color: #cbd5e1;
}

.content-breadcrumb-current {
  color: #2d3748;
  font-weight: 600;
}

/* Hero */
.content-hero {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  min-height: 200px;
  margin-bottom: 28px;
  border: 1px solid #e8edf3;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
}

.content-hero img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.content-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.25) 100%);
}

.content-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 40px;
  color: #ffffff;
}

.content-hero--plain {
  background: linear-gradient(135deg, #fff4ed 0%, #ffffff 50%, #f0fae8 100%);
  min-height: 180px;
}

.content-hero--plain .content-hero-inner {
  color: inherit;
}

.content-hero-label {
  display: inline-block;
  width: fit-content;
  padding: 4px 10px;
  margin-bottom: 10px;
  background: rgba(255, 102, 0, 0.9);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.content-hero--plain .content-hero-label {
  background: #FF6600;
  color: #ffffff;
}

.content-hero-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: inherit;
}

.content-hero--plain .content-hero-title {
  color: #1a202c;
}

.content-hero-desc {
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 620px;
  opacity: 0.92;
}

.content-hero--plain .content-hero-desc {
  color: #718096;
  opacity: 1;
}

/* Cards & sections */
.content-section {
  margin-bottom: 28px;
}

.content-section-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 16px;
}

.content-card {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  padding: 24px 28px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.content-prose {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #64748b;
}

.content-prose p + p {
  margin-top: 14px;
}

.content-accent-line {
  width: 48px;
  height: 3px;
  background: #92C866;
  border-radius: 999px;
  margin-bottom: 18px;
}

/* Stats */
.content-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.content-stat {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  padding: 22px 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.content-stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF6600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.content-stat-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 2px;
}

.content-stat-desc {
  font-size: 0.6875rem;
  color: #94a3b8;
}

/* Values */
.content-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.content-value {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  padding: 22px 20px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.content-value:hover {
  border-color: #dde4ec;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
}

.content-value-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff4ed;
  color: #FF6600;
  border-radius: 10px;
  margin-bottom: 14px;
}

.content-value-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.content-value-text {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #718096;
}

/* References */
.content-ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.content-ref-card {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  padding: 22px 18px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
}

.content-ref-card:hover {
  border-color: #ffd4b8;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.07);
  transform: translateY(-2px);
}

.content-ref-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff4ed 0%, #f0fae8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #FF6600;
  letter-spacing: 0.02em;
}

.content-ref-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.content-ref-sector {
  display: inline-block;
  width: fit-content;
  padding: 3px 8px;
  background: #f0fae8;
  color: #5a8a3a;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
}

.content-ref-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.35;
}

.content-ref-desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #718096;
  flex: 1;
}

.content-ref-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FF6600;
}

/* Career */
.content-jobs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content-job {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.content-job summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.2s;
}

.content-job summary::-webkit-details-marker {
  display: none;
}

.content-job summary:hover {
  background: #fafbfc;
}

.content-job-head {
  min-width: 0;
}

.content-job-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.content-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.content-job-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
}

.content-job-chevron {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.2s;
}

.content-job[open] .content-job-chevron {
  transform: rotate(180deg);
}

.content-job-body {
  padding: 0 22px 22px;
  border-top: 1px solid #f1f5f9;
}

.content-job-body h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a202c;
  margin: 18px 0 8px;
}

.content-job-body p,
.content-job-body li {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #64748b;
}

.content-job-body ul {
  padding-left: 18px;
}

.content-job-apply {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 16px;
  background: #FF6600;
  color: #ffffff;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background 0.2s;
}

.content-job-apply:hover {
  background: #E55A00;
}

/* Blog */
.content-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.content-blog-card {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.content-blog-card:hover {
  border-color: #dde4ec;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.content-blog-media {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #fff4ed 0%, #f0fae8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.content-blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-blog-media-placeholder {
  color: #FF6600;
  opacity: 0.35;
}

.content-blog-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.content-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #94a3b8;
}

.content-blog-category {
  color: #FF6600;
}

.content-blog-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.4;
  margin-bottom: 8px;
}

.content-blog-excerpt {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #718096;
  flex: 1;
  margin-bottom: 14px;
}

.content-blog-link {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FF6600;
}

/* Blog detail */
.content-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.content-article {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  padding: 32px 36px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.content-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
}

.content-article-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 20px;
}

.content-article-prose {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #4a5568;
}

.content-article-prose p + p {
  margin-top: 16px;
}

.content-sidebar {
  position: sticky;
  top: 90px;
}

.content-sidebar-box {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.content-sidebar-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a202c;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.content-sidebar-post {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}

.content-sidebar-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.content-sidebar-post-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  line-height: 1.45;
  margin-bottom: 4px;
  transition: color 0.2s;
}

.content-sidebar-post:hover .content-sidebar-post-title {
  color: #FF6600;
}

.content-sidebar-post-date {
  font-size: 0.6875rem;
  color: #94a3b8;
}

/* Contact */
.content-contact-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.content-contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-contact-item {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.content-contact-item-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff4ed;
  color: #FF6600;
  border-radius: 8px;
  margin-bottom: 12px;
}

.content-contact-item-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 4px;
}

.content-contact-item-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.5;
}

.content-contact-item-value a {
  color: inherit;
  transition: color 0.2s;
}

.content-contact-item-value a:hover {
  color: #FF6600;
}

.content-contact-info .site-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #e8edf3;
}

.content-contact-map {
  margin-top: 40px;
}

.content-contact-map-embed {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e8edf3;
  background: #f8fafc;
}

.content-contact-map-embed iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.site-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.site-social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #64748b;
  transition: background .15s, color .15s, transform .15s;
}

.site-social-link:hover {
  background: #FF6600;
  color: #fff;
  transform: translateY(-1px);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform .15s, box-shadow .15s;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.content-form-card {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  padding: 28px 32px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.content-form-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 6px;
}

.content-form-desc {
  font-size: 0.8125rem;
  color: #718096;
  margin-bottom: 22px;
}

.content-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.content-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.content-form-group--full {
  grid-column: 1 / -1;
}

.content-form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #475569;
}

.content-form-input,
.content-form-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dde4ec;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.8125rem;
  color: #334155;
  background: #ffffff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.content-form-input:focus,
.content-form-textarea:focus {
  outline: none;
  border-color: #ffd4b8;
  box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.12);
}

.content-form-textarea {
  min-height: 130px;
  resize: vertical;
}

.content-form-submit {
  margin-top: 18px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background: #FF6600;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.content-form-submit:hover {
  background: #E55A00;
}

.content-alert {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 18px;
}

.content-alert--success {
  background: #f0fae8;
  border: 1px solid #c6e6a8;
  color: #3d6b24;
}

.content-alert--error {
  background: #fff5f5;
  border: 1px solid #fed7d7;
  color: #c53030;
}

/* CTA */
.content-cta {
  margin-top: 28px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #fff4ed 0%, #ffffff 50%, #f0fae8 100%);
  border: 1px solid #e8edf3;
  border-radius: 10px;
  text-align: center;
}

.content-cta-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.content-cta-text {
  font-size: 0.8125rem;
  color: #718096;
  margin-bottom: 16px;
}

.content-cta-btn {
  display: inline-flex;
  padding: 11px 20px;
  background: #FF6600;
  color: #ffffff;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background 0.2s;
}

.content-cta-btn:hover {
  background: #E55A00;
}

.content-empty {
  text-align: center;
  padding: 48px 24px;
  background: #ffffff;
  border: 1px dashed #dde4ec;
  border-radius: 10px;
}

.content-empty h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 6px;
}

.content-empty p {
  font-size: 0.8125rem;
  color: #718096;
}

.content-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 8px;
  margin-top: 24px;
}

.content-page-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: #ffffff;
  border: 1px solid #dde4ec;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.content-page-link:hover {
  background: #fff4ed;
  border-color: #ffd4b8;
  color: #FF6600;
}

.content-page-info {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
}

/* Support pages */
.support-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.support-main {
  min-width: 0;
}

.support-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.support-nav-link {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  transition: background 0.2s, color 0.2s;
}

.support-nav-link:hover,
.support-nav-link.is-active {
  background: #fff4ed;
  color: #FF6600;
}

.support-nav-cta {
  display: block;
  margin-top: 14px;
  padding: 10px 14px;
  text-align: center;
  background: #FF6600;
  color: #ffffff;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: background 0.2s;
}

.support-nav-cta:hover {
  background: #E55A00;
}

.support-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.support-feature {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.support-feature:hover {
  border-color: #dde4ec;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06);
}

.support-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff4ed;
  color: #FF6600;
  border-radius: 10px;
  margin-bottom: 14px;
}

.support-feature-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 4px;
}

.support-feature-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: #FF6600;
  margin-bottom: 8px;
}

.support-feature-text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #718096;
}

.support-info-list {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.support-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid #f1f5f9;
}

.support-info-row:last-child {
  border-bottom: none;
}

.support-info-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  flex-shrink: 0;
}

.support-info-value {
  font-size: 0.8125rem;
  color: #718096;
  text-align: right;
  line-height: 1.5;
}

.support-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-faq {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.support-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a202c;
  transition: background 0.2s;
}

.support-faq summary::-webkit-details-marker {
  display: none;
}

.support-faq summary:hover {
  background: #fafbfc;
}

.support-faq-chevron {
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.2s;
}

.support-faq[open] .support-faq-chevron {
  transform: rotate(180deg);
}

.support-faq-body {
  padding: 0 20px 18px;
  border-top: 1px solid #f1f5f9;
}

.support-faq-body p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #64748b;
  padding-top: 14px;
}

.support-table-group-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 12px;
}

.support-table-group-title + .support-table-wrap {
  margin-bottom: 24px;
}

.support-table-wrap {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.support-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.support-table thead {
  background: #f8fafc;
}

.support-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
  border-bottom: 1px solid #e8edf3;
}

.support-table td {
  padding: 12px 16px;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}

.support-table tbody tr:last-child td {
  border-bottom: none;
}

.support-table tbody tr:hover {
  background: #fafbfc;
}

.support-table td strong {
  color: #FF6600;
}

.legal-chapters {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-chapter {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 10px;
  padding: 22px 24px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.legal-chapter-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.legal-chapter-body {
  font-size: 0.8125rem;
  line-height: 1.75;
  color: #64748b;
}

.legal-chapter-body p + p {
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 1292px) {
  .content-container {
    padding: 0 16px;
  }
}

@media (max-width: 1024px) {
  .content-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-values,
  .content-ref-grid,
  .content-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .content-article-layout,
  .content-contact-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .content-page {
    padding: 20px 0 36px;
  }

  .content-hero-title {
    font-size: 1.375rem;
  }

  .content-hero-inner {
    padding: 28px 24px;
  }

  .content-stats,
  .content-values,
  .content-ref-grid,
  .content-blog-grid,
  .content-form-grid,
  .support-features {
    grid-template-columns: 1fr;
  }

  .support-info-row {
    flex-direction: column;
    gap: 4px;
  }

  .support-info-value {
    text-align: left;
  }

  .support-table-wrap {
    overflow-x: auto;
  }

  .content-article {
    padding: 24px 20px;
  }

  .content-form-card {
    padding: 22px 20px;
  }

  .content-job summary {
    flex-direction: column;
    align-items: flex-start;
  }
}
