:root {
    --navy: #1a3a5c;
    --navy-mid: #2a5080;
    --navy-light: #3d6b9e;
    --gold: #c8a84b;
    --gold-light: #e0c06a;
    --red: #c0392b;
    --white: #ffffff;
    --off-white: #f5f7fa;
    --light-gray: #e8ecf0;
    --text-dark: #1c2b3a;
    --text-mid: #3a4f63;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  
 @font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/oswald.woff2') format('woff2');
}

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/sourcesans3.woff2') format('woff2');
}
  
  body {
    font-family: 'Source Sans 3', sans-serif !important;
    background: var(--off-white);
    color: var(--text-dark);
    line-height: 1.5; /* Metin kutularının yüksekliğini önceden rezerve eder */
    -webkit-font-smoothing: antialiased;
}

/* Raporun işaret ettiği spesifik paragraf için */
main section div p {
    min-height: 1.2em; 
}

  /* ── TOP BAR ── */
  .top-bar {
    background: var(--navy);
    color: var(--gold-light);
    font-family: 'Oswald', sans-serif !important;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 6px 20px;
  }
  .top-bar span { margin: 0 18px; }

  /* ── HEADER ── */
  header {
    background: var(--white);
    border-bottom: 4px solid var(--gold);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  }
  .header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 32px;
  }
  .logo-block { display: flex; align-items: center; gap: 18px; }
  .logo-mark {
    display: flex; align-items: center; justify-content: center;
  }
  .logo-mark img {
    height: 72px;
    width: auto;
    display: block;
  }
  .company-name-block h1 {
    font-family: 'Oswald', sans-serif !important;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .company-name-block p {
    font-size: 0.82rem;
    color: var(--text-mid);
    margin-top: 3px;
    letter-spacing: 0.04em;
  }

  .capability-badge {
    text-align: center;
    background: var(--navy);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    border-top: 3px solid var(--gold);
  }
  .capability-badge .cb-top {
    font-family: 'Oswald', sans-serif !important;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .capability-badge .cb-sub {
    font-size: 0.72rem;
    color: var(--gold-light);
    letter-spacing: 0.1em;
    margin-top: 3px;
    text-transform: uppercase;
  }
  .cage-ids {
    display: flex; gap: 20px; margin-top: 8px;
  }
  .cage-ids span {
    font-size: 0.68rem;
    background: rgba(255,255,255,0.1);
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 0.06em;
  }

  /* ── HERO BAND ── */
  .hero-band {
    background: linear-gradient(135deg, var(--navy) 60%, var(--navy-mid) 100%);
    color: var(--white);
    text-align: center;
    padding: 28px 20px 22px;
    position: relative;
    overflow: hidden;
	/* HERO BAND - CLS puanı İÇİN EKLEME: */
	min-height: 160px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .hero-band::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      -45deg, transparent, transparent 18px,
      rgba(255,255,255,0.025) 18px, rgba(255,255,255,0.025) 36px
    );
  }
  .hero-band h2 {
    font-family: 'Oswald', sans-serif !important;
    font-size: 1.4rem;
    font-weight: 600;
	line-height: 1.2;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: relative;
	margin: 0;
  }
  .hero-band p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
	line-height: 1.5;
    margin-top: 10px;
    position: relative;
  }
  .gold-line {
    width: 60px; height: 3px;
    background: var(--gold);
    margin: 10px auto 0;
  }

  /* ── MAIN GRID ── */
  .main-wrap {
    max-width: 1100px;
    margin: 32px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
  }

  /* ── CARDS ── */
  .card {
    background: var(--white);
    border-radius: 4px;
    border-top: 4px solid var(--navy);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 26px 28px;
    margin-bottom: 24px;
  }
  .card-title {
    font-family: 'Oswald', sans-serif !important;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .card-title::before {
    content: '';
    display: block;
    width: 4px; height: 16px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
  }
  .card p {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-mid);
  }
  .card p + p { margin-top: 12px; }

  /* ── NAICS CODES ── */
  .naics-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
  .naics-item {
    display: flex; align-items: center; gap: 12px;
    background: var(--navy-mid);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: background 0.2s;
  }
  .naics-item:hover { background: var(--navy); }
  .naics-code {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    color: var(--gold-light);
    min-width: 56px;
    flex-shrink: 0;
  }
  .naics-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── CUSTOMER TABLES ── */
  .customer-section { margin-bottom: 16px; }
  .customer-section-title {
    font-family: 'Oswald', sans-serif !important;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--light-gray);
    padding: 6px 12px;
    margin-bottom: 10px;
    border-left: 3px solid var(--gold);
  }
  .customer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .customer-item {
    font-size: 0.83rem;
    color: var(--text-mid);
    padding: 7px 10px;
    background: var(--off-white);
    border-radius: 2px;
    border-left: 2px solid var(--navy-light);
    line-height: 1.35;
  }
  .customer-item strong {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.8rem;
  }

  /* ── SIDEBAR ── */
  .sidebar {}

  /* Company Profile Card */
  .profile-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 4px;
    padding: 22px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(26,58,92,0.25);
  }
  .profile-card-title {
    font-family: 'Oswald', sans-serif !important;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 10px;
    margin-bottom: 14px;
  }
  .profile-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 0.82rem;
    gap: 10px;
  }
  .profile-row:last-child { border-bottom: none; }
  .profile-label {
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    min-width: 72px;
    flex-shrink: 0;
  }
  .profile-value {
    color: rgba(255,255,255,0.9);
    text-align: right;
    word-break: break-all;
    font-size: 0.8rem;
  }
  .contact-btn {
    display: block;
    margin-top: 16px;
    background: var(--gold);
    color: var(--navy);
    text-align: center;
    padding: 10px 0;
    border-radius: 3px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
  }
  .contact-btn:hover { background: var(--gold-light); }

  /* Mission */
  .mission-card {
    background: var(--white);
    border-radius: 4px;
    border-top: 4px solid var(--gold);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 22px;
    margin-bottom: 24px;
  }
  .mission-card .card-title { margin-bottom: 12px; }
  .mission-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-mid);
    font-style: italic;
  }

  /* Quality card */
  .quality-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    color: var(--white);
    border-radius: 4px;
    padding: 22px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(26,58,92,0.2);
  }
  .quality-card .card-title { color: var(--gold-light); border-bottom-color: rgba(255,255,255,0.15); }
  .quality-card .card-title::before { background: var(--gold); }
  .quality-card p { color: rgba(255,255,255,0.85); font-size: 0.88rem; line-height: 1.7; }

  /* Memberships */
  .memberships {
    background: var(--white);
    border-radius: 4px;
    border-top: 4px solid var(--navy);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 22px;
  }
  .memberships .card-title { margin-bottom: 14px; }
  .badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .badge-item {
    text-align: center;
    padding: 12px 8px;
    border: 1px solid var(--light-gray);
    border-radius: 3px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
  }
  .badge-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }
  .badge-item.full { grid-column: span 2; }

  /* ── WORLD PRESENCE ── */
  .presence-strip {
    background: var(--navy);
    color: var(--white);
    padding: 22px 24px;
    margin: 0 0 28px;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  }
  .presence-strip .card-title { color: var(--gold-light); border-bottom-color: rgba(255,255,255,0.15); }
  .presence-strip .card-title::before { background: var(--gold); }
  .countries {
    display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px;
  }
  .country-tag {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 6px 16px;
    font-size: 0.82rem;
    display: flex; align-items: center; gap: 7px;
  }
  .flag { font-size: 1rem; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 22px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    border-top: 3px solid var(--gold);
  }
  footer a { color: var(--gold-light); text-decoration: none; }
  footer .footer-ids { margin-top: 8px; display: flex; justify-content: center; gap: 24px; }
  footer .footer-ids span { font-size: 0.72rem; }

  /* ── RESPONSIVE ── */
  @media (max-width: 760px) {
    .main-wrap { grid-template-columns: 1fr; }
    .header-inner { flex-direction: column; gap: 16px; text-align: center; }
    .capability-badge { width: 100%; }
    .customer-grid { grid-template-columns: 1fr; }
  }