:root {
    --bg:          #0b1628;
    --bg-2:        #0f1d33;
    --bg-card:     #132542;
    --bg-elevated: #17294a;
    --border:      rgba(255,255,255,0.08);
    --border-hover:rgba(255,255,255,0.16);
    --text:        #ffffff;
    --text-dim:    #a8b3c7;
    --text-muted:  #6b7793;
    --blue:        #2563eb;
    --blue-dark:   #1d4ed8;
    --blue-light:  #3b82f6;
    --orange:      #ea580c;
    --orange-dark: #c2410c;
    --green:       #22c55e;
    --green-dark:  #16a34a;
    --yellow:      #eab308;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; }

  .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

  /* ============ TOP BAR ============ */
  .topbar {
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
  }
  .topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
  }
  .logo-text {
    font-weight: 700;
    font-size: 17px;
    letter-spacing: -0.01em;
  }
  .nav-menu {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .nav-menu a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    border-radius: 8px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .nav-menu a:hover, .nav-menu a.active {
    color: var(--text);
    background: rgba(255,255,255,0.04);
  }
  .nav-menu .chev {
    width: 14px;
    height: 14px;
    opacity: 0.7;
  }
  .nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .nav-right .phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dim);
  }
  .nav-right .phone svg { width: 16px; height: 16px; }
  .nav-right .icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: all 0.2s;
  }
  .nav-right .icon-btn:hover {
    background: rgba(255,255,255,0.06);
    color: var(--text);
  }
  .login-btn {
    background: transparent;
    border: 1px solid var(--border-hover);
    padding: 8px 20px;
    border-radius: 8px;
    color: var(--text);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
  }
  .login-btn:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.24);
  }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(11,22,40,0.60) 0%, rgba(11,22,40,0.80) 100%),
      url('https://images.unsplash.com/photo-1565043666747-69f6646db940?w=1920&q=80') center/cover;
  }
  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 24px;
  }
  .hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 22px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
  }
  .hero p {
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255,255,255,0.92);
    margin-bottom: 36px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--blue);
    color: white;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  }
  .btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  }
  .btn-ghost {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    color: white;
    padding: 13px 26px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.2s;
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.25);
  }

  /* ============ STATS ============ */
  .stats {
    padding: 48px 0 32px;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .stat-card {
    border-radius: 14px;
    padding: 32px 28px;
    color: white;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease;
  }
  .stat-card:hover { transform: translateY(-2px); }
  .stat-card.blue   { background: linear-gradient(135deg, var(--blue-light), var(--blue-dark)); }
  .stat-card.orange { background: linear-gradient(135deg, #f97316, var(--orange-dark)); }
  .stat-card.green  { background: linear-gradient(135deg, #4ade80, var(--green-dark)); }
  .stat-num {
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
  }
  .stat-label {
    font-size: 14px;
    opacity: 0.92;
    font-weight: 500;
  }

  /* ============ INQUIRY FORMS (2 forms above Featured Categories) ============ */
  .inquiry-section {
    padding: 40px 0 72px;
  }
  .section-head {
    text-align: center;
    margin-bottom: 44px;
  }
  .section-head h2 {
    font-size: clamp(28px, 3.4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }
  .section-head p {
    color: var(--text-dim);
    font-size: 15px;
  }
  .forms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 32px;
    transition: border-color 0.25s;
    display: flex;
    flex-direction: column;
  }
  .form-card > .submit-btn { margin-top: auto; }
  .form-card:hover { border-color: var(--border-hover); }
  .form-card .form-title-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
  }
  .form-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .form-icon svg { width: 22px; height: 22px; }
  .form-icon.blue   { background: rgba(37, 99, 235, 0.15); color: var(--blue-light); }
  .form-icon.orange { background: rgba(234, 88, 12, 0.15); color: #fb923c; }
  .form-title { flex: 1; }
  .form-title h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .form-title .subtitle {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 400;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .form-row.full { grid-template-columns: 1fr; }
  .form-row.triple { grid-template-columns: 1fr 1fr 1fr; }
  .field label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
  }
  .field label .req { color: #f87171; }
  .field input,
  .field select,
  .field textarea {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13.5px;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    color: var(--text-muted);
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--blue);
    background: #182e55;
  }
  .field textarea {
    resize: vertical;
    min-height: 72px;
  }
  .field select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7793' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
  }
  .field select option { background: var(--bg-elevated); color: var(--text); }
  .submit-btn {
    width: 100%;
    margin-top: 8px;
    background: var(--blue);
    color: white;
    padding: 13px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  }
  .submit-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
  .submit-btn.orange { background: var(--orange); box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3); }
  .submit-btn.orange:hover { background: var(--orange-dark); }
  .form-note + .form-note { margin-top: 4px; }
  .form-note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
  }

  /* ============ SECTION HEAD (soldan hizalı - Tüm Kategoriler başlığı için) ============ */
  .section-head-left {
    margin-bottom: 40px;
  }
  .section-head-left h2 {
    font-size: clamp(28px, 3.4vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
  .section-head-left p {
    color: var(--text-dim);
    font-size: 15px;
  }

  /* ============ ALL CATEGORIES (20 - Versiyon B minimal) ============ */
  .all-cat-section {
    padding: 24px 0 72px;
  }
  .all-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .all-cat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 20px;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    min-height: 90px;
    text-decoration: none;
    color: inherit;
  }
  .all-cat-card:hover {
    background: var(--bg-elevated);
    border-color: var(--border-hover);
    transform: translateY(-2px);
  }
  .all-cat-card .acc-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .all-cat-card .acc-icon svg { width: 20px; height: 20px; }

  /* 6 farklı ikon rengi döngüsü */
  .all-cat-card:nth-child(6n+1) .acc-icon { background: rgba(59,130,246,0.15); color: #60a5fa; }
  .all-cat-card:nth-child(6n+2) .acc-icon { background: rgba(249,115,22,0.15); color: #fb923c; }
  .all-cat-card:nth-child(6n+3) .acc-icon { background: rgba(34,197,94,0.15); color: #4ade80; }
  .all-cat-card:nth-child(6n+4) .acc-icon { background: rgba(168,85,247,0.15); color: #c084fc; }
  .all-cat-card:nth-child(6n+5) .acc-icon { background: rgba(234,179,8,0.15); color: #facc15; }
  .all-cat-card:nth-child(6n)   .acc-icon { background: rgba(236,72,153,0.15); color: #f472b6; }

  .all-cat-card .acc-text { flex: 1; min-width: 0; }
  .all-cat-card h3 {
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: -0.005em;
    line-height: 1.35;
    color: var(--text);
  }
  .all-cat-card .acc-chev {
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 10px;
  }
  .all-cat-card:hover .acc-chev { opacity: 1; transform: translateX(2px); }
  .all-cat-card .acc-chev svg { width: 14px; height: 14px; }

  @media (max-width: 960px) { .all-cat-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .all-cat-grid { grid-template-columns: 1fr; } }

  /* ============ SAMPLE OUTPUT (ÖRNEK ÇIKTI) ============ */
  .sample-section {
    padding: 72px 0;
    border-top: 1px solid var(--border);
  }
  .sample-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
  }
  .sample-text .eyebrow {
    display: inline-block;
    background: rgba(234,179,8,0.14);
    color: #fde68a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .sample-text h2 {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .sample-text p.lead {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  .sample-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
  }
  .sample-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
  }
  .sample-features li:last-child { border-bottom: none; }
  .sample-features .check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(34,197,94,0.15);
    color: #4ade80;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }
  .sample-features .check svg { width: 13px; height: 13px; }
  .sample-features strong { color: var(--text); font-weight: 600; }
  .sample-features span.dim { color: var(--text-dim); font-weight: 400; }

  .sample-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: white;
    padding: 13px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
  }
  .sample-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
  }
  .sample-cta svg { width: 15px; height: 15px; }

  /* Preview kart (sahte rapor) */
  .sample-preview {
    position: relative;
    background: #f5f1e8;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 30px 32px;
    color: #2a2a2a;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 12px 24px rgba(0,0,0,0.2);
    overflow: hidden;
    min-height: 520px;
  }
  .sample-preview::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--blue), var(--orange), var(--yellow));
  }
  .preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 14px;
    border-bottom: 2px solid #d4cdb8;
    margin-bottom: 18px;
  }
  .preview-header .logo-chip {
    display: flex; align-items: center; gap: 8px;
    font-weight: 700; font-size: 13px; color: #0b1628;
  }
  .preview-header .logo-chip-mark {
    width: 24px; height: 24px; border-radius: 6px;
    background: linear-gradient(135deg, var(--blue-light), var(--blue-dark));
    color: white; font-size: 9px; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    letter-spacing: 0.3px;
  }
  .preview-header .fair-badge {
    text-align: right;
    font-size: 10px;
    color: #7a756a;
    line-height: 1.3;
  }
  .preview-header .fair-badge .fair-title {
    color: #c8202e;
    font-weight: 700;
    font-size: 11px;
    margin-bottom: 2px;
  }
  .preview-title {
    text-align: center;
    margin-bottom: 22px;
  }
  .preview-title h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0b1628;
    margin-bottom: 4px;
  }
  .preview-title .sub {
    font-size: 11.5px;
    color: #7a756a;
  }
  .preview-firms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
    position: relative;
  }
  .firm-card {
    font-size: 10.5px;
    line-height: 1.45;
    color: #2a2a2a;
    padding: 10px 12px;
    background: rgba(255,255,255,0.55);
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.05);
  }
  .firm-card .firm-code {
    color: #c8202e;
    font-weight: 700;
    font-size: 10px;
    display: block;
    margin-bottom: 3px;
  }
  .firm-card .firm-name {
    font-weight: 700;
    font-size: 11px;
    color: #0b1628;
    display: block;
    margin-bottom: 4px;
  }
  .firm-card .firm-line {
    display: block;
    color: #555;
    margin-bottom: 1px;
  }
  .firm-card .firm-line.blur {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
  }
  .firm-card .firm-contact {
    display: block;
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    color: #1d4ed8;
    margin-top: 3px;
  }
  /* Su işareti */
  .preview-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(-18deg);
    font-size: 48px;
    font-weight: 800;
    color: rgba(200, 16, 46, 0.08);
    pointer-events: none;
    letter-spacing: 0.1em;
    white-space: nowrap;
    z-index: 1;
  }
  /* Kilit overlay (alt kısım) */
  .preview-lock {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 50px 24px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(245,241,232,0.9) 40%, #f5f1e8 70%);
    text-align: center;
    z-index: 3;
  }
  .preview-lock .lock-icon {
    display: inline-flex;
    width: 38px; height: 38px;
    background: var(--navy, #0b1628);
    color: #facc15;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .preview-lock .lock-icon svg { width: 18px; height: 18px; }
  .preview-lock .lock-text {
    font-size: 12.5px;
    color: #0b1628;
    font-weight: 600;
  }
  .preview-lock .lock-sub {
    font-size: 11px;
    color: #555;
    margin-top: 2px;
  }

  @media (max-width: 900px) {
    .sample-grid { grid-template-columns: 1fr; gap: 40px; }
    .sample-preview { min-height: 440px; padding: 22px 20px 28px; }
    .preview-firms { grid-template-columns: 1fr; }
    .preview-watermark { font-size: 36px; }
  }

  /* ============ SAMPLE REPORT (Form 1 - Araştırma Dosyası) ============ */
  .sample-cta.blue {
    background: var(--blue);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  }
  .sample-cta.blue:hover { background: var(--blue-dark); }

  /* Araştırma dosyasındaki zenginleştirilmiş firma kartı */
  .report-firm {
    font-size: 10.5px;
    line-height: 1.5;
    color: #2a2a2a;
    padding: 12px 14px;
    background: rgba(255,255,255,0.65);
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
  }
  .report-firm-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    margin-bottom: 4px;
  }
  .report-firm-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #c8102e;
    color: white;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
  }
  .report-firm-name {
    flex: 1;
    font-weight: 700;
    font-size: 11px;
    color: #0b1628;
    line-height: 1.2;
  }
  .report-score {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(22, 163, 74, 0.12);
    color: #15803d;
    padding: 2px 7px;
    border-radius: 10px;
    font-size: 9.5px;
    font-weight: 700;
    flex-shrink: 0;
  }
  .report-score svg { width: 9px; height: 9px; }
  .report-score.med { background: rgba(234, 179, 8, 0.15); color: #a16207; }

  .report-row {
    display: flex;
    gap: 6px;
    font-size: 10px;
    color: #444;
  }
  .report-row .label {
    color: #7a756a;
    font-weight: 600;
    min-width: 64px;
    flex-shrink: 0;
  }
  .report-row .val {
    color: #2a2a2a;
  }
  .report-row .val.blur {
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
  }
  .report-badges {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 4px;
  }
  .report-badge {
    display: inline-block;
    padding: 2px 6px;
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .report-badge.moq { background: rgba(234, 88, 12, 0.12); color: #c2410c; }
  .report-badge.cap { background: rgba(22, 163, 74, 0.12); color: #15803d; }

  .report-summary {
    background: rgba(37, 99, 235, 0.06);
    border-left: 3px solid var(--blue);
    padding: 10px 12px;
    border-radius: 4px;
    margin-top: 16px;
    font-size: 10.5px;
    color: #2a2a2a;
    line-height: 1.5;
  }
  .report-summary strong { color: #0b1628; font-weight: 700; }

  /* ============ OUR SERVICES ============ */
  .services-section {
    padding: 24px 0 80px;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 26px;
    transition: border-color 0.25s, transform 0.25s;
  }
  .service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
  }
  .service-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
  .service-icon svg { width: 22px; height: 22px; }
  .service-icon.blue   { background: rgba(37, 99, 235, 0.15); color: var(--blue-light); }
  .service-icon.orange { background: rgba(234, 88, 12, 0.15); color: #fb923c; }
  .service-icon.green  { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
  .service-icon.yellow { background: rgba(234, 179, 8, 0.15); color: #facc15; }
  .service-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .service-card p {
    color: var(--text-dim);
    font-size: 14px;
  }

  /* ============ FAQ (SIK SORULAN SORULAR) ============ */
  .faq-section {
    padding: 72px 0;
    border-top: 1px solid var(--border);
  }
  .faq-wrap {
    max-width: 860px;
    margin: 0 auto;
  }
  .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: border-color 0.2s, background 0.2s;
    overflow: hidden;
  }
  .faq-item:hover { border-color: var(--border-hover); }
  .faq-item[open] {
    border-color: rgba(59,130,246,0.35);
    background: var(--bg-elevated);
  }
  .faq-item summary {
    list-style: none;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.005em;
    user-select: none;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::marker { display: none; }
  .faq-q {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
  }
  .faq-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(59,130,246,0.15);
    color: #60a5fa;
    border-radius: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
  }
  .faq-chev {
    flex-shrink: 0;
    width: 20px; height: 20px;
    color: var(--text-muted);
    transition: transform 0.25s ease, color 0.2s;
  }
  .faq-item[open] .faq-chev {
    transform: rotate(180deg);
    color: #60a5fa;
  }
  .faq-answer {
    padding: 0 24px 22px 66px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dim);
  }
  .faq-answer strong { color: var(--text); font-weight: 600; }
  .faq-answer p { margin-bottom: 10px; }
  .faq-answer p:last-child { margin-bottom: 0; }
  .faq-answer ul {
    list-style: none;
    padding: 8px 0 0;
    margin: 6px 0 0;
  }
  .faq-answer ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
  }
  .faq-answer ul li::before {
    content: '';
    position: absolute;
    left: 4px; top: 10px;
    width: 5px; height: 5px;
    background: #60a5fa;
    border-radius: 50%;
  }

  .faq-cta {
    margin-top: 32px;
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px dashed var(--border-hover);
    border-radius: 12px;
  }
  .faq-cta p { color: var(--text-dim); font-size: 14px; margin-bottom: 12px; }
  .faq-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #60a5fa;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
  }
  .faq-cta a:hover { color: #93c5fd; }
  .faq-cta a svg { width: 14px; height: 14px; }

  @media (max-width: 640px) {
    .faq-item summary { padding: 16px 18px; font-size: 14px; }
    .faq-answer { padding: 0 18px 18px 58px; font-size: 13.5px; }
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 56px 0 24px;
  }

  /* Üst satır: 4 sütun (marka + 3 ofis) */
  .footer-offices {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
  }
  .footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }
  .footer-brand .logo-mark {
    width: 36px;
    height: 36px;
  }
  .footer-brand-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .footer-brand p {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-office .office-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }
  .footer-office .office-flag {
    font-size: 18px;
  }
  .footer-office h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: var(--text);
  }
  .office-addr {
    color: var(--text-dim);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .office-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dim);
    font-size: 13px;
    margin-bottom: 6px;
  }
  .office-contact svg {
    width: 13px;
    height: 13px;
    color: var(--text-muted);
    flex-shrink: 0;
  }

  /* Alt satır: hızlı bağlantılar + dijital kanallar */
  .footer-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
  }
  .footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
  }
  .footer-col p, .footer-col a {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul a { transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--text); }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 10px;
  }
  .contact-item svg { width: 15px; height: 15px; flex-shrink: 0; }
  .contact-item a { transition: color 0.2s; }
  .contact-item a:hover { color: var(--text); }

  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 960px) {
    .nav-menu { display: none; }
    .stats-grid { grid-template-columns: 1fr; }
    .forms-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-offices { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-bottom-row { grid-template-columns: 1fr; gap: 28px; }
    .form-row, .form-row.triple { grid-template-columns: 1fr; }
    .nav-right .phone span { display: none; }
    .hero { height: 380px; }
  }
  @media (max-width: 560px) {
    .footer-offices { grid-template-columns: 1fr; }
    .form-card { padding: 24px 20px; }
  }
  /* ============ FORM SUCCESS STATE ============ */
  .form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }
  .form-card.submitted .form-success { display: block; }
  .form-card.submitted > *:not(.form-success) { display: none; }
  .form-success-icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
  }
  .form-success-icon svg { width: 28px; height: 28px; }
  .form-success h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
  .form-success p { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin-bottom: 20px; }
  .form-success .ref {
    display: inline-block; font-family: 'JetBrains Mono', monospace;
    background: var(--bg-elevated); border: 1px solid var(--border);
    padding: 6px 12px; border-radius: 6px; font-size: 12px; color: var(--text);
    margin-bottom: 20px;
  }
  .form-success button {
    background: transparent; color: var(--text-dim); border: 1px solid var(--border);
    padding: 9px 18px; border-radius: 8px; font-size: 13px; font-weight: 500;
    transition: all 0.2s;
  }
  .form-success button:hover { color: var(--text); border-color: var(--border-hover); }

  /* ============ ADMIN PANEL ============ */
  #admin-panel {
    display: none;
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg); overflow-y: auto;
  }
  body.admin-mode #admin-panel { display: block; }
  body.admin-mode > *:not(#admin-panel) { display: none; }
  .admin-header {
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky; top: 0; z-index: 10;
    backdrop-filter: blur(12px);
  }
  .admin-header .container {
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    flex-wrap: wrap;
  }
  .admin-title { display: flex; align-items: center; gap: 14px; }
  .admin-title .logo-mark { width: 38px; height: 38px; border-radius: 10px; }
  .admin-title h1 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
  .admin-title .subtitle { font-size: 12px; color: var(--text-dim); }
  .admin-exit {
    background: transparent; border: 1px solid var(--border-hover);
    padding: 9px 18px; border-radius: 8px; color: var(--text); font-weight: 500; font-size: 13px;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .admin-exit:hover { background: rgba(255,255,255,0.06); }

  .admin-notice {
    background: rgba(234, 179, 8, 0.08);
    border-left: 3px solid var(--yellow);
    padding: 14px 20px;
    margin: 24px 0 8px;
    border-radius: 8px;
    font-size: 13px;
    color: #fde68a;
    line-height: 1.6;
  }
  .admin-notice strong { color: #fef3c7; }

  .admin-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    margin: 24px 0;
  }
  .admin-stat {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 18px 20px;
  }
  .admin-stat-label { font-size: 12px; color: var(--text-dim); margin-bottom: 4px; font-weight: 500; }
  .admin-stat-num { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
  .admin-stat.pending .admin-stat-num { color: var(--yellow); }
  .admin-stat.approved .admin-stat-num { color: #4ade80; }
  .admin-stat.rejected .admin-stat-num { color: #f87171; }

  .admin-filters {
    display: flex; gap: 6px; margin: 24px 0 18px;
    background: var(--bg-card); padding: 4px; border-radius: 10px;
    border: 1px solid var(--border); width: fit-content;
    flex-wrap: wrap;
  }
  .admin-filter {
    background: transparent; color: var(--text-dim);
    padding: 8px 16px; border-radius: 7px; font-size: 13px; font-weight: 500;
    transition: all 0.2s;
  }
  .admin-filter:hover { color: var(--text); }
  .admin-filter.active { background: var(--bg-elevated); color: var(--text); }
  .admin-filter .count {
    display: inline-block; margin-left: 6px;
    background: rgba(255,255,255,0.08); padding: 1px 7px;
    border-radius: 10px; font-size: 11px;
  }

  .admin-empty {
    text-align: center; padding: 60px 20px;
    color: var(--text-muted); font-size: 14px;
    background: var(--bg-card); border: 1px dashed var(--border);
    border-radius: 12px;
  }

  .submission-list { display: flex; flex-direction: column; gap: 14px; padding-bottom: 60px; }
  .submission {
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: 12px; padding: 22px 24px;
    transition: border-color 0.2s;
  }
  .submission:hover { border-color: var(--border-hover); }
  .submission-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 16px; margin-bottom: 14px; flex-wrap: wrap;
  }
  .submission-title { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
  .submission-title .ref { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-muted); }
  .type-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600;
  }
  .type-badge.hizmet { background: rgba(37, 99, 235, 0.15); color: #93c5fd; }
  .type-badge.tedarikci { background: rgba(234, 88, 12, 0.15); color: #fdba74; }
  .status-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px; border-radius: 6px; font-size: 11.5px; font-weight: 600;
    letter-spacing: 0.02em; text-transform: uppercase;
  }
  .status-badge.pending { background: rgba(234, 179, 8, 0.15); color: var(--yellow); }
  .status-badge.approved { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
  .status-badge.rejected { background: rgba(248, 113, 113, 0.15); color: #f87171; }

  .submission-meta { font-size: 12px; color: var(--text-muted); }
  .submission-body {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px 24px; margin: 14px 0;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .sub-field .sub-label {
    font-size: 11px; color: var(--text-muted); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px;
  }
  .sub-field .sub-value { font-size: 13.5px; color: var(--text); word-break: break-word; }
  .sub-field.full { grid-column: 1 / -1; }
  .sub-field .sub-value.desc {
    background: var(--bg-elevated); padding: 10px 12px; border-radius: 7px;
    white-space: pre-wrap; font-size: 13px; color: var(--text-dim);
  }

  .submission-actions { display: flex; gap: 8px; flex-wrap: wrap; }
  .act-btn {
    padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 6px;
    transition: all 0.2s;
  }
  .act-btn svg { width: 14px; height: 14px; }
  .act-btn.approve { background: rgba(34, 197, 94, 0.15); color: #4ade80; border: 1px solid rgba(34, 197, 94, 0.25); }
  .act-btn.approve:hover { background: rgba(34, 197, 94, 0.25); }
  .act-btn.reject  { background: rgba(248, 113, 113, 0.12); color: #f87171; border: 1px solid rgba(248, 113, 113, 0.25); }
  .act-btn.reject:hover  { background: rgba(248, 113, 113, 0.22); }
  .act-btn.reopen  { background: rgba(234, 179, 8, 0.12); color: var(--yellow); border: 1px solid rgba(234, 179, 8, 0.25); }
  .act-btn.reopen:hover  { background: rgba(234, 179, 8, 0.22); }
  .act-btn.delete  { background: transparent; color: var(--text-muted); border: 1px solid var(--border); margin-left: auto; }
  .act-btn.delete:hover  { color: #f87171; border-color: rgba(248, 113, 113, 0.3); }

  .admin-link {
    font-size: 12px; color: var(--text-muted); text-decoration: none;
    margin-left: 16px; opacity: 0.6; transition: opacity 0.2s;
  }
  .admin-link:hover { opacity: 1; color: var(--text-dim); }

  @media (max-width: 768px) {
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .submission-actions { width: 100%; }
    .act-btn.delete { margin-left: 0; }
  }

  /* ============ MULTI-SELECT ============ */
  .multiselect { position: relative; }
  .multiselect-trigger {
    width: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13.5px;
    font-family: inherit;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }
  .multiselect-trigger:hover { border-color: rgba(255,255,255,0.14); }
  .multiselect.open .multiselect-trigger { border-color: var(--blue); background: #182e55; }
  .multiselect-trigger .chev { width: 12px; height: 12px; transition: transform 0.2s; opacity: 0.7; flex-shrink: 0; }
  .multiselect.open .multiselect-trigger .chev { transform: rotate(180deg); }
  .multiselect-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .multiselect-text.placeholder { color: var(--text-muted); }
  .multiselect-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border-hover);
    border-radius: 8px;
    max-height: 260px;
    overflow-y: auto;
    padding: 4px;
    display: none;
    z-index: 50;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  }
  .multiselect.open .multiselect-dropdown { display: block; }
  .ms-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 10px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text);
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.15s;
    user-select: none;
  }
  .ms-option:hover { background: rgba(255,255,255,0.05); }
  .ms-option input[type="checkbox"] {
    width: 15px; height: 15px;
    accent-color: var(--blue);
    margin: 2px 0 0 0;
    cursor: pointer;
    flex-shrink: 0;
  }
  .ms-option.checked { background: rgba(37, 99, 235, 0.12); }

  /* ============ READONLY FIELD (Fatura Bedeli) ============ */
  .field input[readonly] {
    background: rgba(234, 179, 8, 0.08);
    border-color: rgba(234, 179, 8, 0.22);
    color: #fde68a;
    font-weight: 600;
    cursor: default;
  }
  .field input[readonly]:focus {
    outline: none;
    background: rgba(234, 179, 8, 0.12);
  }
  .field input[readonly]::placeholder {
    color: rgba(253, 230, 138, 0.45);
    font-weight: 400;
  }

  /* ============ IBAN INFO ============ */
  .iban-info {
    margin-top: 8px;
    background: rgba(234, 179, 8, 0.06);
    border: 1px solid rgba(234, 179, 8, 0.18);
    border-left: 3px solid var(--yellow);
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--text-dim);
  }
  .iban-info .iban-name { color: var(--text); font-weight: 600; font-size: 13px; }
  .iban-info .iban-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #fde68a;
    letter-spacing: 0.02em;
    display: inline-block;
    margin-top: 2px;
  }


  /* ============================================================
   * HAKKIMIZDA SAYFASI
   * ============================================================ */
  .about-hero {
    padding: 80px 0 60px;
    text-align: center;
    background:
      radial-gradient(ellipse 800px 400px at 50% 0%, rgba(37, 99, 235, 0.12), transparent 70%),
      var(--bg);
    border-bottom: 1px solid var(--border);
  }
  .about-eyebrow {
    display: inline-block;
    background: rgba(234, 179, 8, 0.14);
    color: #fde68a;
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .about-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 22px;
  }
  .about-lead {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
  }

  .about-section {
    padding: 72px 0;
  }
  .about-section-alt {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .about-tag {
    display: inline-block;
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .about-tag.center { display: inline-block; }

  .about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .about-row.reverse .about-col-text { order: 2; }
  .about-row.reverse .about-col-visual { order: 1; }

  .about-col-text h2 {
    font-size: clamp(26px, 3.2vw, 34px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 18px;
  }
  .about-col-text p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 14px;
  }
  .about-col-text p strong { color: var(--text); font-weight: 600; }

  .about-lang {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px !important;
    color: var(--text-muted) !important;
    padding: 14px 16px;
    background: var(--bg-card);
    border-left: 3px solid var(--border-hover);
    border-radius: 6px;
    margin: 16px 0 !important;
  }
  .about-lang .cn {
    font-size: 13px;
    color: var(--text-dim);
  }

  .about-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    color: #60a5fa;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
  }
  .about-link:hover { color: #93c5fd; }
  .about-link svg { width: 14px; height: 14px; }

  .about-big-quote {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
  }
  .about-big-quote::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
    pointer-events: none;
  }
  .quote-mark {
    font-family: 'JetBrains Mono', Georgia, serif;
    font-size: 80px;
    font-weight: 800;
    color: #60a5fa;
    line-height: 0.8;
    margin-bottom: 14px;
    opacity: 0.6;
  }
  .quote-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
  }

  .about-slogan-card {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    border-radius: 16px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 30px 60px -20px rgba(37,99,235,0.5);
    position: relative;
    overflow: hidden;
  }
  .about-slogan-card::before {
    content: 'EAG';
    position: absolute;
    bottom: -30px; right: -10px;
    font-size: 180px;
    font-weight: 800;
    color: rgba(255,255,255,0.08);
    letter-spacing: -0.04em;
    line-height: 0.8;
    pointer-events: none;
  }
  .slogan-main {
    font-size: 26px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
  }
  .slogan-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    position: relative;
    z-index: 1;
  }

  /* ---- Hizmet alanları grid ---- */
  .about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  .about-service {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 26px;
    transition: all 0.25s;
    position: relative;
  }
  .about-service:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
  }
  .about-service-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #60a5fa;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
  }
  .about-service h3 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .about-service p {
    color: var(--text-dim);
    font-size: 13.5px;
    line-height: 1.65;
  }

  /* ---- Neden Biz grid ---- */
  .about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px;
  }
  .about-why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.25s;
  }
  .about-why-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
  }
  .why-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .why-icon svg { width: 22px; height: 22px; }
  .about-why-card h4 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
  }
  .about-why-card p {
    color: var(--text-dim);
    font-size: 13.5px;
    line-height: 1.6;
  }

  /* ---- Contact grid ---- */
  .about-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
  }
  .about-contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 28px;
  }
  .contact-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
  }
  .contact-head .flag { font-size: 24px; }
  .contact-head h3 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.01em;
  }
  .contact-addr {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .contact-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--text);
  }
  .contact-lines strong {
    color: var(--text-muted);
    font-weight: 600;
    margin-right: 4px;
  }

  .about-channels {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
  }
  .channel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: all 0.2s;
  }
  .channel:hover {
    border-color: var(--border-hover);
    background: var(--bg-elevated);
  }
  .channel svg { width: 16px; height: 16px; color: var(--text-dim); }

  .about-cta {
    margin-top: 40px;
    text-align: center;
  }
  .about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--blue);
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  }
  .about-cta-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
  }
  .about-cta-btn svg { width: 16px; height: 16px; }

  @media (max-width: 900px) {
    .about-row { grid-template-columns: 1fr; gap: 40px; }
    .about-row.reverse .about-col-text { order: 1; }
    .about-row.reverse .about-col-visual { order: 2; }
    .about-services-grid { grid-template-columns: 1fr; }
    .about-why-grid { grid-template-columns: 1fr 1fr; }
    .about-contact-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 560px) {
    .about-why-grid { grid-template-columns: 1fr; }
    .about-slogan-card, .about-big-quote { padding: 30px 26px; }
    .slogan-main { font-size: 22px; }
  }