/* ============================================================
   NRC Garaj — Tema Stil Sayfası (main.css)
   ------------------------------------------------------------
   Kaynak: nrc-garaj (Next.js) globals.css + *.module.css.
   SPEC-DESIGN.md Bölüm 2.3 düzeninde TEK dosyada birleştirildi.
   CSS Module hash'li sınıf adları, prefiksli (nrc-*) BEM-vari
   global sınıflara çevrildi. globals.css kökenli sınıflar
   (.btn, .card, .container, .section, .badge, .form-* ...)
   prefiks ALMAZ — birebir korunur.

   İçindekiler:
     1.  :root token'ları
     2.  Reset
     3.  :focus-visible erişilebilirlik
     4.  Tipografi
     5.  Layout primitives (.container, .section)
     6.  Section header
     7.  Bileşenler — globals (.btn, .card, .badge, .form, ...)
     8.  Utility'ler (grid/flex/gap/text/margin/aspect/sr-only/...)
     9.  Keyframe'ler
     10. Bileşen-prefix blokları (nrc-*)
     11. WordPress / admin-bar uyum düzeltmeleri
   ============================================================ */

/* ============================================================
   1. Design Tokens (:root)
   ============================================================ */
:root {
  /* Nötr ölçek (koyudan açığa) */
  --carbon: #191917;
  --slate: #2c2c29;
  --steel: #4b4b46;
  --mist: #8c8c85;
  --fog: #c4c4bc;
  --smoke: #e8e8e3;
  --snow: #f5f4f0;
  --white: #ffffff;

  /* Marka vurgu */
  --accent: #e05514;
  --accent-hover: #c44810;
  --accent-muted: rgba(224, 85, 20, 0.12);

  /* Durum */
  --danger: #c0392b;
  --success: #27ae60;

  /* Layout & şekil */
  --container-max: 1200px;
  --radius: 3px;
  --radius-lg: 6px;
  --radius-xl: 10px;
  --transition: 180ms ease;
  --transition-slow: 320ms ease;

  /* Gölgeler */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.06);

  /* Sabit header yüksekliği (içerik offset'i için) */
  --header-height: 88px;
}

/* ============================================================
   2. Reset
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  background-color: var(--snow);
  color: var(--carbon);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img,
video {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* ============================================================
   3. :focus-visible erişilebilirlik halkaları (WCAG 2.4.7)
   ============================================================ */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
[role="button"]:focus-visible,
[tabindex]:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================================
   4. Typography
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--carbon);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

h3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

p {
  color: var(--steel);
}

strong {
  font-weight: 600;
  color: var(--carbon);
}

/* ============================================================
   5. Layout primitives
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-inline: 2rem;
  }
}

.section {
  padding-block: 3.5rem;
}

@media (min-width: 768px) {
  .section {
    padding-block: 5rem;
  }
}

.section-sm {
  padding-block: 2rem;
}

@media (min-width: 768px) {
  .section-sm {
    padding-block: 3rem;
  }
}

.section-lg {
  padding-block: 5rem;
}

@media (min-width: 768px) {
  .section-lg {
    padding-block: 7rem;
  }
}

/* ============================================================
   6. Section Header
   ============================================================ */
.section-header {
  margin-bottom: 3rem;
}

.section-header.centered {
  text-align: center;
}

.section-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 0.875rem;
}

.section-subtitle {
  color: var(--steel);
  font-size: 1.0625rem;
  max-width: 52ch;
  line-height: 1.65;
}

.section-header.centered .section-subtitle {
  margin-inline: auto;
}

/* ============================================================
   7. Buttons (global)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  font-family: inherit;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--carbon);
  color: var(--white);
  border-color: var(--carbon);
}

.btn-primary:hover:not(:disabled) {
  background: var(--slate);
  border-color: var(--slate);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  font-weight: 700;
}

.btn-accent:hover:not(:disabled) {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--carbon);
  border-color: var(--carbon);
}

.btn-outline:hover:not(:disabled) {
  background: var(--carbon);
  color: var(--white);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline-accent:hover:not(:disabled) {
  background: var(--accent);
  color: var(--carbon);
}

.btn-outline-light {
  background: transparent;
  color: var(--snow);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--steel);
  border-color: transparent;
  padding-inline: 0.75rem;
}

.btn-ghost:hover:not(:disabled) {
  color: var(--carbon);
  background: var(--smoke);
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}

.btn-danger:hover:not(:disabled) {
  background: #a93226;
  border-color: #a93226;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  font-weight: 700;
}

.btn-whatsapp:hover:not(:disabled) {
  background: #1da851;
  border-color: #1da851;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-xs {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
}

/* ============================================================
   7b. Cards (global)
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--smoke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card-body {
  padding: 1.5rem;
}

.card-body-sm {
  padding: 1rem;
}

.card-flat {
  background: var(--snow);
  border-color: var(--smoke);
}

/* ============================================================
   7c. Badge (global)
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  background: var(--smoke);
  color: var(--steel);
}

.badge-accent {
  background: var(--accent-muted);
  color: var(--accent);
}

.badge-carbon {
  background: var(--carbon);
  color: var(--white);
}

.badge-success {
  background: rgba(39, 174, 96, 0.12);
  color: #1e8449;
}

.badge-draft {
  background: rgba(140, 140, 133, 0.15);
  color: var(--mist);
}

/* ============================================================
   7d. Forms (global)
   ============================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--steel);
}

.form-label.required::after {
  content: " *";
  color: var(--danger);
}

.form-input,
.form-textarea,
.form-select {
  padding: 0.625rem 0.875rem;
  background: var(--white);
  border: 1.5px solid var(--smoke);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--carbon);
  transition: border-color var(--transition);
  width: 100%;
  font-family: inherit;
  line-height: 1.5;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--carbon);
}

.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--fog);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: var(--danger);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238c8c85' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-error {
  font-size: 0.8125rem;
  color: var(--danger);
}

.form-hint {
  font-size: 0.8125rem;
  color: var(--mist);
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.form-checkbox-group input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--carbon);
  cursor: pointer;
}

/* ============================================================
   7e. Divider (global)
   ============================================================ */
.divider {
  height: 1px;
  background: var(--smoke);
  border: none;
  margin-block: 0;
}

/* ============================================================
   7f. Stars rating (global)
   ============================================================ */
.stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
  font-size: 0.875rem;
}

/* ============================================================
   8. Utilities
   ============================================================ */

/* Grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
}

/* Flex */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Text */
.text-muted {
  color: var(--mist);
}

.text-accent {
  color: var(--accent);
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-lg {
  font-size: 1.0625rem;
}

.text-center {
  text-align: center;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Loading & empty states */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--mist);
}

.empty-state-icon {
  width: 3rem;
  height: 3rem;
  opacity: 0.4;
}

.empty-state-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fog);
}

.empty-state-text {
  font-size: 0.9375rem;
  color: var(--mist);
  max-width: 32ch;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 2px solid var(--smoke);
  border-top-color: var(--carbon);
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}

.spinner-sm {
  width: 18px;
  height: 18px;
}

.loading-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

/* Image */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aspect-video {
  aspect-ratio: 16 / 9;
}

.aspect-square {
  aspect-ratio: 1;
}

.aspect-4-3 {
  aspect-ratio: 4 / 3;
}

/* Misc utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip-link (ve diğer .sr-only odaklanabilir öğeler): klavye odağında görünür
   olsun — "İçeriğe geç" bağlantısı erişilebilir hale gelir (WCAG 2.4.1). */
.sr-only:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 0.6rem 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--carbon);
  color: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  outline: 2px solid var(--accent);
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Margin utilities */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

/* Responsive helpers */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ============================================================
   9. Keyframes
   ============================================================ */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tsSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes tsFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

@keyframes testimonialProgress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes lbImageFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes processFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ============================================================
   10. Bileşen-prefix blokları (nrc-*)
   ============================================================ */

/* ------------------------------------------------------------
   10.1 Header — .nrc-header
   ------------------------------------------------------------ */
.nrc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* Varsayılan: koyu buzlu cam. İç sayfalarda ve JS yüklenmeden önce header
     beyaz/saydam görünmesin (F5'te beyaz header sorunu). Saydamlık yalnızca
     ana sayfada, en üstteyken aşağıdaki kuralla geçerli olur. */
  background: rgba(25, 25, 23, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: background 280ms ease, border-color 280ms ease,
    box-shadow 280ms ease;
}

/* Ana sayfa, en üstte (henüz scroll edilmemiş): koyu hero üzerinde saydam dursun. */
body.home:not(.blog) .nrc-header:not(.nrc-header--scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

/* Scrolled: frosted glass (JS .nrc-header--scrolled ekler; varsayılanla aynı koyu görünüm). */
.nrc-header--scrolled {
  background: rgba(25, 25, 23, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .nrc-header,
  .nrc-header--scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(25, 25, 23, 0.96);
  }
}

.nrc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 2rem;
}

@media (max-width: 640px) {
  .nrc-header__inner {
    height: 64px;
    gap: 0.75rem;
  }
}

.nrc-header__logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.nrc-header__logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.25) drop-shadow(0 0 8px rgba(255, 255, 255, 0.15));
}

@media (max-width: 480px) {
  .nrc-header__logo-img {
    height: 48px;
  }
}

.nrc-header__nav {
  flex: 1;
}

.nrc-header__nav-list {
  display: none;
  gap: 0.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

@media (min-width: 768px) {
  .nrc-header__nav-list {
    display: flex;
  }
}

.nrc-header__nav-link {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  transition: color 150ms ease, background 150ms ease;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.nrc-header__nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nrc-header__nav-link--active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nrc-header__nav-link--chevron {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nrc-header__nav-chevron {
  flex-shrink: 0;
  opacity: 0.7;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
}

.nrc-header__nav-link--chevron:hover .nrc-header__nav-chevron,
.nrc-header__nav-link--active .nrc-header__nav-chevron {
  opacity: 1;
}

.nrc-header__nav-chevron--open {
  transform: rotate(180deg);
  opacity: 1;
}

.nrc-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nrc-header__cta {
  display: none;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms ease,
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

@media (min-width: 640px) {
  .nrc-header__cta {
    display: inline-flex;
  }
}

.nrc-header__cta:hover:not(:disabled) {
  background: var(--white);
  border-color: var(--white);
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.nrc-header__cta:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Hamburger */
.nrc-header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 768px) {
  .nrc-header__menu-btn {
    display: none;
  }
}

.nrc-header__burger {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: background 160ms ease;
}

.nrc-header__burger::before,
.nrc-header__burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 240ms ease;
}

.nrc-header__burger::before {
  top: -7px;
}

.nrc-header__burger::after {
  bottom: -7px;
}

.nrc-header__burger--open {
  background: transparent;
}

.nrc-header__burger--open::before {
  transform: translateY(7px) rotate(45deg);
}

.nrc-header__burger--open::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nrc-header__mobile-menu {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--carbon);
  padding: 1.5rem 1.25rem;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  z-index: 99;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  overflow-y: auto;
}

@media (max-width: 640px) {
  .nrc-header__mobile-menu {
    top: 64px;
  }
}

.nrc-header__mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nrc-header__mobile-nav-link {
  display: block;
  padding: 1rem 0.75rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--fog);
  border-radius: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 150ms ease, color 150ms ease;
}

.nrc-header__mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nrc-header__mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font: inherit;
}

.nrc-header__mobile-nav-chevron {
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-header__mobile-nav-toggle--open .nrc-header__mobile-nav-chevron {
  transform: rotate(90deg);
  color: var(--accent);
}

.nrc-header__mobile-sub-list {
  list-style: none;
  margin: 0;
  margin-left: 0.5rem;
  padding: 0.5rem 0 0.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.nrc-header__mobile-sub-all,
.nrc-header__mobile-sub-link {
  display: block;
  padding: 0.625rem 0.875rem;
  font-size: 0.9375rem;
  color: var(--fog);
  border-radius: 4px;
  transition: background 150ms ease, color 150ms ease;
}

.nrc-header__mobile-sub-all {
  font-weight: 700;
  color: var(--accent);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-block: 0.5rem;
}

.nrc-header__mobile-sub-all:hover,
.nrc-header__mobile-sub-link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

/* ------------------------------------------------------------
   10.2 Mega Menu — .nrc-megamenu
   ------------------------------------------------------------ */
.nrc-megamenu {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  background: rgba(20, 20, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 280ms;
  z-index: 90;
  pointer-events: none;
}

.nrc-megamenu--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
  pointer-events: auto;
}

@media (max-width: 1023px), (hover: none) {
  .nrc-megamenu {
    display: none;
  }
}

.nrc-megamenu__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 4rem;
  padding-block: 2.5rem 2.75rem;
  align-items: start;
}

.nrc-megamenu__list {
  display: flex;
  flex-direction: column;
}

.nrc-megamenu__eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.nrc-megamenu__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 2.5rem;
  row-gap: 0.5rem;
}

.nrc-megamenu__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.625rem 0;
  text-decoration: none;
  color: inherit;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-megamenu__dash {
  flex-shrink: 0;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 0.5rem;
  transition:
    background 200ms ease,
    width 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-megamenu__item-body {
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
  min-width: 0;
}

.nrc-megamenu__item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.005em;
  line-height: 1.25;
  transition: color 180ms ease;
}

.nrc-megamenu__item-desc {
  font-size: 0.8125rem;
  color: rgba(196, 196, 188, 0.65);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nrc-megamenu__item:hover,
.nrc-megamenu__item--active {
  transform: translateX(3px);
}

.nrc-megamenu__item:hover .nrc-megamenu__dash,
.nrc-megamenu__item--active .nrc-megamenu__dash {
  background: var(--accent);
  width: 28px;
}

.nrc-megamenu__item:hover .nrc-megamenu__item-title,
.nrc-megamenu__item--active .nrc-megamenu__item-title {
  color: var(--accent);
}

.nrc-megamenu__preview {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nrc-megamenu__preview-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.38),
    0 2px 8px rgba(0, 0, 0, 0.22);
}

.nrc-megamenu__preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-megamenu__preview-img--active {
  opacity: 1;
}

.nrc-megamenu__preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.nrc-megamenu__cta {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  padding: 0.25rem 0;
  transition:
    gap 220ms cubic-bezier(0.22, 1, 0.36, 1),
    color 200ms ease;
}

.nrc-megamenu__cta:hover {
  gap: 0.75rem;
  color: var(--white);
}

.nrc-megamenu__cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.nrc-megamenu__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

/* ------------------------------------------------------------
   Ana içerik sarmalayıcı — sabit (fixed) header offset'i.
   Orijinal Next.js (public)/layout.tsx: <main style paddingTop:88px>.
   Bu offset porta taşınmamıştı; hero margin-top:-88px ile bunu iptal
   ettiğinden, offset olmadan hero 88px yukarı kayıyordu. Eklendi:
   ana sayfada hero full-bleed olur, diğer tüm sayfalar header'ın
   altından 88px boşlukla başlar.
   ------------------------------------------------------------ */
.nrc-main {
  padding-top: var(--header-height);
}

/* ------------------------------------------------------------
   10.3 Hero — .nrc-hero
   ------------------------------------------------------------ */
.nrc-hero {
  position: relative;
  /* Sabit header'ın arkasına taşır */
  margin-top: -88px;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--carbon);
}

@media (max-width: 640px) {
  .nrc-hero {
    min-height: 520px;
  }
}

@media (max-width: 480px) {
  .nrc-hero {
    min-height: 460px;
  }
}

@media (min-width: 768px) {
  .nrc-hero {
    min-height: 680px;
  }
}

@media (min-width: 1024px) {
  .nrc-hero {
    min-height: 720px;
  }
}

.nrc-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  user-select: none;
}

.nrc-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.3) 18%,
      transparent 32%
    ),
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.87) 0%,
      rgba(0, 0, 0, 0.68) 28%,
      rgba(0, 0, 0, 0.28) 50%,
      rgba(0, 0, 0, 0.08) 68%,
      transparent 80%
    ),
    radial-gradient(
      ellipse at 90% 18%,
      rgba(0, 0, 0, 0.6) 0%,
      transparent 52%
    );
  z-index: 1;
}

.nrc-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(88px + 2.5rem);
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .nrc-hero__content {
    padding-top: calc(88px + 4rem);
    padding-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .nrc-hero__content {
    padding-top: calc(88px + 5rem);
    padding-bottom: 5rem;
  }
}

.nrc-hero__text {
  max-width: 580px;
  transform: translateY(-28px);
}

.nrc-hero__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .nrc-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    letter-spacing: 0.025em;
  }
}

.nrc-hero__title-accent {
  color: var(--accent);
  letter-spacing: 0.005em;
}

.nrc-hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(240, 238, 233, 0.96);
  line-height: 1.85;
  letter-spacing: 0.015em;
  margin-bottom: 2.25rem;
  max-width: 50ch;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.nrc-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 480px) {
  .nrc-hero__cta {
    flex-direction: column;
    align-items: stretch;
  }
  .nrc-hero__cta-btn {
    width: 100%;
  }
}

.nrc-hero__cta-btn {
  font-size: 0.875rem !important;
  letter-spacing: 0.05em;
  font-weight: 700 !important;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms ease,
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

@media (hover: hover) {
  .nrc-hero__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  }

  /* HİZMETLERİMİZ butonu (btn-accent) — hover'da beyaza dönüp turuncu yazı */
  .nrc-hero__cta-btn:not(.nrc-hero__cta-btn--glass):hover:not(:disabled) {
    background: var(--white);
    border-color: var(--white);
    color: var(--accent);
  }

  /* RANDEVU AL — hover'da beyaza dönüşüyor */
  .nrc-hero__cta-btn--glass:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--accent);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    text-shadow: none;
  }
}

.nrc-hero__cta-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.nrc-hero__cta-btn--glass {
  background: rgba(0, 0, 0, 0.72);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ------------------------------------------------------------
   10.4 Services Overview — .nrc-services
   ------------------------------------------------------------ */
.nrc-services {
  background: var(--snow);
}

.nrc-services__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 639px) {
  .nrc-services__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

.nrc-services__header-action {
  flex-shrink: 0;
  padding-bottom: 0.25rem;
}

.nrc-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .nrc-services__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.nrc-services__card {
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--carbon);
}

.nrc-services__card-image {
  position: absolute;
  inset: 0;
}

.nrc-services__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms ease;
}

/* Hizmet kartlarında kırpma odağı (kullanıcı isteği). */
.nrc-services__card-img--right {
  object-position: right center;
}

.nrc-services__card-img--left {
  object-position: left center;
}

.nrc-services__card:hover .nrc-services__card-img {
  transform: scale(1.05);
}

.nrc-services__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.05) 65%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
  transition: opacity 300ms ease;
}

.nrc-services__card:hover .nrc-services__card-overlay {
  opacity: 0.7;
}

.nrc-services__card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem 1.1rem 1.1rem;
  gap: 0.35rem;
}

.nrc-services__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

@media (min-width: 768px) {
  .nrc-services__card-title {
    font-size: 1.0625rem;
  }
}

.nrc-services__card-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.nrc-services__card-arrow {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  transition: transform 200ms ease;
}

.nrc-services__card:hover .nrc-services__card-arrow {
  transform: translateX(6px);
  color: var(--accent);
}

/* ------------------------------------------------------------
   10.5 Service Card (liste/grid) — .nrc-service-card
   ------------------------------------------------------------ */

/* ------------------------------------------------------------
   10.6 Featured Cases — .nrc-featured
   ------------------------------------------------------------ */
.nrc-featured {
  background: var(--smoke);
}

.nrc-featured__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}

.nrc-featured__header-left {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

@media (max-width: 639px) {
  .nrc-featured__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .nrc-featured__header-action {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.nrc-featured__subtitle {
  color: var(--steel);
  font-size: 1rem;
  max-width: 56ch;
  line-height: 1.65;
  margin: 0;
}

.nrc-featured__header-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.875rem;
}

@media (max-width: 639px) {
  .nrc-featured__header-action {
    align-items: flex-start;
  }
}

.nrc-featured__arrows {
  display: flex;
  gap: 0.5rem;
}

.nrc-featured__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--carbon);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 200ms ease;
}

.nrc-featured__arrow:hover:not(:disabled) {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(224, 85, 20, 0.35);
  transform: translateY(-1px);
}

.nrc-featured__arrow:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nrc-featured__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.nrc-featured__arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.nrc-featured__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-block: 0.25rem 1.5rem;
  margin-bottom: -1rem;
}

.nrc-featured__track::-webkit-scrollbar {
  display: none;
}

.nrc-featured__card {
  flex: 0 0 270px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  transition: box-shadow 300ms ease, transform 300ms ease;
  background: var(--carbon);
}

.nrc-featured__card:hover {
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

@media (min-width: 640px) {
  .nrc-featured__card {
    flex: 0 0 360px;
  }
}

@media (min-width: 1024px) {
  .nrc-featured__card {
    flex: 0 0 350px;
  }
}

.nrc-featured__slider-area {
  position: relative;
  flex-shrink: 0;
}

.nrc-featured__static-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.nrc-featured__static-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nrc-featured__placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #1a1a18 0%, #2a2a28 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nrc-featured__placeholder-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
}

.nrc-featured__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3.5rem 1.25rem 1rem;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.94) 0%,
    rgba(8, 8, 8, 0.55) 45%,
    rgba(8, 8, 8, 0) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  pointer-events: none;
}

@media (max-width: 639px) {
  .nrc-featured__overlay {
    padding: 2rem 1rem 0.75rem;
  }
}

.nrc-featured__overlay-info {
  pointer-events: auto;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  min-width: 0;
}

.nrc-featured__service-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.005em;
  line-height: 1.3;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

.nrc-featured__vehicle-sub {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.nrc-featured__drag-hint {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  flex-shrink: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ------------------------------------------------------------
   10.7 Before/After Slider — .nrc-ba
   ------------------------------------------------------------ */
/* Uygulama detay içerik kolonu — orijinal .layout (max-width 920px, ortalı).
   Bu olmadan slider/galeri tüm container'a yayılıp aşırı büyüyordu. */
.nrc-case__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 920px;
  margin-inline: auto;
  padding-block: 4rem;
}

.nrc-case__hero {
  position: relative;
  background: var(--carbon);
  padding-block: 5rem 4.5rem;
  overflow: hidden;
}

.nrc-case__hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.2;
  filter: grayscale(20%);
}

.nrc-case__hero-content {
  position: relative;
  z-index: 1;
}

.nrc-case__vehicle {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.nrc-case__vehicle::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.nrc-case__title {
  color: var(--white);
  margin-bottom: 1.75rem;
  letter-spacing: -0.025em;
}

.nrc-case__duration {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--fog);
}

.nrc-case__section {
  min-width: 0;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--smoke);
}

.nrc-case__section:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.nrc-case__section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--carbon);
  margin-bottom: 1.25rem;
}

.nrc-case__testimonial {
  background: var(--snow);
  border: 1px solid var(--smoke);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.nrc-case__quote {
  font-size: 1.0625rem;
  color: var(--steel);
  line-height: 1.7;
  font-style: italic;
}

.nrc-case__quote-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--carbon);
  font-style: normal;
}

.nrc-ba {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  cursor: col-resize;
  overflow: hidden;
  border-radius: 6px;
  user-select: none;
  -webkit-user-select: none;
  background: var(--smoke);
}

.nrc-ba__layer {
  position: absolute;
  inset: 0;
}

.nrc-ba__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nrc-ba__label--before,
.nrc-ba__label--after {
  position: absolute;
  top: 0.75rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 0.275rem 0.6rem;
  border-radius: 3px;
  pointer-events: none;
}

.nrc-ba__label--before {
  left: 0.75rem;
}

.nrc-ba__label--after {
  right: 0.75rem;
}

.nrc-ba__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.nrc-ba__handle:focus {
  outline: none;
}

.nrc-ba__handle:focus .nrc-ba__handle-knob {
  box-shadow: 0 0 0 3px var(--accent);
}

.nrc-ba__handle-line {
  width: 2px;
  flex: 1;
  background: var(--white);
  opacity: 0.9;
}

.nrc-ba__handle-knob {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--carbon);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  cursor: col-resize;
}

/* Touch modu: tap-toggle */
.nrc-ba--touch {
  cursor: default;
}

.nrc-ba--touch .nrc-ba__layer {
  transition: clip-path 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-ba__toggle {
  pointer-events: auto;
  cursor: pointer;
  border: none;
  font: inherit;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 0.875rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  -webkit-tap-highlight-color: transparent;
  transition: background 180ms ease, color 180ms ease, transform 160ms ease,
    box-shadow 180ms ease;
  z-index: 5;
}

.nrc-ba__toggle:active {
  transform: scale(0.95);
}

.nrc-ba__toggle--active {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(224, 85, 20, 0.4);
}

/* Etiket/toggle görünürlüğü (orijinal EITHER/OR davranışı):
   - Masaüstü (varsayılan): statik Öncesi/Sonrası etiketleri + sürükleme tutamacı
     görünür; toggle butonları GİZLİ (yoksa aynı köşelere konumlanıp üst üste binerler).
   - Dokunmatik (.nrc-ba--touch — before-after.js ekler): toggle butonları görünür,
     statik etiketler + tutamaç gizli. */
.nrc-ba__toggle {
  display: none;
}

.nrc-ba--touch .nrc-ba__toggle {
  display: inline-flex;
}

.nrc-ba--touch .nrc-ba__label--before:not(.nrc-ba__toggle),
.nrc-ba--touch .nrc-ba__label--after:not(.nrc-ba__toggle),
.nrc-ba--touch .nrc-ba__handle {
  display: none;
}

/* ------------------------------------------------------------
   10.8 Case Card — .nrc-case-card
   ------------------------------------------------------------ */
.nrc-case-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-case-card:hover {
  transform: translateY(-4px);
}

.nrc-case-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--smoke);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 280ms ease;
}

.nrc-case-card:hover .nrc-case-card__image-wrap {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.nrc-case-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-case-card:hover .nrc-case-card__image {
  transform: scale(1.05);
}

.nrc-case-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--smoke) 0%, var(--fog) 100%);
}

.nrc-case-card__body {
  padding: 1.125rem 0.125rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.nrc-case-card__vehicle {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nrc-case-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--carbon);
  line-height: 1.35;
  letter-spacing: -0.005em;
}

/* ------------------------------------------------------------
   10.9 Case Gallery — .nrc-gallery
   ------------------------------------------------------------ */
.nrc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .nrc-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .nrc-gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.125rem;
  }
}

.nrc-gallery__grid--prominent {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nrc-gallery__grid--prominent {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 460px), 1fr));
    gap: 1.25rem;
  }
}

.nrc-gallery__item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  margin: 0;
  border: none;
  background: var(--smoke);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-gallery__item:hover {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.nrc-gallery__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.nrc-gallery__item--prominent {
  aspect-ratio: 16 / 10;
  max-height: 78vh;
  border-radius: 8px;
}

.nrc-gallery__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-gallery__item:hover .nrc-gallery__thumb {
  transform: scale(1.04);
}

.nrc-gallery__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  padding: 0.3rem 0.55rem;
  border-radius: 3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

/* ------------------------------------------------------------
   10.10 Lightbox — .nrc-lightbox
   ------------------------------------------------------------ */
.nrc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 15, 14, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1.25rem;
  animation: lbFadeIn 200ms ease-out;
}

.nrc-lightbox__counter {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
}

.nrc-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.nrc-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
  transform: scale(1.04);
}

.nrc-lightbox__close:active {
  transform: scale(0.96);
}

.nrc-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.nrc-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-50%) scale(1.04);
}

.nrc-lightbox__nav:active {
  transform: translateY(-50%) scale(0.96);
}

.nrc-lightbox__nav--prev {
  left: 1.25rem;
}

.nrc-lightbox__nav--next {
  right: 1.25rem;
}

.nrc-lightbox__stage {
  position: relative;
  width: 90vw;
  height: 80vh;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gizlenen tip rozeti gerçekten gizlensin — [hidden], inline-flex'i ezsin.
   (Before/After olmayan görselde boş turuncu dikdörtgen olarak çıkıyordu.) */
.nrc-lightbox__badge[hidden] {
  display: none;
}

.nrc-lightbox__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(224, 85, 20, 0.35);
}

.nrc-lightbox__image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  animation: lbImageFade 180ms ease;
}

.nrc-lightbox__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}

@media (max-width: 640px) {
  .nrc-lightbox__nav {
    width: 44px;
    height: 44px;
  }

  .nrc-lightbox__nav--prev {
    left: 0.5rem;
  }

  .nrc-lightbox__nav--next {
    right: 0.5rem;
  }

  .nrc-lightbox__stage {
    width: 100vw;
    height: 70vh;
  }

  .nrc-lightbox__counter {
    top: 0.875rem;
    font-size: 0.75rem;
  }
}

/* ------------------------------------------------------------
   10.11 Testimonials — .nrc-testimonials
   ------------------------------------------------------------ */

/* ------------------------------------------------------------
   10.12 FAQ — .nrc-faq
   ------------------------------------------------------------ */
.nrc-faq {
  background: var(--snow);
}

.nrc-faq__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .nrc-faq__inner {
    grid-template-columns: 340px 1fr;
    align-items: start;
  }
}

.nrc-faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--smoke);
}

.nrc-faq__item {
  border-bottom: 1px solid var(--smoke);
}

.nrc-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--carbon);
  text-align: left;
  transition: color 160ms ease;
}

.nrc-faq__question:hover {
  color: var(--accent);
}

.nrc-faq__icon {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 200ms ease;
}

.nrc-faq__answer {
  padding-bottom: 1.25rem;
}

.nrc-faq__answer p {
  font-size: 0.9375rem;
  color: var(--steel);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   10.13 Home Blog — .nrc-home-blog
   ------------------------------------------------------------ */
.nrc-home-blog {
  padding: 4rem 0;
  background: var(--white);
}

@media (min-width: 1024px) {
  .nrc-home-blog {
    padding: 6rem 0;
  }
}

.nrc-home-blog__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.nrc-home-blog__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.nrc-home-blog__title {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--carbon);
  line-height: 1.2;
  letter-spacing: -0.026em;
  margin-bottom: 0.75rem;
}

.nrc-home-blog__desc {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.65;
  max-width: 36rem;
}

.nrc-home-blog__nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.nrc-home-blog__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  padding: 0;
}

.nrc-home-blog__nav-btn--active {
  border: 1.5px solid rgba(224, 85, 20, 0.3);
  color: var(--accent);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(224, 85, 20, 0.1);
}

.nrc-home-blog__nav-btn--active:hover {
  border-color: rgba(224, 85, 20, 0.6);
  box-shadow: 0 2px 8px rgba(224, 85, 20, 0.18);
}

.nrc-home-blog__nav-btn--inactive {
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  color: var(--fog);
  cursor: default;
}

.nrc-home-blog__cards {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding-bottom: 0.25rem;
}

.nrc-home-blog__cards::-webkit-scrollbar {
  display: none;
}

.nrc-home-blog__card {
  /* Tek-satır slider: ekrana TAM sayıda kart sığar (yarım kart yok). */
  /* Desktop 4 tam kart; tablet/mobil override'ları kart kurallarından SONRA. */
  flex: 0 0 calc((100% - 3 * 1.25rem) / 4);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--smoke);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  text-decoration: none;
  animation: fadeSlideUp 0.4s ease both;
}

.nrc-home-blog__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(25, 25, 23, 0.1),
    0 2px 8px rgba(224, 85, 20, 0.06);
}

.nrc-home-blog__card-image {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  height: 200px;
  background: var(--smoke);
}

.nrc-home-blog__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
}

.nrc-home-blog__card:hover .nrc-home-blog__card-img {
  transform: scale(1.05);
}

.nrc-home-blog__card-img-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--slate) 0%, var(--carbon) 100%);
}

.nrc-home-blog__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
}

.nrc-home-blog__badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 4px 10px;
  border-radius: 9999px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

.nrc-home-blog__readtime {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  z-index: 10;
}

.nrc-home-blog__readtime-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(6px);
}

.nrc-home-blog__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
}

.nrc-home-blog__date {
  font-size: 12px;
  color: var(--mist);
  margin-bottom: 0.625rem;
}

.nrc-home-blog__card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--carbon);
  line-height: 1.4;
  letter-spacing: -0.014em;
  flex: 1;
  margin-bottom: 1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}

.nrc-home-blog__card:hover .nrc-home-blog__card-title {
  color: var(--accent);
}

.nrc-home-blog__read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s ease;
}

.nrc-home-blog__card:hover .nrc-home-blog__read-link {
  color: var(--accent-hover);
}

.nrc-home-blog__read-arrow {
  transition: transform 0.2s ease;
}

.nrc-home-blog__card:hover .nrc-home-blog__read-arrow {
  transform: translateX(2px);
}

.nrc-home-blog__footer {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.nrc-home-blog__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 11px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid rgba(25, 25, 23, 0.14);
  color: var(--carbon);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, border-color 0.2s ease,
    background 0.2s ease, transform 0.2s ease;
}

.nrc-home-blog__view-all:hover {
  background: var(--accent-muted);
  box-shadow: 0 6px 20px rgba(224, 85, 20, 0.18);
  border-color: rgba(224, 85, 20, 0.45);
  color: var(--accent-hover);
  transform: translateY(-1px);
}

.nrc-home-blog__view-all-arrow {
  transition: transform 0.2s ease;
}

.nrc-home-blog__view-all:hover .nrc-home-blog__view-all-arrow {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .nrc-home-blog__card {
    flex-basis: calc((100% - 1.25rem) / 2); /* tablet: 2 tam kart */
  }
}

@media (max-width: 640px) {
  .nrc-home-blog__header {
    flex-direction: column;
    gap: 1.25rem;
  }
  .nrc-home-blog__card {
    flex-basis: 100%; /* mobil: 1 tam kart */
  }
}

/* ------------------------------------------------------------
   10.14 Blog Card — .nrc-blog-card
   ------------------------------------------------------------ */
.nrc-blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-blog-card:hover {
  transform: translateY(-4px);
}

.nrc-blog-card__image-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--smoke);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 280ms ease;
}

.nrc-blog-card:hover .nrc-blog-card__image-wrap {
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.nrc-blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-blog-card:hover .nrc-blog-card__image {
  transform: scale(1.05);
}

.nrc-blog-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--carbon) 0%, var(--slate) 100%);
}

.nrc-blog-card__placeholder-mark {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.18);
  padding-left: 0.28em;
}

.nrc-blog-card__body {
  padding: 1.125rem 0.125rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.nrc-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.nrc-blog-card__meta time {
  color: var(--mist);
}

.nrc-blog-card__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--fog);
}

.nrc-blog-card__tag {
  color: var(--accent);
}

.nrc-blog-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--carbon);
  line-height: 1.35;
  letter-spacing: -0.005em;
}

.nrc-blog-card__excerpt {
  font-size: 0.9375rem;
  color: var(--steel);
  line-height: 1.6;
}

/* ------------------------------------------------------------
   10.15 Contact Section — .nrc-contact
   ------------------------------------------------------------ */
.nrc-contact {
  background: var(--snow);
}

.nrc-contact__inner {
  max-width: 560px;
}

.nrc-contact__title {
  color: var(--carbon);
  margin-bottom: 1rem;
}

.nrc-contact__subtitle {
  color: var(--steel);
  font-size: 1.0625rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 42ch;
}

.nrc-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.nrc-contact__meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 1px solid var(--smoke);
  padding-left: 2.5rem;
}

@media (max-width: 767px) {
  .nrc-contact__meta {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--smoke);
    padding-top: 2rem;
  }
}

.nrc-contact__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nrc-contact__meta-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}

.nrc-contact__meta-value {
  font-size: 1rem;
  color: var(--steel);
  line-height: 1.5;
}

a.nrc-contact__meta-value:hover {
  color: var(--accent);
}

/* ------------------------------------------------------------
   10.16 Footer — .nrc-footer
   ------------------------------------------------------------ */
.nrc-footer {
  background: var(--carbon);
  color: var(--fog);
  margin-top: auto;
}

/* ------------------------------------------------------------
   Sabit (floating) WhatsApp butonu — .nrc-whatsapp-float
   Akıştan çıkar (position: fixed) → footer altında boşluk bırakmaz.
   ------------------------------------------------------------ */
.nrc-whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nrc-whatsapp-float:hover {
  background: #1da851;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

@media (max-width: 640px) {
  .nrc-whatsapp-float {
    width: 50px;
    height: 50px;
    right: 1rem;
    bottom: 1rem;
  }
}

.nrc-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 4rem;
}

@media (min-width: 640px) {
  .nrc-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .nrc-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.nrc-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nrc-footer__logo {
  display: inline-flex;
  align-items: center;
}

.nrc-footer__logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.nrc-footer__tagline {
  font-size: 0.9rem;
  color: var(--fog);
  line-height: 1.6;
  max-width: 28ch;
}

.nrc-footer__social {
  display: flex;
  gap: 1.25rem;
}

.nrc-footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--fog);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.nrc-footer__social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(224, 85, 20, 0.08);
}

.nrc-footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nrc-footer__col-title {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 0.25rem;
}

.nrc-footer__col-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nrc-footer__col-link {
  font-size: 0.9375rem;
  color: var(--fog);
  text-decoration: none;
  padding-block: 0.375rem;
  transition: color 160ms ease;
}

.nrc-footer__col-link:hover {
  color: var(--accent);
}

.nrc-footer__col-link:focus-visible {
  text-decoration: underline;
}

.nrc-footer__col-link:active {
  color: var(--accent);
}

.nrc-footer__contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.nrc-footer__contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.nrc-footer__contact-body {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  min-width: 0;
}

.nrc-footer__contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mist);
  font-weight: 600;
}

.nrc-footer__contact-value {
  font-size: 0.9375rem;
  color: var(--fog);
}

.nrc-footer__bottom {
  border-top: 1px solid var(--slate);
  padding-block: 1.25rem;
}

.nrc-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nrc-footer__copyright {
  font-size: 0.875rem;
  color: var(--mist);
}

.nrc-footer__legal-links {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nrc-footer__legal-link {
  font-size: 0.8125rem;
  color: var(--mist);
  transition: color 160ms ease;
}

.nrc-footer__legal-link:hover {
  color: var(--fog);
}

@media (max-width: 640px) {
  .nrc-footer__grid {
    padding-block: 2rem;
    gap: 2rem;
  }

  .nrc-footer__logo-img {
    height: 60px;
  }

  .nrc-footer__col-title {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
  }
}

/* ------------------------------------------------------------
   10.17 How It Works — .nrc-howitworks
   ------------------------------------------------------------ */

/* ------------------------------------------------------------
   10.18 Explorer (blog/uygulama filtreleme) — .nrc-explorer
   ------------------------------------------------------------ */

/* ------------------------------------------------------------
   10.18.1 Blog arşivi (/blog) — liste konteyneri + Explorer
   ------------------------------------------------------------
   Kaynak: home.php + src/components/public/Explorer.module.css.
   Hero (.nrc-blog-archive__hero*) §10.20'de. Kart görünümü
   .nrc-blog-card §10.14'te tanımlıdır; burada yalnızca grid
   yerleşimi (.nrc-blog-explorer__card) verilir.
   ------------------------------------------------------------ */
.nrc-blog-archive__list {
  background: var(--snow);
  padding-block: 4rem 5rem;
}

.nrc-blog-explorer {
  display: block;
}

.nrc-blog-explorer__toolbar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.nrc-blog-explorer__toolbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .nrc-blog-explorer__toolbar-top {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0.875rem;
  }
}

.nrc-blog-explorer__result-line {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: var(--mist);
  letter-spacing: 0.01em;
}

.nrc-blog-explorer__result-line strong {
  color: var(--steel);
  font-weight: 700;
  margin-right: 0.25rem;
}

.nrc-blog-explorer__search {
  position: relative;
  flex-shrink: 0;
  width: 280px;
}

@media (max-width: 767px) {
  .nrc-blog-explorer__search {
    width: 100%;
  }
}

.nrc-blog-explorer__search-icon {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mist);
  pointer-events: none;
}

.nrc-blog-explorer__search-input {
  width: 100%;
  height: 42px;
  padding: 0 2.4rem 0 2.5rem;
  background: var(--white);
  border: 1px solid var(--smoke);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--carbon);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.nrc-blog-explorer__search-input::placeholder {
  color: var(--mist);
}

.nrc-blog-explorer__search-input:focus {
  outline: none;
  border-color: var(--carbon);
  box-shadow: 0 0 0 3px rgba(25, 25, 23, 0.06);
}

.nrc-blog-explorer__tabs {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.25rem 1.625rem;
  border-bottom: 1px solid var(--smoke);
}

@media (max-width: 767px) {
  .nrc-blog-explorer__tabs {
    flex-wrap: nowrap;
    gap: 1.375rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
  }

  .nrc-blog-explorer__tabs::-webkit-scrollbar {
    display: none;
  }
}

.nrc-blog-explorer__tab {
  position: relative;
  flex-shrink: 0;
  padding: 0 0 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  color: var(--mist);
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}

.nrc-blog-explorer__tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-blog-explorer__tab:hover {
  color: var(--carbon);
}

.nrc-blog-explorer__tab--active {
  color: var(--carbon);
  font-weight: 700;
}

.nrc-blog-explorer__tab--active::after {
  transform: scaleX(1);
}

.nrc-blog-explorer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.5rem;
}

@media (min-width: 640px) {
  .nrc-blog-explorer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.75rem;
  }
}

@media (min-width: 1024px) {
  .nrc-blog-explorer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 1.875rem;
  }
}

.nrc-blog-explorer__card {
  display: block;
  min-width: 0;
}

.nrc-blog-explorer__empty {
  text-align: center;
  padding-block: 5rem;
}

.nrc-blog-explorer__empty-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--carbon);
  margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}

.nrc-blog-explorer__empty-hint {
  font-size: 0.9375rem;
  color: var(--steel);
  line-height: 1.6;
  max-width: 36ch;
  margin-inline: auto;
}

.nrc-blog-explorer__empty-reset {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease;
}

.nrc-blog-explorer__empty-reset:hover {
  border-bottom-color: var(--accent);
}

/* ============================================================
   10.19 Sayfa şablonu blokları (.nrc-page-*)
   ------------------------------------------------------------
   Next.js (public) page.module.css içeriklerinin portu.
   Şablon agent'ları (B7/B8/B9) bu sınıfları kullanır.
   ============================================================ */

/* ── Ortak: koyu sayfa başlığı / breadcrumb ──────────────── */

/* ── Detay yan menü kartı (ortak) ────────────────────────── */

/* ── Hizmet detay (single-service) ───────────────────────── */

/* Hizmet listesi (archive) — satır görünümü */

/* ── CTA banner (ortak, koyu) ────────────────────────────── */

/* ── Uygulama detay (single-case) ────────────────────────── */

/* Uygulama galeri sayfası (arşiv) zemini */
.nrc-case-gallery-page {
  background: var(--snow);
  padding-block: 4rem 6rem;
}

@media (min-width: 768px) {
  .nrc-case-gallery-page {
    padding-block: 5rem 7rem;
  }
}

/* ── Blog detay (single) — prose ─────────────────────────── */

/* ── Hakkımızda sayfası ──────────────────────────────────── */

/* Hero banner — kaynak hakkimizda/page.module.css (.hero/.heroBg/.heroTitle).
   Carbon zemin + herosayfalar.jpg overlay (opacity 0.2) + beyaz başlık. */
.nrc-about__hero {
  position: relative;
  background: var(--carbon);
  padding-block: 5rem 4.5rem;
  overflow: hidden;
}

.nrc-about__hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/herosayfalar.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.2;
  filter: grayscale(20%);
}

.nrc-about__hero .container {
  position: relative;
  z-index: 1;
}

.nrc-about__hero-title {
  color: var(--white);
}

/* ------------------------------------------------------------
   Diğer sayfa hero/header banner'ları (port'ta atlanmıştı).
   Basit hero'lar: carbon zemin + herosayfalar.jpg overlay + beyaz başlık.
   Single header'lar (hizmet/blog detay): breadcrumb / meta dahil.
   ------------------------------------------------------------ */
.nrc-legal__hero,
.nrc-iletisim__hero,
.nrc-hizmet-archive__hero,
.nrc-blog-archive__hero,
.nrc-page__hero {
  position: relative;
  background: var(--carbon);
  padding-block: 5rem 4.5rem;
  overflow: hidden;
}

.nrc-legal__hero-bg,
.nrc-iletisim__hero-bg,
.nrc-hizmet-archive__hero-bg,
.nrc-blog-archive__hero-bg,
.nrc-hizmet-detay__hero-bg,
.nrc-page__hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/herosayfalar.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.2;
  filter: grayscale(20%);
}

.nrc-legal__hero .container,
.nrc-iletisim__hero .container,
.nrc-hizmet-archive__hero .container,
.nrc-blog-archive__hero .container,
.nrc-page__hero .container {
  position: relative;
  z-index: 1;
}

.nrc-legal__hero-title,
.nrc-iletisim__hero-title,
.nrc-hizmet-archive__hero-title,
.nrc-blog-archive__hero-title,
.nrc-page__hero-title {
  color: var(--white);
}

/* ------------------------------------------------------------
   Hizmet arşivi gövde — kart grid + alt CTA banner
   Kaynak: hizmetler/page.module.css (listSection / cta).
   Kartların kendisi .nrc-service-card (§10.5) ile stillenir.
   ------------------------------------------------------------ */
.nrc-hizmet-archive {
  background: var(--snow);
}

/* Numaralı liste (kaynak hizmetler/page.module.css .list/.row). */
.nrc-hizmet-archive__list {
  display: flex;
  flex-direction: column;
}

.nrc-hizmet-archive__row {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--smoke);
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nrc-hizmet-archive__list .nrc-hizmet-archive__row:first-child {
  border-top: 1px solid var(--smoke);
}

@media (min-width: 768px) {
  .nrc-hizmet-archive__row {
    grid-template-columns: 3.5rem 1fr 200px auto;
    gap: 2rem;
    padding: 1.25rem;
    margin-inline: -1.25rem;
    border-left: 3px solid transparent;
  }

  .nrc-hizmet-archive__row:hover {
    background: var(--white);
    border-left-color: var(--accent);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  }
}

.nrc-hizmet-archive__row-num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent);
  opacity: 0.8;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity 180ms ease;
}

.nrc-hizmet-archive__row:hover .nrc-hizmet-archive__row-num {
  opacity: 1;
}

.nrc-hizmet-archive__row-content {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.nrc-hizmet-archive__row-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--carbon);
  line-height: 1.25;
  transition: color 180ms ease;
}

@media (min-width: 768px) {
  .nrc-hizmet-archive__row-title {
    font-size: 1.25rem;
  }
}

.nrc-hizmet-archive__row:hover .nrc-hizmet-archive__row-title {
  color: var(--accent);
}

.nrc-hizmet-archive__row-desc {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.6;
  max-width: 56ch;
}

.nrc-hizmet-archive__row-thumb {
  display: none;
}

@media (min-width: 768px) {
  .nrc-hizmet-archive__row-thumb {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    overflow: hidden;
    background: var(--smoke);
    flex-shrink: 0;
  }
}

.nrc-hizmet-archive__row-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.nrc-hizmet-archive__row:hover .nrc-hizmet-archive__row-thumb-img {
  transform: scale(1.06);
}

.nrc-hizmet-archive__row-arrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--fog);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  transition: color 180ms ease, transform 180ms ease;
}

.nrc-hizmet-archive__row:hover .nrc-hizmet-archive__row-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* Alt CTA banner — beyaz kart, başlık/açıklama solda, butonlar sağda. */
.nrc-hizmet-archive__cta {
  margin-top: 3.5rem;
  background: var(--white);
  border: 1px solid var(--smoke);
  border-radius: calc(var(--radius) + 5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .nrc-hizmet-archive__cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}

.nrc-hizmet-archive__cta-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--carbon);
  margin-bottom: 0.375rem;
}

.nrc-hizmet-archive__cta-desc {
  font-size: 0.9375rem;
  color: var(--steel);
  line-height: 1.55;
}

.nrc-hizmet-archive__cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Hizmet detay başlığı — carbon banner + breadcrumb + alt başlık. */
.nrc-hizmet-single__header {
  background: var(--carbon);
  padding-block: 4rem;
}

.nrc-hizmet-single__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--mist);
  margin-bottom: 1.5rem;
}

.nrc-hizmet-single__breadcrumb a {
  color: var(--fog);
  transition: color 160ms ease;
}

.nrc-hizmet-single__breadcrumb a:hover {
  color: var(--accent);
}

.nrc-hizmet-single__title {
  color: var(--white);
  margin-bottom: 1rem;
}

.nrc-hizmet-single__subtitle {
  color: var(--fog);
  font-size: 1.0625rem;
  max-width: 50ch;
  line-height: 1.65;
}

/* Blog detay başlığı — carbon + overlay + meta satırı (tarih·okuma·etiket). */
.nrc-blog-single__header {
  position: relative;
  background: var(--carbon);
  padding-block: 5rem 4.5rem;
  overflow: hidden;
}

.nrc-blog-single__header-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/herosayfalar.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.2;
  filter: grayscale(20%);
}

.nrc-blog-single__header .container {
  position: relative;
  z-index: 1;
}

.nrc-blog-single__title {
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 36ch;
}

.nrc-blog-single__meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fog);
}

.nrc-blog-single__meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--mist);
}

.nrc-blog-single__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.nrc-blog-single__tag {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
}

.nrc-about {
  background: var(--snow);
  padding-block: 5rem;
}

@media (min-width: 768px) {
  .nrc-about {
    padding-block: 7rem;
  }
}

.nrc-about__header {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--smoke);
  text-align: center;
}

@media (min-width: 768px) {
  .nrc-about__header {
    margin-bottom: 3.5rem;
  }
}

.nrc-about__title {
  margin: 0.75rem auto 0;
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 22ch;
}

.nrc-about__body {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.nrc-about__body p {
  color: var(--steel);
  font-size: 1.0625rem;
  line-height: 1.85;
}

.nrc-about__lead {
  font-size: 1.1875rem !important;
  color: var(--carbon) !important;
  font-weight: 500;
  line-height: 1.7 !important;
}

@media (min-width: 768px) {
  .nrc-about__lead {
    font-size: 1.25rem !important;
  }
}

.nrc-about__closing {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--smoke);
  font-size: 1.0625rem !important;
  font-weight: 500;
  color: var(--carbon) !important;
  font-style: italic;
}

/* ── İletişim sayfası ────────────────────────────────────── */

/* ── Yasal sayfalar (KVKK / Kullanım Koşulları) ──────────── */
.nrc-legal {
  background: var(--snow);
  padding-block: 4rem;
}

@media (min-width: 768px) {
  .nrc-legal {
    padding-block: 6rem;
  }
}

.nrc-legal__article {
  max-width: 760px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--smoke);
  border-radius: 8px;
  padding: 2rem 1.75rem;
}

@media (min-width: 768px) {
  .nrc-legal__article {
    padding: 3rem 3.25rem;
  }
}

.nrc-legal__lead {
  font-size: 1.0625rem;
  color: var(--carbon);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 500;
}

.nrc-legal__h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--carbon);
  margin-top: 2.25rem;
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.nrc-legal__article p {
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.nrc-legal__article p strong,
.nrc-legal__list strong {
  color: var(--carbon);
  font-weight: 600;
}

.nrc-legal__article a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.nrc-legal__article a:hover {
  color: var(--accent-hover);
}

.nrc-legal__list {
  list-style: none;
  margin: 0 0 1.25rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.nrc-legal__list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--steel);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.nrc-legal__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6875rem;
  width: 6px;
  height: 1px;
  background: var(--accent);
}

/* ============================================================
   11. WordPress / admin-bar uyum düzeltmeleri
   ------------------------------------------------------------
   Sabit header (.nrc-header) + giriş yapmış kullanıcının
   admin-bar'ı (#wpadminbar) çakışmasın diye küçük offset'ler.
   ============================================================ */

/* Giriş yapan kullanıcıda admin bar yüksekliği kadar header'ı aşağı it. */
.admin-bar .nrc-header {
  top: 32px;
}

.admin-bar .nrc-header__mobile-menu,
.admin-bar .nrc-megamenu {
  top: calc(88px + 32px);
}

@media (max-width: 782px) {
  .admin-bar .nrc-header {
    top: 46px;
  }
  .admin-bar .nrc-header__mobile-menu {
    top: calc(64px + 46px);
  }
}

@media (max-width: 600px) {
  /* WP admin bar mobilde scroll'da gizlenir; header'ı tepeye sabitle. */
  .admin-bar .nrc-header {
    top: 0;
  }
  .admin-bar .nrc-header__mobile-menu {
    top: 64px;
  }
}

/* WP align sınıfları, gömülü içerik / wp_kses_post çıktıları için. */
.alignleft {
  float: left;
  margin: 0 1.5rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
}

.aligncenter {
  display: block;
  margin-inline: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  color: var(--mist);
  text-align: center;
}

/* Görsel: WP eklediği inline genişlik/yükseklikte oran korunsun. */
.nrc-prose img,
.wp-caption img {
  height: auto;
}

/* prefers-reduced-motion: hareketi azaltma tercihi (erişilebilirlik). */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Sayfa gövde stilleri (port'ta atlanan sınıf adları altına eklendi)
   ============================================================ */

/* ── İletişim — gövde ──────────────────────────────────── */
.nrc-iletisim__map {
  width: 100%;
  height: 420px;
  background: var(--smoke);
}

@media (min-width: 768px) {
  .nrc-iletisim__map {
    height: 500px;
  }
}

.nrc-iletisim {
  background: var(--snow);
  padding-block: 5rem;
}

.nrc-iletisim__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .nrc-iletisim__grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
  }
}

.nrc-iletisim__cta {
  display: flex;
  flex-direction: column;
}

.nrc-iletisim__cta-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.nrc-iletisim__cta-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--carbon);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.125rem;
}

.nrc-iletisim__cta-desc {
  font-size: 1rem;
  color: var(--steel);
  line-height: 1.75;
  max-width: 38ch;
  margin-bottom: 2.25rem;
}

.nrc-iletisim__cta-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.nrc-iletisim__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: #25d366;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
  letter-spacing: 0.01em;
}

.nrc-iletisim__wa-btn:hover {
  background: #1da851;
  transform: translateY(-1px);
}

.nrc-iletisim__phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: var(--white);
  border: 1.5px solid var(--carbon);
  color: var(--carbon);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nrc-iletisim__phone-link:hover {
  background: var(--carbon);
  color: var(--white);
  transform: translateY(-1px);
}

.nrc-iletisim__card {
  border: 1px solid var(--smoke);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}

.nrc-iletisim__card-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(224, 85, 20, 0.2) 100%);
}

.nrc-iletisim__card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

@media (min-width: 640px) {
  .nrc-iletisim__card-body {
    padding: 2.25rem 2.5rem;
  }
}

.nrc-iletisim__detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--smoke);
}

.nrc-iletisim__detail-item:first-child {
  padding-top: 0;
}

.nrc-iletisim__detail-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.nrc-iletisim__detail-label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.nrc-iletisim__detail-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--carbon);
  line-height: 1.55;
  text-decoration: none;
  transition: color 160ms ease;
}

a.nrc-iletisim__detail-value:hover {
  color: var(--accent);
}

.nrc-iletisim__detail-value--icon {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.625rem;
}

.nrc-iletisim__detail-icon {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.125rem;
}

.nrc-iletisim__detail-value-muted {
  font-size: 1rem;
  font-weight: 500;
  color: var(--carbon);
  line-height: 1.55;
}

.nrc-iletisim__maps-btn {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 160ms ease;
}

.nrc-iletisim__maps-btn:hover {
  gap: 0.625rem;
}

/* ── Hizmet detay — gövde (layout/content/sidebar) ─────── */
.nrc-hizmet-single__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .nrc-hizmet-single__layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}

.nrc-hizmet-single__content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.nrc-hizmet-single__section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nrc-hizmet-single__section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--carbon);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--smoke);
}

.nrc-hizmet-single__text {
  font-size: 1rem;
  color: var(--steel);
  line-height: 1.75;
}

.nrc-hizmet-single__text p {
  margin-bottom: 1rem;
}

.nrc-hizmet-single__text p:last-child {
  margin-bottom: 0;
}

.nrc-hizmet-single__case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.nrc-hizmet-single__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .nrc-hizmet-single__sidebar {
    position: sticky;
    top: 88px;
  }
}

.nrc-hizmet-single__sidebar-card {
  background: var(--carbon);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nrc-hizmet-single__sidebar-title {
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 700;
}

.nrc-hizmet-single__sidebar-text {
  color: var(--fog);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.nrc-hizmet-single__sidebar-info {
  background: var(--white);
  border: 1px solid var(--smoke);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.nrc-hizmet-single__info-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--carbon);
  margin-bottom: 0.875rem;
}

.nrc-hizmet-single__info-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nrc-hizmet-single__info-list li {
  font-size: 0.9375rem;
  color: var(--steel);
  padding-left: 1rem;
  position: relative;
}

.nrc-hizmet-single__info-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ── Blog detay (single) — gövde ───────────────────────── */
.nrc-blog-single__layout {
  /* Sidebar (Randevu kartı) kaldırıldı → tek sütun, sayfada ortalı (kullanıcı isteği). */
  max-width: 40rem;
  margin-inline: auto;
  padding-block: 3.5rem 5rem;
}

.nrc-blog-single__cover {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--smoke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.nrc-blog-single__cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nrc-blog-single__lede {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--carbon);
  font-weight: 500;
  max-width: 68ch;
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid var(--smoke);
}

.nrc-blog-single__content {
  max-width: 100%;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--steel);
}

.nrc-blog-single__content > *:first-child {
  margin-top: 0;
}

.nrc-blog-single__content h2 {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--carbon);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
}

.nrc-blog-single__content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--carbon);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.nrc-blog-single__content h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--carbon);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}

.nrc-blog-single__content p {
  color: var(--steel);
  margin-bottom: 1.375rem;
}

.nrc-blog-single__content a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 160ms ease;
}

.nrc-blog-single__content a:hover {
  color: var(--accent-hover);
}

.nrc-blog-single__content strong {
  font-weight: 700;
  color: var(--carbon);
}

.nrc-blog-single__content em {
  font-style: italic;
}

.nrc-blog-single__content ul,
.nrc-blog-single__content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.nrc-blog-single__content ul {
  list-style: none;
  padding-left: 0;
}

.nrc-blog-single__content ol {
  list-style: decimal;
}

.nrc-blog-single__content li {
  color: var(--steel);
  margin-bottom: 0.625rem;
  padding-left: 0;
}

.nrc-blog-single__content ul > li {
  position: relative;
  padding-left: 1.5rem;
}

.nrc-blog-single__content ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.nrc-blog-single__content ol > li {
  padding-left: 0.375rem;
}

.nrc-blog-single__content li::marker {
  color: var(--accent);
  font-weight: 700;
}

.nrc-blog-single__content blockquote {
  margin: 2rem 0;
  padding: 0.5rem 0 0.5rem 1.5rem;
  border-left: 3px solid var(--accent);
  font-size: 1.1875rem;
  line-height: 1.6;
  font-style: italic;
  color: var(--carbon);
}

.nrc-blog-single__content blockquote p {
  color: var(--carbon);
  margin-bottom: 0.5rem;
}

.nrc-blog-single__content blockquote p:last-child {
  margin-bottom: 0;
}

.nrc-blog-single__content img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-block: 2rem;
}

.nrc-blog-single__content figure {
  margin-block: 2rem;
}

.nrc-blog-single__content figure img {
  margin-block: 0;
}

.nrc-blog-single__content figcaption {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  color: var(--mist);
  text-align: center;
}

.nrc-blog-single__content hr {
  border: none;
  height: 1px;
  background: var(--smoke);
  margin-block: 2.5rem;
}

.nrc-blog-single__content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
  background: var(--smoke);
  color: var(--carbon);
  padding: 0.15em 0.4em;
  border-radius: 3px;
}

.nrc-blog-single__content pre {
  background: var(--carbon);
  color: var(--snow);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin-block: 2rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.nrc-blog-single__content pre code {
  background: none;
  color: inherit;
  padding: 0;
}

.nrc-blog-single__related {
  background: var(--snow);
  padding-block: 4rem 5rem;
  border-top: 1px solid var(--smoke);
}

.nrc-blog-single__related-title {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--carbon);
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
}

.nrc-blog-single__related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .nrc-blog-single__related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .nrc-blog-single__related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   Uygulama arşivi — CasesExplorer (kaynak Explorer.module.css)
   ============================================================ */
.nrc-uygulama-explorer {
  display: block;
}

.nrc-uygulama-explorer__toolbar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

.nrc-uygulama-explorer__toolbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .nrc-uygulama-explorer__toolbar-top {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 0.875rem;
  }
}

.nrc-uygulama-explorer__result-line {
  flex-shrink: 0;
  font-size: 0.8125rem;
  color: var(--mist);
  letter-spacing: 0.01em;
}

.nrc-uygulama-explorer__result-line strong {
  color: var(--steel);
  font-weight: 700;
  margin-right: 0.25rem;
}

.nrc-uygulama-explorer__search {
  position: relative;
  flex-shrink: 0;
  width: 280px;
}

@media (max-width: 767px) {
  .nrc-uygulama-explorer__search {
    width: 100%;
  }
}

.nrc-uygulama-explorer__search-icon {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mist);
  pointer-events: none;
}

.nrc-uygulama-explorer__search-input {
  width: 100%;
  height: 42px;
  padding: 0 1rem 0 2.5rem;
  background: var(--white);
  border: 1px solid var(--smoke);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--carbon);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.nrc-uygulama-explorer__search-input::placeholder {
  color: var(--mist);
}

.nrc-uygulama-explorer__search-input:focus {
  outline: none;
  border-color: var(--carbon);
  box-shadow: 0 0 0 3px rgba(25, 25, 23, 0.06);
}

.nrc-uygulama-explorer__tabs {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0.25rem 1.625rem;
  border-bottom: 1px solid var(--smoke);
}

@media (max-width: 767px) {
  .nrc-uygulama-explorer__tabs {
    flex-wrap: nowrap;
    gap: 1.375rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
  }

  .nrc-uygulama-explorer__tabs::-webkit-scrollbar {
    display: none;
  }
}

.nrc-uygulama-explorer__tab {
  position: relative;
  flex-shrink: 0;
  padding: 0 0 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  color: var(--mist);
  white-space: nowrap;
  letter-spacing: -0.01em;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 180ms ease;
}

.nrc-uygulama-explorer__tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-uygulama-explorer__tab:hover {
  color: var(--carbon);
}

.nrc-uygulama-explorer__tab--active {
  color: var(--carbon);
  font-weight: 700;
}

.nrc-uygulama-explorer__tab--active::after {
  transform: scaleX(1);
}

.nrc-uygulama-explorer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.5rem;
}

@media (min-width: 640px) {
  .nrc-uygulama-explorer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.75rem;
  }
}

@media (min-width: 1024px) {
  .nrc-uygulama-explorer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 1.875rem;
  }
}

.nrc-uygulama-explorer__card {
  display: block;
  min-width: 0;
}

.nrc-uygulama-explorer__empty {
  text-align: center;
  padding-block: 5rem;
}

.nrc-uygulama-explorer__empty-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--carbon);
  margin-bottom: 0.5rem;
  letter-spacing: -0.005em;
}

.nrc-uygulama-explorer__empty-hint {
  font-size: 0.9375rem;
  color: var(--steel);
  line-height: 1.6;
  max-width: 36ch;
  margin-inline: auto;
}

.nrc-uygulama-explorer__empty-reset {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: border-color 160ms ease;
}

.nrc-uygulama-explorer__empty-reset:hover {
  border-bottom-color: var(--accent);
}

/* Filtre düzeltme: gizlenen kartlar gerçekten gizlensin — [hidden] sınıfın display:block'unu ezsin. */
.nrc-uygulama-explorer__card[hidden],
.nrc-blog-explorer__card[hidden] {
  display: none !important;
}

/* ============================================================
   Premium hizmet detay sayfası — .nrc-hizmet-detay__*
   Kaynak: hizmetler/hizmet.module.css (hero V1 + v2 premium şablon).
   ============================================================ */

/* Hero — full-bleed gri tonlu görsel + başlık */
.nrc-hizmet-detay__hero {
  position: relative;
  background: var(--carbon);
  padding-block: 5rem 4.5rem;
  overflow: hidden;
}

/* .nrc-hizmet-detay__hero-bg artık ortak hero-bg kuralını kullanıyor
   (herosayfalar.jpg + carbon + opacity 0.2 + grayscale 20%) — diğer sayfa
   herolarıyla aynı. Eski img-tabanlı kural kaldırıldı. */

.nrc-hizmet-detay__hero-content {
  position: relative;
  z-index: 1;
}

.nrc-hizmet-detay__hero-title {
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}

/* Ortak eyebrow (heroEyebrowV2) */
.nrc-hizmet-detay__eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* Intro — editöryel, ortalı */
.nrc-hizmet-detay__intro {
  background: var(--snow);
  padding-block: 6rem;
  border-bottom: 1px solid var(--smoke);
}

.nrc-hizmet-detay__intro-container {
  max-width: 780px;
  text-align: center;
}

.nrc-hizmet-detay__intro-heading {
  font-size: clamp(1.625rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--carbon);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 auto 2rem;
  max-width: 22ch;
}

.nrc-hizmet-detay__intro-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.0625rem;
  color: var(--steel);
  line-height: 1.75;
  max-width: 60ch;
  margin-inline: auto;
}

.nrc-hizmet-detay__intro-body p {
  margin: 0;
}

/* Avantajlar — 3 numaralı, ikonsuz */
.nrc-hizmet-detay__points {
  background: var(--white);
  padding-block: 5rem;
}

.nrc-hizmet-detay__points-header,
.nrc-hizmet-detay__process-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.nrc-hizmet-detay__points-title {
  font-size: clamp(1.625rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--carbon);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 auto;
  max-width: 22ch;
}

.nrc-hizmet-detay__points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem;
}

.nrc-hizmet-detay__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.nrc-hizmet-detay__point-num {
  font-size: 2rem;
  font-weight: 300;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.nrc-hizmet-detay__point-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--carbon);
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.nrc-hizmet-detay__point-text {
  font-size: 0.9375rem;
  color: var(--steel);
  line-height: 1.65;
  max-width: 36ch;
  margin-inline: auto;
}

/* Süreç — yatay numaralı, ikonlu, animasyonlu bağlantı çizgisi */
.nrc-hizmet-detay__process {
  background: var(--snow);
  padding-block: 5rem;
  border-top: 1px solid var(--smoke);
}

.nrc-hizmet-detay__process-title {
  font-size: clamp(1.625rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: var(--carbon);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0.875rem auto 0;
  max-width: 22ch;
}

.nrc-hizmet-detay__process-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  position: relative;
}

.nrc-hizmet-detay__process-list::before {
  content: "";
  position: absolute;
  top: 1.375rem;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--accent);
  opacity: 0.2;
  z-index: 0;
}

.nrc-hizmet-detay__process-list::after {
  content: "";
  position: absolute;
  top: calc(1.375rem - 1px);
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(224, 85, 20, 0.45);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 0;
  pointer-events: none;
  animation: nrcProcessFill 2.5s ease-in-out infinite alternate both;
}

@keyframes nrcProcessFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.nrc-hizmet-detay__process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-hizmet-detay__process-step:hover {
  transform: translateY(-3px);
}

.nrc-hizmet-detay__process-step:hover .nrc-hizmet-detay__step-index {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(224, 85, 20, 0.32);
}

.nrc-hizmet-detay__process-step:hover .nrc-hizmet-detay__step-title {
  color: var(--accent);
}

.nrc-hizmet-detay__step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
  box-shadow: 0 4px 12px rgba(224, 85, 20, 0.18);
  position: relative;
  z-index: 2;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 240ms ease;
}

.nrc-hizmet-detay__step-icon {
  color: var(--accent);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.nrc-hizmet-detay__step-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  max-width: 18ch;
  margin-inline: auto;
}

.nrc-hizmet-detay__step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--carbon);
  line-height: 1.3;
  letter-spacing: -0.005em;
  transition: color 200ms ease;
}

.nrc-hizmet-detay__step-text {
  display: block;
  font-size: 0.8125rem;
  color: var(--steel);
  line-height: 1.5;
  max-width: 22ch;
  margin-inline: auto;
}

/* CTA */
.nrc-hizmet-detay__cta {
  background: var(--white);
  padding-block: 5rem;
  border-top: 1px solid var(--smoke);
}

.nrc-hizmet-detay__cta-inner {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.nrc-hizmet-detay__cta-title {
  font-size: clamp(1.625rem, 3.2vw, 2.25rem);
  font-weight: 900;
  color: var(--carbon);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
}

.nrc-hizmet-detay__cta-sub {
  color: var(--steel);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2.25rem;
  max-width: 46ch;
  margin-inline: auto;
}

.nrc-hizmet-detay__cta-actions {
  display: flex;
  gap: 0.875rem;
  justify-content: center;
  flex-wrap: wrap;
}

.nrc-hizmet-detay__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 2.25rem;
  background: #25d366;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 180ms ease, transform 200ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}

.nrc-hizmet-detay__cta-primary:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(29, 168, 81, 0.38);
}

.nrc-hizmet-detay__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: calc(1rem - 1px) calc(2.25rem - 1px);
  background: transparent;
  color: var(--carbon);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid var(--carbon);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nrc-hizmet-detay__cta-secondary:hover {
  background: var(--carbon);
  color: var(--white);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .nrc-hizmet-detay__points-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Tablet (769-1024px): 3 sütun sıkışıyordu → 2 sütun. ≤768px (1 sütun) etkilenmez. */
@media (min-width: 769px) and (max-width: 1024px) {
  .nrc-hizmet-detay__points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .nrc-hizmet-detay__intro { padding-block: 3.5rem; }
  .nrc-hizmet-detay__points { padding-block: 3rem; }
  .nrc-hizmet-detay__process { padding-block: 3rem; }
  .nrc-hizmet-detay__cta { padding-block: 3.5rem; }

  .nrc-hizmet-detay__process-list {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-auto-columns: auto;
    gap: 1.5rem;
  }

  .nrc-hizmet-detay__process-list::before,
  .nrc-hizmet-detay__process-list::after {
    display: none;
  }

  .nrc-hizmet-detay__process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.125rem;
    text-align: left;
  }

  .nrc-hizmet-detay__step-index { flex-shrink: 0; }
  .nrc-hizmet-detay__step-icon { margin-top: 0; }
  .nrc-hizmet-detay__step-body { max-width: none; margin-inline: 0; }
  .nrc-hizmet-detay__step-text { max-width: none; margin-inline: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .nrc-hizmet-detay__process-list::after { animation: none; transform: scaleX(1); }
}

/* ============================================================
   Mobil responsive düzeltmeleri (responsive denetimi sonrası)
   ============================================================ */

/* Yatay taşma güvenlik ağı — overflow-x: clip sticky'yi bozmaz. */
body {
  overflow-x: clip;
}

/* Mobil header 64px: header-height değişkenini eşitle → .nrc-main offset ve
   var-tabanlı kenar boşlukları otomatik düzelir. Logo 481-640px'te 64px bara
   taşıyordu → küçült. */
@media (max-width: 640px) {
  :root {
    --header-height: 64px;
  }
  .nrc-header__logo-img {
    height: 48px;
  }
  /* Hero offset'ini mobil 64px header ile eşitle (base -88px/88px masaüstü içindir). */
  .nrc-hero {
    margin-top: -64px;
  }
  .nrc-hero__content {
    padding-top: calc(64px + 2rem);
  }
}

/* Dokunma hedefleri ≥44px (WCAG 2.5.5, mobil). */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nrc-header__mobile-sub-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* Hizmet detay süreç listesi: 641-1024px tablet aralığında 4-5 sütun yan yana
   sıkışıp metinler taşıyordu → ≤1024px dikey istif + bağlantı çizgisi gizli. */
@media (max-width: 1024px) {
  .nrc-hizmet-detay__process-list {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-auto-columns: auto;
    gap: 1.5rem;
    max-width: 540px;
  }
  .nrc-hizmet-detay__process-list::before,
  .nrc-hizmet-detay__process-list::after {
    display: none;
  }
  .nrc-hizmet-detay__process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.125rem;
    text-align: left;
  }
  .nrc-hizmet-detay__step-index {
    flex-shrink: 0;
  }
  .nrc-hizmet-detay__step-icon {
    margin-top: 0;
  }
  .nrc-hizmet-detay__step-body,
  .nrc-hizmet-detay__step-text {
    max-width: none;
    margin-inline: 0;
  }
  .nrc-hizmet-detay__points-grid {
    gap: 2rem;
  }
}

/* İletişim: uzun adres/URL kelime kırılması (flex item taşmasını da keser). */
.nrc-iletisim__detail-value {
  overflow-wrap: anywhere;
  min-width: 0;
}

/* Dar telefon (≤480px) ince ayarları. */
@media (max-width: 480px) {
  .nrc-iletisim__map {
    height: 300px;
  }
  .nrc-iletisim__cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .nrc-iletisim__wa-btn,
  .nrc-iletisim__phone-link {
    justify-content: center;
  }
  .nrc-contact__actions {
    flex-direction: column;
  }
  .nrc-contact__actions .btn {
    width: 100%;
  }
  .nrc-services__grid {
    grid-template-columns: 1fr;
  }
  .nrc-ba {
    aspect-ratio: 3 / 2;
  }
  .nrc-iletisim__hero,
  .nrc-legal__hero,
  .nrc-page__hero,
  .nrc-about__hero {
    padding-block: 3.25rem 2.75rem;
  }
}

/* Çok dar telefon: galeri thumbnail'ları tek sütun. */
@media (max-width: 380px) {
  .nrc-gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* Blog içeriğinde gömülü geniş öğeler + uzun başlıklar taşmasın. */
.nrc-blog-single__content table {
  display: block;
  overflow-x: auto;
}
.nrc-blog-single__content iframe,
.nrc-blog-single__content img {
  max-width: 100%;
}
.nrc-case__title,
.nrc-blog-single__title {
  overflow-wrap: anywhere;
}
