    /* ─── GENEL ─────────────────────────────────────── */
    .tr-section { padding: 80px 0; }
    .tr-section--dark { background: #070e1a; }
    .tr-section--navy { background: #0a1628; }
    .tr-section--light { background: #f8fafc; }
    .tr-section--white { background: #fff; }

    /* ─── HERO ──────────────────────────────────────── */
    .tr-hero {
      background: linear-gradient(135deg, #070e1a 0%, #0a1628 60%, #0d1f3c 100%);
      padding: 80px 0 60px;
      position: relative;
      overflow: hidden;
    }
    .tr-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(37,99,235,.18), transparent);
      pointer-events: none;
    }
    .tr-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(37,99,235,.15);
      border: 1px solid rgba(96,165,250,.3);
      border-radius: 20px;
      padding: 6px 18px;
      font-size: .72rem;
      font-weight: 800;
      color: #93c5fd;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 22px;
    }
    .tr-hero h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.12;
      margin-bottom: 20px;
    }
    .tr-hero h1 span {
      background: linear-gradient(90deg, #60a5fa, #34d399);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .tr-hero .lead {
      font-size: 1.05rem;
      color: rgba(255,255,255,.62);
      line-height: 1.8;
      max-width: 640px;
    }
    .tr-hero-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 32px;
    }
    .tr-hero-nav a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 18px;
      border-radius: 10px;
      font-size: .8rem;
      font-weight: 700;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.75);
      text-decoration: none;
      transition: all .2s;
    }
    .tr-hero-nav a:hover {
      background: rgba(37,99,235,.25);
      border-color: rgba(96,165,250,.4);
      color: #fff;
    }
    .tr-hero-meta {
      margin-top: 36px;
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      align-items: center;
    }
    .tr-hero-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .82rem;
      color: rgba(255,255,255,.5);
    }
    .tr-hero-meta-item i { color: #34d399; }

    /* ─── METRİKLER ─────────────────────────────────── */
    .tr-metrics {
      background: #0d1f3c;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .tr-metrics-inner {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
    }
    @media (max-width: 991px) { .tr-metrics-inner { grid-template-columns: repeat(3, 1fr); } }
    @media (max-width: 575px) { .tr-metrics-inner { grid-template-columns: repeat(2, 1fr); } }
    .tr-metric-item {
      padding: 28px 24px;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,.07);
    }
    .tr-metric-item:last-child { border-right: none; }
    .tr-metric-val {
      font-size: 1.9rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
      margin-bottom: 6px;
    }
    .tr-metric-val.green { color: #34d399; }
    .tr-metric-val.blue  { color: #60a5fa; }
    .tr-metric-val.amber { color: #fbbf24; }
    .tr-metric-lbl {
      font-size: .72rem;
      font-weight: 600;
      color: rgba(255,255,255,.45);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    /* ─── SERVİS DURUMU ─────────────────────────────── */
    .tr-status-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px;
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .tr-status-ico {
      width: 44px; height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .tr-status-ico--green  { background: rgba(16,185,129,.15); color: #34d399; }
    .tr-status-ico--blue   { background: rgba(37,99,235,.15);  color: #60a5fa; }
    .tr-status-ico--amber  { background: rgba(245,158,11,.15); color: #fbbf24; }
    .tr-status-ico--cyan   { background: rgba(6,182,212,.15);  color: #67e8f9; }
    .tr-status-ico--purple { background: rgba(139,92,246,.15); color: #c4b5fd; }
    .tr-status-body { flex: 1; }
    .tr-status-name {
      font-size: .9rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }
    .tr-uptime-bar {
      display: flex;
      gap: 2px;
      margin-top: 8px;
    }
    .tr-uptime-day {
      flex: 1;
      height: 8px;
      border-radius: 2px;
      background: #34d399;
    }
    .tr-uptime-day.partial { background: #fbbf24; }
    .tr-uptime-day.down    { background: #f87171; }
    .tr-status-pct {
      font-size: .72rem;
      font-weight: 700;
      color: #34d399;
      margin-top: 6px;
    }
    .tr-status-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: .72rem;
      font-weight: 800;
      flex-shrink: 0;
    }
    .tr-status-pill--ok {
      background: rgba(16,185,129,.15);
      border: 1px solid rgba(52,211,153,.25);
      color: #34d399;
    }
    .tr-status-pill--ok::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #34d399;
      animation: tr-pulse 2s ease-in-out infinite;
    }
    @keyframes tr-pulse {
      0%,100% { opacity: 1; }
      50%      { opacity: .35; }
    }
    .tr-uptime-label {
      font-size: .68rem;
      color: rgba(255,255,255,.3);
      display: flex;
      justify-content: space-between;
      margin-top: 4px;
    }

    /* ─── FİYAT ŞEFFAFLIĞI ──────────────────────────── */
    .tr-price-card {
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 24px;
      height: 100%;
    }
    .tr-price-ico {
      width: 48px; height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-bottom: 16px;
    }
    .tr-price-ico--green  { background: #dcfce7; color: #16a34a; }
    .tr-price-ico--blue   { background: #dbeafe; color: #2563eb; }
    .tr-price-ico--amber  { background: #fef3c7; color: #d97706; }
    .tr-price-ico--red    { background: #fee2e2; color: #dc2626; }
    .tr-price-ico--purple { background: #f3e8ff; color: #9333ea; }
    .tr-price-ico--cyan   { background: #cffafe; color: #0e7490; }
    .tr-price-title {
      font-size: .95rem;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 8px;
    }
    .tr-price-desc {
      font-size: .85rem;
      color: #475569;
      line-height: 1.7;
    }

    /* ─── VERİ & GİZLİLİK ──────────────────────────── */
    .tr-data-row {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .tr-data-row:last-child { border-bottom: none; }
    .tr-data-ico {
      width: 40px; height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .tr-data-title  { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
    .tr-data-detail { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.65; }

    /* ─── GÜVENLİK KARTLARI ─────────────────────────── */
    .tr-sec-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px;
      padding: 28px 24px;
      height: 100%;
      transition: border-color .2s;
    }
    .tr-sec-card:hover { border-color: rgba(96,165,250,.3); }
    .tr-sec-ico {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: 18px;
    }
    .tr-sec-ico--green  { background: rgba(16,185,129,.15);  color: #34d399; }
    .tr-sec-ico--blue   { background: rgba(37,99,235,.15);   color: #60a5fa; }
    .tr-sec-ico--amber  { background: rgba(245,158,11,.15);  color: #fbbf24; }
    .tr-sec-ico--cyan   { background: rgba(6,182,212,.15);   color: #67e8f9; }
    .tr-sec-ico--purple { background: rgba(139,92,246,.15);  color: #c4b5fd; }
    .tr-sec-ico--rose   { background: rgba(244,63,94,.15);   color: #fb7185; }
    .tr-sec-title { font-size: .95rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
    .tr-sec-desc  { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.7; }
    .tr-sec-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
    .tr-sec-badge {
      font-size: .65rem;
      font-weight: 800;
      padding: 3px 10px;
      border-radius: 20px;
      letter-spacing: .06em;
      text-transform: uppercase;
    }
    .tr-sec-badge--green  { background: rgba(16,185,129,.15); color: #34d399; border: 1px solid rgba(52,211,153,.2); }
    .tr-sec-badge--blue   { background: rgba(37,99,235,.15);  color: #93c5fd; border: 1px solid rgba(96,165,250,.2); }
    .tr-sec-badge--amber  { background: rgba(245,158,11,.15); color: #fde68a; border: 1px solid rgba(251,191,36,.2); }

    /* ─── ALTYAPI ────────────────────────────────────── */
    .tr-infra-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid #e2e8f0;
    }
    .tr-infra-item:last-child { border-bottom: none; }
    .tr-infra-ico {
      width: 38px; height: 38px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .9rem;
      flex-shrink: 0;
    }
    .tr-infra-ico--blue   { background: #dbeafe; color: #2563eb; }
    .tr-infra-ico--green  { background: #dcfce7; color: #16a34a; }
    .tr-infra-ico--amber  { background: #fef3c7; color: #d97706; }
    .tr-infra-ico--cyan   { background: #cffafe; color: #0e7490; }
    .tr-infra-ico--purple { background: #f3e8ff; color: #9333ea; }
    .tr-infra-ico--red    { background: #fee2e2; color: #dc2626; }
    .tr-infra-title  { font-size: .88rem; font-weight: 700; color: #0f172a; margin-bottom: 3px; }
    .tr-infra-detail { font-size: .8rem; color: #475569; line-height: 1.6; }

    /* ─── ÜÇÜNCÜ TARAF TABLO ────────────────────────── */
    .tr-table {
      width: 100%;
      border-collapse: collapse;
      font-size: .85rem;
    }
    .tr-table thead th {
      background: #0d1f3c;
      color: rgba(255,255,255,.6);
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .08em;
      padding: 12px 16px;
      border: none;
    }
    .tr-table thead th:first-child { border-radius: 10px 0 0 0; }
    .tr-table thead th:last-child  { border-radius: 0 10px 0 0; }
    .tr-table tbody tr {
      border-bottom: 1px solid rgba(255,255,255,.06);
      transition: background .15s;
    }
    .tr-table tbody tr:hover { background: rgba(255,255,255,.03); }
    .tr-table tbody td {
      padding: 14px 16px;
      color: rgba(255,255,255,.75);
      vertical-align: middle;
    }
    .tr-table-provider {
      font-weight: 700;
      color: #fff;
    }
    .tr-table-region {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 3px 10px;
      border-radius: 8px;
      font-size: .72rem;
      font-weight: 700;
      background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.65);
    }
    .tr-table-minimal {
      font-size: .72rem;
      padding: 2px 9px;
      border-radius: 6px;
      font-weight: 700;
    }
    .tr-table-minimal--green  { background: rgba(16,185,129,.15); color: #34d399; }
    .tr-table-minimal--amber  { background: rgba(245,158,11,.15);  color: #fbbf24; }

    /* ─── YASAL BELGELER ─────────────────────────────── */
    .tr-doc-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 16px;
      padding: 22px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      text-decoration: none;
      transition: all .2s;
    }
    .tr-doc-card:hover {
      background: rgba(37,99,235,.12);
      border-color: rgba(96,165,250,.35);
      transform: translateY(-2px);
    }
    .tr-doc-ico {
      width: 46px; height: 46px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .tr-doc-ico--blue   { background: rgba(37,99,235,.2);  color: #93c5fd; }
    .tr-doc-ico--green  { background: rgba(16,185,129,.2); color: #6ee7b7; }
    .tr-doc-ico--amber  { background: rgba(245,158,11,.2); color: #fde68a; }
    .tr-doc-ico--purple { background: rgba(139,92,246,.2); color: #c4b5fd; }
    .tr-doc-ico--cyan   { background: rgba(6,182,212,.2);  color: #67e8f9; }
    .tr-doc-ico--rose   { background: rgba(244,63,94,.2);  color: #fda4af; }
    .tr-doc-name { font-size: .9rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
    .tr-doc-desc { font-size: .76rem; color: rgba(255,255,255,.45); }
    .tr-doc-arrow { margin-left: auto; color: rgba(255,255,255,.25); font-size: .85rem; flex-shrink: 0; }
    .tr-doc-card:hover .tr-doc-arrow { color: #60a5fa; }

    /* ─── DEĞİŞİKLİK GEÇMİŞİ ───────────────────────── */
    .tr-log-row {
      display: grid;
      grid-template-columns: 110px 160px 1fr;
      align-items: start;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid #e2e8f0;
    }
    .tr-log-row:last-child { border-bottom: none; }
    @media (max-width: 575px) {
      .tr-log-row { grid-template-columns: 1fr; gap: 4px; }
    }
    .tr-log-date {
      font-size: .78rem;
      font-weight: 700;
      color: #64748b;
      padding-top: 2px;
    }
    .tr-log-doc {
      font-size: .82rem;
      font-weight: 700;
      color: #0f172a;
    }
    .tr-log-change {
      font-size: .82rem;
      color: #475569;
      line-height: 1.6;
    }
    .tr-log-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 2px 9px;
      border-radius: 6px;
      font-size: .65rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-right: 6px;
      vertical-align: middle;
    }
    .tr-log-badge--green  { background: #dcfce7; color: #16a34a; }
    .tr-log-badge--blue   { background: #dbeafe; color: #2563eb; }
    .tr-log-badge--amber  { background: #fef3c7; color: #d97706; }

    /* ─── İLETİŞİM ──────────────────────────────────── */
    .tr-contact-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 20px;
      padding: 32px 28px;
      text-align: center;
      height: 100%;
      transition: border-color .2s;
    }
    .tr-contact-card:hover { border-color: rgba(96,165,250,.3); }
    .tr-contact-ico {
      width: 60px; height: 60px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin: 0 auto 18px;
    }
    .tr-contact-ico--blue   { background: rgba(37,99,235,.2);  color: #93c5fd; }
    .tr-contact-ico--green  { background: rgba(16,185,129,.2); color: #6ee7b7; }
    .tr-contact-ico--amber  { background: rgba(245,158,11,.2); color: #fde68a; }
    .tr-contact-ico--purple { background: rgba(139,92,246,.2); color: #c4b5fd; }
    .tr-contact-title { font-size: .95rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
    .tr-contact-desc  { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 16px; }
    .tr-contact-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .82rem;
      font-weight: 700;
      color: #60a5fa;
      text-decoration: none;
      transition: color .15s;
    }
    .tr-contact-link:hover { color: #93c5fd; }

    /* ─── SECTION TITLES ─────────────────────────────── */
    .tr-title-dark {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 900;
      color: #fff;
      margin-bottom: 10px;
    }
    .tr-title-light {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 900;
      color: #0f172a;
      margin-bottom: 10px;
    }
    .tr-subtitle-dark  { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 580px; }
    .tr-subtitle-light { font-size: .9rem; color: #64748b; line-height: 1.7; max-width: 580px; }
    .tr-section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(37,99,235,.12);
      border: 1px solid rgba(96,165,250,.2);
      border-radius: 20px;
      padding: 4px 14px;
      font-size: .68rem;
      font-weight: 800;
      color: #93c5fd;
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .tr-section-tag--green {
      background: rgba(16,185,129,.12);
      border-color: rgba(52,211,153,.2);
      color: #6ee7b7;
    }
    .tr-section-tag--light {
      background: rgba(37,99,235,.08);
      border: 1px solid rgba(37,99,235,.15);
      color: #2563eb;
    }

    /* ─── CTA ────────────────────────────────────────── */
    .tr-cta {
      background: linear-gradient(135deg, #0d1f3c, #162d4e);
      border-top: 1px solid rgba(255,255,255,.07);
      padding: 60px 0;
    }
    .tr-cta h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 900; color: #fff; margin-bottom: 12px; }
    .tr-cta p  { font-size: .9rem; color: rgba(255,255,255,.55); margin-bottom: 0; }

    @media (max-width: 767px) {
      .tr-section { padding: 56px 0; }
    }
  