/* ========== THEME (html-tasarimlar/index.html) ========== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


:root {

  --bg: #ffffff;
  --bg2: #f8f9fb;
  --bg3: #f0f1f5;
  --white: #0f1729;
  --accent: #4338ca;
  --accent2: #3730a3;
  --text: #334155;
  --text2: #64748b;
  --text3: #94a3b8;
  --border: #e2e8f0;
  --r: 14px;
  --tr: .35s cubic-bezier(.16, 1, .3, 1);

}


html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  cursor: none;
}

a,
button,
input,
select,
textarea {
  cursor: none;
}


.cur-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}

.cur-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: .5;
  transition: width .3s, height .3s, opacity .3s, border-color .3s;
}


.cur-dot.hover {
  width: 10px;
  height: 10px;
  background: var(--accent);
}

.cur-ring.hover {
  width: 50px;
  height: 50px;
  opacity: .3;
  border-color: var(--accent);
}

::selection {
  background: var(--accent);
  color: #fff;
}

::-moz-selection {
  background: var(--accent);
  color: #fff;
}

/* Scrollbar — brand renkli */
html { scrollbar-color: var(--accent) var(--bg, #0b0f17); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg, #0b0f17); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; border: 2px solid var(--bg, #0b0f17); }
::-webkit-scrollbar-thumb:hover { background: var(--accent2, #6366f1); }

/* === Empty state (kategoride içerik yoksa) === */
.empty-state {
  text-align: center;
  padding: 80px 24px 100px;
  max-width: 520px;
  margin: 0 auto;
}
.empty-state > i {
  font-size: 72px;
  color: var(--accent);
  opacity: .45;
  filter: drop-shadow(0 6px 16px color-mix(in srgb, var(--accent) 30%, transparent));
  margin-bottom: 24px;
  display: inline-block;
}
.empty-state h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white, #fff);
  margin: 0 0 12px;
}
.empty-state p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text2, #94a3b8);
  margin: 0 0 28px;
}
.empty-state .btn-acc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* === CSS Image Placeholder — görsel yoksa icon + pattern === */
.srv-img:not(:has(img)),
.blog-sm:not(:has(img)),
.product-gallery-main:not(:has(img)):not(:has(.product-gallery-placeholder)),
.mega-card-img:not(:has(img)),
.srv-img--placeholder,
.product-gallery-placeholder,
.img-fallback {
  position: relative;
  min-height: 180px;
  background:
    radial-gradient(circle at 25% 25%, color-mix(in srgb, var(--accent) 16%, transparent) 0%, transparent 45%),
    radial-gradient(circle at 75% 75%, color-mix(in srgb, var(--accent) 10%, transparent) 0%, transparent 50%),
    linear-gradient(135deg, var(--bg2, #0f1729) 0%, var(--bg, #0b0f17) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.srv-img:not(:has(img))::before,
.blog-sm:not(:has(img))::before,
.product-gallery-main:not(:has(img)):not(:has(.product-gallery-placeholder))::before,
.mega-card-img:not(:has(img))::before,
.srv-img--placeholder::before,
.product-gallery-placeholder::before,
.img-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--accent) 12%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--accent) 12%, transparent) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .5;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  pointer-events: none;
}

.srv-img:not(:has(img))::after,
.blog-sm:not(:has(img))::after,
.product-gallery-main:not(:has(img)):not(:has(.product-gallery-placeholder))::after,
.mega-card-img:not(:has(img))::after,
.srv-img--placeholder::after,
.product-gallery-placeholder::after,
.img-fallback::after {
  content: "\f03e"; /* fa-image */
  font-family: 'Font Awesome 7 Free', 'Font Awesome 6 Free', 'FontAwesome';
  font-weight: 900;
  font-size: 3rem;
  color: var(--accent);
  opacity: .55;
  filter: drop-shadow(0 4px 12px color-mix(in srgb, var(--accent) 30%, transparent));
  position: relative;
  z-index: 1;
  display: inline-block;
  line-height: 1;
}

/* .srv-img--placeholder / .product-gallery-placeholder içindeki <i> varsa onu gizle (CSS ikon ile değiştirdik) */
.srv-img--placeholder > i,
.product-gallery-placeholder > i { display: none; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Sora', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.c {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}


/* ===== TOPBAR ===== */
.topbar {

  background: var(--white);
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  padding: 9px 0;

}

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

.topbar-left {
  display: flex;
  gap: 20px;
}

.topbar-left a {
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .3s;
}

.topbar-left a:hover {
  color: var(--accent);
}

.topbar-left i {
  font-size: 11px;
  color: var(--accent);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-right a {
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
  transition: color .3s;
}

.topbar-right a:hover {
  color: #fff;
}


/* ===== HEADER ===== */
.hdr {

  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: var(--bg);
  transition: all .4s ease;
  border-bottom: 1px solid transparent;

}

.hdr.scrolled {
  background: rgba(255, 255, 255, .98);
  padding: 12px 0;
  border-bottom-color: var(--border);
}

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

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}

.logo img {
  max-height: 44px;
  max-width: 180px;
  width: auto;
  display: block;
}

.logo i {
  color: var(--accent);
  font-size: 8px;
  vertical-align: super;
  margin-left: 2px;
}


.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav>a,
.nav-dd-btn {
  font-size: 13px;
  font-weight: 500;
  color: var(--text2);
  transition: color .3s;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 4px 0;
}

.nav>a:hover,
.nav-dd-btn:hover {
  color: var(--white);
}


/* Nav underline animation */
.nav>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width .3s ease;
}

.nav>a:hover::after {
  width: 100%;
}


.nav-dd {
  position: relative;
}

.nav-dd-btn i {
  font-size: 9px;
  transition: transform .3s;
}

.nav-dd:hover .nav-dd-btn i {
  transform: rotate(180deg);
}

.nav-dd:hover .nav-dd-btn {
  color: var(--white);
}


/* Standard dropdown */
.nav-dd-menu {
  position: absolute;
  top: 100%;
  left: -10px;
  min-width: 180px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  margin-top: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .3s ease;
}

.nav-dd-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  width: 100%;
  height: 14px;
}

.nav-dd:hover .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dd-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text2);
  transition: all .3s;
}

.nav-dd-menu a:hover {
  background: var(--bg2);
  color: var(--white);
}


/* Mega dropdown */
.nav-mega {
  position: static;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 100;
  pointer-events: none;
}

.nav-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mega.open .nav-dd-btn i {
  transform: rotate(180deg);
}

.nav-mega.open .nav-dd-btn {
  color: var(--white);
}


.mega-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .25);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
  pointer-events: none;
}

.mega-backdrop.on {
  opacity: 1;
  visibility: visible;
}


.mega-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}


/* Left categories */
.mega-cats {
  width: 240px;
  min-width: 240px;
  border-right: 1px solid var(--border);
  padding: 24px 0;
}

.mega-cat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: all .3s ease;
}

.mega-cat i {
  font-size: 15px;
  width: 20px;
  text-align: center;
  color: var(--text3);
  transition: color .3s;
}

.mega-cat:hover {
  color: var(--white);
  background: var(--bg2);
}

.mega-cat.active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: var(--bg2);
}

.mega-cat.active i {
  color: var(--accent);
}

.mega-cat .chevron {
  margin-left: auto;
  font-size: 10px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all .3s;
}

.mega-cat.active .chevron,
.mega-cat:hover .chevron {
  opacity: 1;
  transform: translateX(0);
}


/* Right panels */
.mega-panels {
  flex: 1;
  position: relative;
}

.mega-panel {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
}

.mega-panel.active {
  opacity: 1;
  visibility: visible;
}


.mega-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  transition: all .4s ease;
  display: block;
}

.mega-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.mega-card-img {
  aspect-ratio: 4 / 3;
  width: 100%;
  display: block;
  overflow: hidden;
}

.mega-card-img img,
.mega-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.mega-card:hover .mega-card-img img,
.mega-card:hover > img {
  transform: scale(1.06);
}

.mega-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 41, .85), rgba(15, 23, 41, .15));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  transition: background .4s;
}

.mega-card:hover .mega-card-overlay {
  background: linear-gradient(to top, rgba(67, 56, 202, .4), rgba(15, 23, 41, .1));
}

.mega-card-overlay h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.mega-card-overlay span {
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
}


.hdr-r {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hdr-cta {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 10px 22px;
  border-radius: 50px;
  transition: all .3s;
}

.hdr-cta:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
}


/* Mobile nav */
.m-over {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 199;
  opacity: 0;
  transition: opacity .3s;
}

.m-over.on {
  opacity: 1;
}

.m-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--bg);
  z-index: 200;
  padding: 28px;
  transition: right .4s ease;
  overflow-y: auto;
  border-left: 1px solid var(--border);
}

.m-nav.on {
  right: 0;
}

.m-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
}

.m-links {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

.m-links a {
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.m-dd-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: inherit;
  cursor: pointer;
  transition: color .3s;
}

.m-dd-btn:hover {
  color: var(--accent);
}

.m-dd-btn i {
  font-size: 11px;
  color: var(--text3);
  transition: transform .4s ease, color .4s;
}

.m-dd-btn.open i {
  transform: rotate(180deg);
  color: var(--accent);
}

.m-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  padding-left: 16px;
}

.m-sub a {
  font-size: 14px;
  color: var(--text2);
  padding: 10px 0;
  border-bottom: 1px solid rgba(226, 232, 240, .5);
  display: flex;
  align-items: center;
  gap: 8px;
}

.m-sub a:last-child {
  border-bottom: none;
}


.m-contact {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--bg);
}

.m-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text2);
}

.m-contact a i {
  color: var(--accent);
  width: 16px;
  font-size: 13px;
}

.m-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.m-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text3);
  font-size: 14px;
  transition: all .3s;
}

.m-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== HERO ===== */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat fixed;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(67, 56, 202, .1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: heroPulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes heroPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: .4;
  }

}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(4px);
}

.hero-tag i {
  font-size: 10px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 24px;
}

.hero h1 .hero-highlight {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, .85);
  max-width: 550px;
  margin: 0 auto 36px;
  line-height: 1.7;
}


.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-acc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all .3s;
}

.btn-acc:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .4);
  transition: all .3s;
}

.btn-line:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, .05);
}


.hero-nums {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
}

.hero-num strong {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-num span {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  font-weight: 500;
}


/* ===== TICKER ===== */
.ticker {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 20s linear infinite;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

}

.ticker-item {
  flex-shrink: 0;
  padding: 0 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 24px;
}

.ticker-item::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .3;
}


/* ===== ABOUT (Bento Grid) ===== */
.about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}


/* Decorative circles */
.about-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.about-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(67, 56, 202, .08);
  top: -60px;
  left: -80px;
  animation: aboutOrbit1 18s linear infinite;
}

.about-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  background: rgba(67, 56, 202, .04);
  bottom: 40px;
  right: 5%;
  animation: aboutOrbit2 22s linear infinite;
}

.about-circle:nth-child(3) {
  width: 120px;
  height: 120px;
  border: 1px dashed rgba(16, 185, 129, .1);
  top: 30%;
  right: 15%;
  animation: aboutOrbit3 15s linear infinite;
}

.about-circle:nth-child(4) {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, .05);
  bottom: 20%;
  left: 35%;
  animation: aboutOrbit4 20s linear infinite;
}

.about-circle:nth-child(5) {
  width: 160px;
  height: 160px;
  border: 1px solid rgba(67, 56, 202, .05);
  top: 50%;
  left: 10%;
  animation: aboutOrbit5 25s linear infinite;
}


@keyframes aboutOrbit1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(40px, 30px) rotate(90deg);
  }

  50% {
    transform: translate(20px, 60px) rotate(180deg);
  }

  75% {
    transform: translate(-20px, 30px) rotate(270deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }

}

@keyframes aboutOrbit2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-50px, -30px) scale(1.1);
  }

  66% {
    transform: translate(30px, -50px) scale(.9);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }

}

@keyframes aboutOrbit3 {
  0% {
    transform: translate(0, 0) rotate(0);
  }

  50% {
    transform: translate(-40px, 40px) rotate(180deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }

}

@keyframes aboutOrbit4 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(30px, -20px);
  }

  50% {
    transform: translate(60px, 10px);
  }

  75% {
    transform: translate(20px, 30px);
  }

  100% {
    transform: translate(0, 0);
  }

}

@keyframes aboutOrbit5 {
  0% {
    transform: translate(0, 0) rotate(0);
  }

  33% {
    transform: translate(20px, -40px) rotate(120deg);
  }

  66% {
    transform: translate(-30px, 20px) rotate(240deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }

}


.about-inner {
  display: flex;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}


.about-text {
  flex: 1;
  min-width: 0;
}

.about-text .sec-label {
  position: relative;
  padding-left: 0;
}

.about-text h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.about-text>p {
  font-size: 16px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
}


.about-images {
  flex: 1.2;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 460px;
}

.about-img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .4s ease;
  position: relative;
}

.about-img:hover {
  border-color: var(--accent);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

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


.about-img:nth-child(1) {
  grid-row: 1/3;
}

.about-img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.about-img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}


/* Subtle float */
.about-img:nth-child(1) {
  animation: aboutFloat1 7s ease-in-out infinite;
}

.about-img:nth-child(2) {
  animation: aboutFloat2 6s ease-in-out infinite;
}

.about-img:nth-child(3) {
  animation: aboutFloat3 8s ease-in-out infinite;
}

@keyframes aboutFloat1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

}

@keyframes aboutFloat2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }

}

@keyframes aboutFloat3 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

}



/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.products {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.products-more {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.products-more .btn-line {
  color: var(--white);
  border-color: var(--border);
}

.products-more .btn-line:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, .04);
}

.sec-head {
  margin-bottom: 60px;
}

.sec-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
  display: block;
}

.sec-head h2 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.1;
}


.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}


.srv {
  cursor: pointer;
}


.srv-card-top {
  position: relative;
  width: 100%;
  height: 300px;
  background: var(--bg);
  border-radius: 20px;
  border-bottom-right-radius: 0;
  overflow: hidden;
}

.srv-card-top .srv-img {
  position: absolute;
  inset: 0;
}

.srv-card-top .srv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.srv:hover .srv-img img {
  transform: scale(1.06);
}


.srv-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .12) 50%, transparent 60%);
  z-index: 1;
  pointer-events: none;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  transform: translateX(-100%);
  animation: srvShine 6s ease-in-out infinite;
  opacity: 0;
}

.srv:nth-child(1) .srv-card-top::before {
  animation-delay: 0s;
}

.srv:nth-child(2) .srv-card-top::before {
  animation-delay: .4s;
}

.srv:nth-child(3) .srv-card-top::before {
  animation-delay: .8s;
}

.srv:nth-child(4) .srv-card-top::before {
  animation-delay: 1.2s;
}

.srv:nth-child(5) .srv-card-top::before {
  animation-delay: 1.6s;
}

.srv:nth-child(6) .srv-card-top::before {
  animation-delay: 2s;
}

.srv:nth-child(7) .srv-card-top::before {
  animation-delay: 2.4s;
}

.srv:nth-child(8) .srv-card-top::before {
  animation-delay: 2.8s;
}

@keyframes srvShine {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translateX(100%);
    opacity: 1;
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }

}


/* Corner icon cutout */
.srv-icon-wrap {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 80px;
  height: 80px;
  background: var(--bg);
  border-top-left-radius: 50%;
}

.srv-icon-wrap::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: -20px;
  width: 20px;
  height: 20px;
  background: transparent;
  border-bottom-right-radius: 20px;
  box-shadow: 5px 5px 0 5px var(--bg);
}

.srv-icon-wrap::after {
  content: '';
  position: absolute;
  top: -20px;
  right: 6px;
  width: 20px;
  height: 20px;
  background: transparent;
  border-bottom-right-radius: 20px;
  box-shadow: 5px 5px 0 5px var(--bg);
}


.srv-icon-btn {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: all .3s;
}

.srv:nth-child(1) .srv-icon-btn {
  background: var(--accent);
}

.srv:nth-child(2) .srv-icon-btn {
  background: #10b981;
}

.srv:nth-child(3) .srv-icon-btn {
  background: #f59e0b;
}

.srv:nth-child(4) .srv-icon-btn {
  background: #ef4444;
}

.srv:nth-child(5) .srv-icon-btn {
  background: #8b5cf6;
}

.srv:nth-child(6) .srv-icon-btn {
  background: #06b6d4;
}

.srv:nth-child(7) .srv-icon-btn {
  background: #ec4899;
}

.srv:nth-child(8) .srv-icon-btn {
  background: #14b8a6;
}

.srv:hover .srv-icon-btn {
  transform: scale(1.12);
}


.srv-body {
  padding: 18px 10px;
}

.srv-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 6px;
}

.srv-body p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 14px;
}



/* ===== WHY US (Connected Nodes) ===== */
.why {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.why-top {
  text-align: center;
  margin-bottom: 80px;
}

.why-top h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.why-top p {
  font-size: 16px;
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto;
}


/* Row layout */
.why-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}


.why-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  overflow: visible;
  padding: 0 10px;
}


/* Dotted line between balls */
.why-node:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  border-top: 2px dotted var(--border);
  z-index: 0;
}


/* Wave color on balls */
.why-ball {
  transition: all .5s ease;
}

.why-node.lit .why-ball {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.1);
}

.why-node.lit h4 {
  color: var(--accent);
}


/* Line highlight */
.why-node:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: var(--accent);
  z-index: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.why-node.lit-line::before {
  transform: scaleX(1);
}

/* Geri sarma: origin solda kalsın; scale 1→0 çizgiyi sağdan sola içeri çeker (sağ uç sola yaklaşır) */
.why-node.lit-line.lit-line-rev::before {
  transform: scaleX(0);
  transform-origin: left;
}


.why-ball {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 16px;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  z-index: 2;
  cursor: default;
}


/* Pulse ring */
.why-ball::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0;
  transform: scale(.8);
  transition: all .5s ease;
}

.why-node:hover .why-ball::before {
  opacity: .3;
  transform: scale(1);
  animation: nodePulse 2s ease-out infinite;
}

@keyframes nodePulse {
  0% {
    transform: scale(1);
    opacity: .3;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }

}


.why-node:hover .why-ball {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.12);
}


.why-node h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  transition: color .3s;
}

.why-node:hover h4 {
  color: var(--accent);
}

.why-node p {
  font-size: 12px;
  color: var(--text2);
  line-height: 1.5;
}



/* ===== REFERENCES ORBIT ===== */
.refs {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.refs-wrap {
  display: flex;
  align-items: stretch;
  gap: 50px;
  min-height: auto;
  position: relative;
}


/* Marka logoları — dikey kaydırmalı; kutu yüksekliği en fazla 350px */
.refs-brands {
  display: flex;
  flex-direction: column;
  flex: 0 1 42%;
  width: 100%;
  max-width: 480px;
  min-width: 260px;
  min-height: 0;
  align-self: flex-start;
}

.refs-brands-viewport {
  flex: 0 0 auto;
  width: 100%;
  height: 350px;
  max-height: 350px;
  min-height: 200px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg2);
}

.refs-brands-track {
  transition: transform .65s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

@media(prefers-reduced-motion:reduce) {
  .refs-brands-track {
    transition: none !important;
  }
}

.refs-brand-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 24px 20px;
  box-sizing: border-box;
  gap: 12px;
}

.refs-brand-slide img {
  flex: 1;
  min-height: 0;
  width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .88;
  transition: filter .35s ease, opacity .35s ease;
}

.refs-brand-name {
  flex-shrink: 0;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: .02em;
  text-align: center;
}

.refs-brands:hover .refs-brand-slide img {
  filter: grayscale(0%);
  opacity: 1;
}


/* FAQ yanında marka alanı */
.refs-faq {
  flex: 1;
  min-width: 0;
}

.refs-faq h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -.5px;
}


.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .3s;
}

.faq-item.open {
  border-color: var(--accent);
}


.faq-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  gap: 12px;
  transition: background .3s;
}

.faq-head:hover {
  background: var(--bg2);
}

.faq-head h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

.faq-chevron {
  font-size: 12px;
  color: var(--text3);
  transition: transform .4s ease, color .4s;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}


.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-body-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
}


/* ===== BLOG ===== */
.blog {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.blog-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.blog-row {
  display: flex;
  gap: 16px;
}

.blog-big {
  grid-row: 1/3;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.blog-big:hover img {
  transform: scale(1.05);
}

.blog-big-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(15, 23, 41, .9), transparent);
  z-index: 1;
}

.blog-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.blog-big-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.blog-big-content p {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}


.blog-sm {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  transition: all .4s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-sm:hover {
  border-color: var(--accent);
}

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

.blog-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.blog-sm:hover img {
  transform: scale(1.05);
}

.blog-sm-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(15, 23, 41, .85), transparent);
  z-index: 1;
}

.blog-sm-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.4;
}

.blog-sm-body p {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.blog-sm-body .blog-tag {
  margin-bottom: 8px;
}


/* Blog sequential dim */
.blog-big img,
.blog-sm img {
  filter: brightness(.5);
  transition: filter 1s ease, transform .6s ease;
}

.blog-big.lit img,
.blog-sm.lit img {
  filter: brightness(1);
}


/* ===== CTA ===== */
.cta {
  padding: 80px 0;
}

.cta-strip {
  display: flex;
  gap: 16px;
}


.cta-card {
  flex: 1;
  border-radius: 16px;
  padding: 36px 30px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity .4s;
  z-index: 0;
}

.cta-card:hover::before {
  opacity: 1;
}

.cta-card:hover {
  border-color: var(--accent);
}

.cta-card>* {
  position: relative;
  z-index: 1;
}

.cta-card:hover .cta-card-icon,
.cta-card:hover h3,
.cta-card:hover p {
  color: #fff;
}


.cta-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(67, 56, 202, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 18px;
  transition: all .4s;
}

.cta-card:hover .cta-card-icon {
  background: rgba(255, 255, 255, .2);
}


.cta-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  transition: color .4s;
}

.cta-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: 18px;
  transition: color .4s;
}

.cta-card:hover p {
  color: rgba(255, 255, 255, .8);
}


.cta-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  transition: all .4s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-card:hover .cta-card-link {
  color: #fff;
}

.cta-card-link i {
  transition: transform .3s;
}

.cta-card-link:hover i {
  transform: translateX(4px);
}


/* Title shimmer */
.cta-card h3 {
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 40%, var(--accent) 50%, var(--white) 60%, var(--white) 100%);
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ctaShimmer 6s ease-in-out infinite;
}

.cta-card:nth-child(1) h3 {
  animation-delay: 0s;
}

.cta-card:nth-child(2) h3 {
  animation-delay: 2s;
}

.cta-card:nth-child(3) h3 {
  animation-delay: 4s;
}

.cta-card:hover h3 {
  -webkit-text-fill-color: #fff;
  animation: none;
}

@keyframes ctaShimmer {

  0%,
  100% {
    background-position: 100% 0;
  }

  40% {
    background-position: 0% 0;
  }

  60% {
    background-position: 0% 0;
  }

}


/* ===== FOOTER ===== */
.ftr-wave {
  display: block;
  width: 100%;
  height: 40px;
  position: relative;
  top: 1px;
  transform: scaleY(-1);
}

.ftr-wave path {
  fill: #3730a3;
}


.ftr {
  background: #3730a3;
  color: #fff;
  padding: 0;
}

.ftr-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 50px 24px 40px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}


.ftr-brand {
  flex: 1.5;
  min-width: 240px;
}

.ftr-brand .logo {
  color: #fff;
  font-size: 22px;
}

.ftr-brand .logo img {
  filter: brightness(0) invert(1);
}

.ftr-brand .logo i {
  color: #fff;
  opacity: .5;
}

.ftr-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.8;
  margin-top: 12px;
  margin-bottom: 18px;
}

.ftr-socials {
  display: flex;
  gap: 8px;
}

.ftr-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all .3s;
}

.ftr-socials a:hover {
  background: #fff;
  color: #3730a3;
}


.ftr-col {
  flex: 1;
  min-width: 130px;
}

.ftr-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ftr-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  padding: 5px 0;
  transition: all .3s;
}

.ftr-col a:hover {
  color: #fff;
  padding-left: 4px;
}


.ftr-cta {
  flex: 1;
  min-width: 200px;
}

.ftr-cta h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ftr-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 16px;
}

.ftr-cta-btn {
  display: inline-block;
  background: #fff;
  color: #3730a3;
  font-size: 12px;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all .3s;
}

.ftr-cta-btn:hover {
  background: rgba(255, 255, 255, .9);
  transform: translateY(-2px);
}

.ftr-cta-tel {
  display: block;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
}

.ftr-cta-tel i {
  margin-right: 6px;
  opacity: .7;
}


.ftr-btm {
  padding: 16px 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.ftr-btm a {
  color: rgba(255, 255, 255, .6);
  transition: color .3s;
}

.ftr-btm a:hover {
  color: #fff;
}

.ftr-btm-right {
  display: flex;
  gap: 16px;
}


/* WA + Sticky */
.wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 98;
  transition: transform .3s;
}

.wa:hover {
  transform: scale(1.1);
}

.wa::before,
.wa::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waPulse 2.5s ease-out infinite;
}

.wa::after {
  animation-delay: 1.25s;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: .5;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }

}


.sticky-m {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  z-index: 99;
  display: none;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.sticky-m .c {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  padding: 8px 6px 10px;
  position: relative;
  overflow: visible;
}

.sticky-m .sf-item,
.sticky-m .sf-fab {
  color: var(--text);
  font-size: 10.5px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  text-align: center;
  padding: 6px 2px;
  text-decoration: none;
  transition: color .25s ease;
  line-height: 1.1;
}

.sticky-m .sf-item i {
  font-size: 18px;
  color: var(--text2);
  transition: color .25s ease, transform .25s ease;
}

.sticky-m .sf-item:hover,
.sticky-m .sf-item:active,
.sticky-m .sf-fab:hover,
.sticky-m .sf-fab:active {
  color: var(--accent);
}

.sticky-m .sf-item:hover i,
.sticky-m .sf-item:active i {
  color: var(--accent);
  transform: translateY(-2px);
}

.sticky-m .sf-fab {
  position: relative;
  font-weight: 600;
}

.sticky-m .sf-fab-circle {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), color .25s ease, background .25s ease;
}

.sticky-m .sf-fab-label {
  margin-top: 32px;
}

.sticky-m .sf-fab:hover .sf-fab-circle,
.sticky-m .sf-fab:active .sf-fab-circle {
  transform: translateX(-50%) scale(1.08);
  background: var(--accent);
  color: var(--white);
}

.sticky-m .sf-fab--disabled {
  opacity: .5;
  cursor: not-allowed;
}


/* Reveal */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s var(--tr);
}

.rv.on {
  opacity: 1;
  transform: translateY(0);
}

.rv-d1 {
  transition-delay: .1s;
}

.rv-d2 {
  transition-delay: .2s;
}

.rv-d3 {
  transition-delay: .3s;
}


/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {

  .mega-cats {
    width: 180px;
    min-width: 180px;
  }

  .mega-cat {
    font-size: 13px;
    padding: 10px 14px;
  }

  .mega-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 52px;
  }

  .about-head h2,
  .sec-head h2,
  .why-head h2 {
    font-size: 36px;
  }

  .about-inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 34px;
  }

  .about-text>p {
    max-width: 100%;
  }

  .about-images {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }

  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-top h2 {
    font-size: 34px;
  }

  .refs-wrap {
    flex-direction: column;
    gap: 50px;
  }

  .refs-brands {
    max-width: 100%;
    min-width: 0;
  }

  .why-ball {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
    height: auto;
  }

  .blog-big {
    min-height: 320px;
  }

  .blog-sm {
    min-height: 220px;
  }

  .cta-strip {
    flex-direction: column;
  }


}


@media(max-width:768px) {

  html,
  a,
  button,
  input,
  select,
  textarea {
    cursor: auto;
  }

  .cur-dot,
  .cur-ring {
    display: none;
  }

  .topbar {
    display: none;
  }

  .nav,
  .hdr-r .header-tel,
  .hdr-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .m-nav {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 60px 24px;
  }

  .hero h1 {
    font-size: 38px;
    letter-spacing: -1.5px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-nums {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .hero-num strong {
    font-size: 28px;
  }

  .ticker-item {
    padding: 0 20px;
    font-size: 12px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
  }

  .about-img:nth-child(1) {
    grid-row: auto;
    grid-column: auto;
  }

  .about-img:nth-child(2),
  .about-img:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .about-img {
    height: 220px;
  }

  .about-img:nth-child(1),
  .about-img:nth-child(2),
  .about-img:nth-child(3) {
    animation: none;
  }

  .srv-grid {
    grid-template-columns: 1fr;
  }

  .why-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .why-node {
    max-width: 100%;
  }

  .why-node::after,
  .why-node::before {
    display: none !important;
  }

  .refs-brands-viewport {
    height: min(350px, 70vw);
    max-height: 350px;
    min-height: 200px;
  }

  .refs-brand-slide {
    padding: 20px 24px;
  }

  .refs-brand-slide img {
    max-height: 160px;
  }

  .blog-sm {
    min-height: 200px;
  }

  .blog-row {
    flex-direction: column;
  }

  .blog-sm img {
    width: 100%;
    height: 160px;
    min-width: auto;
  }

  .ftr-main {
    flex-direction: column;
    gap: 28px;
  }

  .sticky-m {
    display: block;
  }

  .wa {
    display: none;
  }

  .ftr-btm {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding-bottom: 70px;
  }

  .ftr-btm-right {
    justify-content: flex-start;
  }


}


@media(max-width:480px) {

  .hero h1 {
    font-size: 30px;
  }


}

/* ===== AD BAR ===== */
.ad-bar {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.ad-bar img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
  vertical-align: top;
}

@media(max-width:768px) {
  .ad-bar {
    display: none;
  }
}

/* ===== SNOW TOGGLE ===== */
.snow-toggle {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: all .3s ease;
}

.snow-toggle:hover,
.snow-toggle.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.snow-toggle.active i {
  animation: snowSpin 2s linear infinite;
}

@keyframes snowSpin {
  to {
    transform: rotate(360deg);
  }
}

/* ===== SNOW ===== */
.snow-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99998;
  overflow: hidden;
  display: none;
}

.snow-container.active {
  display: block;
}

.snowflake {
  position: absolute;
  top: -10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  opacity: 0;
  will-change: transform;
  animation: snowDrift linear infinite;
}

@keyframes snowDrift {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) translateX(0);
  }

  10% {
    opacity: 0.9;
  }

  50% {
    transform: translateY(50vh) rotate(180deg) translateX(30px);
  }

  90% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(360deg) translateX(-20px);
  }
}

.snowflake:nth-child(3n) {
  animation-name: snowDrift2;
  background: rgba(200, 210, 255, 0.7);
}

@keyframes snowDrift2 {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg) translateX(0);
  }

  10% {
    opacity: 0.7;
  }

  50% {
    transform: translateY(50vh) rotate(-120deg) translateX(-25px);
  }

  90% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(-300deg) translateX(15px);
  }
}

@media(prefers-reduced-motion:reduce) {
  .snow-container {
    display: none !important;
  }
}

/* ========== INNER PAGES: şirket profili, neden biz, referanslar (html-tasarimlar) ========== */
.pg-hero {
  padding: 80px 0 36px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}

.pg-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 56, 202, .06) 0%, transparent 70%);
  pointer-events: none;
}

.pg-hero--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pg-hero--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  z-index: 0;
}

.pg-hero--bg::after {
  display: none;
}

.pg-hero--bg .c {
  position: relative;
  z-index: 1;
}

.pg-hero--bg h1 {
  color: #fff !important;
}

.pg-hero--bg .breadcrumb a,
.pg-hero--bg .breadcrumb span,
.pg-hero--bg .breadcrumb i {
  color: rgba(255, 255, 255, .7);
}

.pg-hero--bg .breadcrumb a:hover {
  color: #fff;
}

.pg-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 20px;
}

.pg-hero .breadcrumb a {
  color: var(--text3);
}

.pg-hero .breadcrumb a:hover {
  color: var(--accent);
}

.pg-hero .breadcrumb i {
  font-size: 9px;
  color: var(--text3);
}

.pg-hero .breadcrumb span {
  color: var(--accent);
  font-weight: 600;
}

.pg-hero .links {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 12px;
  margin: 0 0 10px;
  list-style: none;
  padding: 0;
}

.pg-hero .links li {
  display: flex;
  align-items: center;
  color: var(--accent);
  font-weight: 600;
}

.pg-hero .links li + li::before {
  content: '\f054';
  font-family: 'Font Awesome 7 Free', 'Font Awesome 6 Free', 'FontAwesome';
  font-weight: 900;
  font-size: 9px;
  color: var(--text3);
  margin: 0 8px;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.pg-hero .links li a {
  color: var(--text3);
  font-weight: 400;
}

.pg-hero .links li a:hover {
  color: var(--accent);
}

.pg-hero h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.pg-hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.pg-hero>div>p {
  font-size: 17px;
  color: var(--text2);
  max-width: 560px;
  line-height: 1.7;
}

/* ===== SINGLE SERVICE (html-tasarimlar/hizmet-detay-1 → single-service.blade.php) ===== */
.sd-intro {
  padding: 96px 0;
}

.sd-intro-grid {
  display: flex;
  gap: 64px;
  align-items: center;
}

.sd-intro-visual {
  flex: 0 0 50%;
  position: relative;
}

.sd-intro-visual img {
  width: 100%;
  border-radius: var(--r);
  display: block;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-10px) rotate(0deg);
  }
}

.sd-intro-badge {
  position: absolute;
  bottom: 24px;
  right: -32px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(67, 56, 202, .35);
  animation: badgeFloat 4s ease-in-out infinite;
  border: 4px solid rgba(255, 255, 255, .2);
}

.sd-intro-badge strong {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.sd-intro-badge span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .85;
}

.sd-intro-text {
  flex: 1;
}

.sd-intro-text h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.sd-intro-text>p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 24px;
}

.sd-intro-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sd-intro-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

.sd-intro-check i {
  color: var(--accent);
  font-size: 12px;
}

.sd-scope {
  padding: 96px 0;
  background: var(--bg2);
}

.sd-scope-head {
  text-align: center;
  margin-bottom: 56px;
}

.sd-scope-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.sd-scope-head p {
  font-size: 15px;
  color: var(--text2);
}

.sd-scope-items {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sd-scope-item {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 40px;
  border-radius: var(--r);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}

.sd-scope-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height .6s cubic-bezier(.16, 1, .3, 1);
  border-radius: 0 2px 2px 0;
}

.sd-scope-item:hover::before {
  height: 100%;
}

.sd-scope-item:hover {
  box-shadow: 0 20px 60px rgba(67, 56, 202, .06);
  transform: translateY(-4px);
}

.sd-scope-item:nth-child(even) {
  flex-direction: row-reverse;
}

.sd-scope-item:nth-child(even)::before {
  left: auto;
  right: 0;
  border-radius: 2px 0 0 2px;
}

.sd-scope-img {
  flex: 0 0 340px;
  border-radius: 12px;
  overflow: hidden;
}

.sd-scope-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.sd-scope-item:hover .sd-scope-img img {
  transform: scale(1.05);
}

.sd-scope-body {
  flex: 1;
}

.sd-scope-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--accent);
  opacity: .12;
  line-height: 1;
  margin-bottom: -8px;
  letter-spacing: -3px;
}

.sd-scope-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.sd-scope-body>p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 18px;
}

.sd-scope-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sd-scope-tag {
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(67, 56, 202, .07);
  color: var(--accent);
}

.sd-process {
  padding: 96px 0;
}

.sd-process-head {
  text-align: center;
  margin-bottom: 56px;
}

.sd-process-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.sd-process-head p {
  font-size: 15px;
  color: var(--text2);
}

.sd-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.sd-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
}

.sd-step-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg2);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 16px;
  color: var(--text3);
  transition: all .4s;
  position: relative;
  z-index: 2;
}

.sd-step:hover .sd-step-dot {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(67, 56, 202, .08);
  box-shadow: 0 0 0 8px rgba(67, 56, 202, .06);
  transform: scale(1.1);
}

.sd-step::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--border);
  z-index: 1;
}

.sd-step:last-child::before {
  display: none;
}

.sd-step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.sd-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.sd-step p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
}

.sd-stats {
  padding: 72px 0;
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.sd-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .03) 0, rgba(255, 255, 255, .03) 1px, transparent 1px, transparent 80px);
}

.sd-stats-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}

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

.sd-stat-num {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.sd-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sd-related {
  padding: 96px 0;
  background: var(--bg2);
}

.sd-related-head {
  text-align: center;
  margin-bottom: 48px;
}

.sd-related-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.sd-related-head p {
  font-size: 15px;
  color: var(--text2);
}

.sd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@keyframes relBorderGlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.sd-rel-card {
  background: var(--bg);
  border-radius: var(--r);
  padding: 32px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), box-shadow .4s ease;
}

.sd-rel-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--r) + 2px);
  background: linear-gradient(90deg, var(--border), var(--border), var(--accent), var(--border), var(--border));
  background-size: 200% 100%;
  z-index: 0;
  transition: all .5s ease;
}

.sd-rel-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: calc(var(--r) - 1px);
  background: var(--bg);
  z-index: 1;
}

.sd-rel-card:hover::before {
  animation: relBorderGlow 1.5s linear infinite;
}

.sd-rel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(67, 56, 202, .1);
}

.sd-rel-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  transition: transform .4s ease;
}

.sd-rel-card:hover .sd-rel-icon {
  transform: scale(1.1) rotate(8deg);
}

.sd-rel-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}

.sd-rel-card p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

.sd-rel-arrow {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 14px;
  transition: gap .3s ease;
}

.sd-rel-card:hover .sd-rel-arrow {
  gap: 10px;
}

@media (max-width: 992px) {
  .sd-intro-grid {
    flex-direction: column;
  }

  .sd-intro-visual {
    flex: none;
    width: 100%;
  }

  .sd-scope-item,
  .sd-scope-item:nth-child(even) {
    flex-direction: column;
  }

  .sd-scope-img {
    flex: none;
    width: 100%;
  }

  .sd-steps {
    flex-wrap: wrap;
    gap: 32px;
  }

  .sd-step {
    flex: 1 1 40%;
    text-align: center;
  }

  .sd-step::before {
    display: none;
  }

  .sd-related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sd-stats-grid {
    gap: 32px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .sd-step {
    flex: 1 1 100%;
  }

  .sd-related-grid {
    grid-template-columns: 1fr;
  }

  .sd-stat-num {
    font-size: 36px;
  }

  .sd-stats-grid {
    gap: 24px;
  }
}

/* ===== HİZMET DETAY (statik + single-service): sol hizalı, renkli başlık + editör ===== */
main.service-detail-layout .pg-hero {
  text-align: left;
}

main.service-detail-layout .pg-hero .c {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

main.service-detail-layout .pg-hero .breadcrumb,
main.service-detail-layout .pg-hero .links {
  justify-content: flex-start;
  width: 100%;
}

main.service-detail-layout .service-detail-title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0;
  color: var(--accent);
  width: 100%;
  max-width: 100%;
  text-align: left;
  box-sizing: border-box;
}

main.service-detail-layout .service-detail-title em {
  color: inherit;
  font-style: normal;
}

.service-detail-page {
  padding: 40px 0 96px;
  background: var(--bg);
  text-align: left;
}

.service-detail-page .c {
  gap: 0;
}

.detail-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
}

.service-detail-section-heading {
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 0.85rem;
  width: 100%;
  text-align: left;
}

.service-detail-editor {
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: left;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text2);
}

.service-detail-editor > *:first-child {
  margin-top: 0 !important;
}

/* — Paragraf — */
.service-detail-editor p {
  margin: 0 0 1.15em;
}

/* — Başlıklar — */
.service-detail-editor h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.8px;
  margin: 2.2em 0 0.75em;
  line-height: 1.25;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}

.service-detail-editor h2:first-child {
  margin-top: 0;
}

.service-detail-editor h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
  margin: 2em 0 0.65em;
  line-height: 1.3;
}

.service-detail-editor h3:first-child {
  margin-top: 0;
}

.service-detail-editor h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin: 1.75em 0 0.5em;
}

/* — Biçimleme — */
.service-detail-editor strong {
  color: var(--text);
  font-weight: 700;
}

.service-detail-editor em {
  font-style: italic;
  color: var(--text);
}

.service-detail-editor u {
  text-underline-offset: 3px;
}

.service-detail-editor s {
  opacity: .55;
}

/* — Linkler — */
.service-detail-editor a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--tr);
}

.service-detail-editor a:hover {
  color: var(--accent2);
}

/* — Listeler — */
.service-detail-editor ul,
.service-detail-editor ol {
  margin: 0 0 1.25em;
  padding-left: 0;
  list-style: none;
}

.service-detail-editor ul li,
.service-detail-editor ol li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.55em;
  color: var(--text2);
}

.service-detail-editor ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.service-detail-editor ol {
  counter-reset: sde-ol;
}

.service-detail-editor ol li {
  counter-increment: sde-ol;
}

.service-detail-editor ol li::before {
  content: counter(sde-ol) '.';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.85;
}

/* — Alıntı — */
.service-detail-editor blockquote {
  margin: 1.75em 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: var(--bg2);
  border-radius: 0 var(--r) var(--r) 0;
}

.service-detail-editor blockquote p {
  margin: 0;
  font-style: italic;
  font-size: 17px;
  color: var(--text);
}

/* — Yatay çizgi — */
.service-detail-editor hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5em 0;
}

/* — Resim — */
.service-detail-editor img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--r);
  margin: 1.75em 0;
}

.service-detail-editor figure {
  margin: 1.75em 0;
}

.service-detail-editor figure img {
  margin: 0;
  width: 100%;
}

.service-detail-editor figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text3);
  text-align: center;
  font-style: italic;
}

/* — YouTube / iframe — */
.service-detail-editor .video-embed,
.service-detail-editor iframe[src*="youtube"] {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: var(--r);
  margin: 1.75em 0;
}

/* CKEditor'ın oembed/iframe wrapper'ı */
.service-detail-editor .ck-media__wrapper,
.service-detail-editor figure.media {
  margin: 1.75em 0;
  border-radius: var(--r);
  overflow: hidden;
  width: 100%;
  max-width: 720px;
  height: 380px;
}

.service-detail-editor figure.media > div {
  width: 100%;
  height: 100%;
}

.service-detail-editor figure.media iframe,
.service-detail-editor .ck-media__wrapper iframe {
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

/* — Tablo — */
.service-detail-editor table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75em 0;
  font-size: 15px;
  border-radius: var(--r);
  overflow: hidden;
  display: table;
}

.service-detail-editor th {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.service-detail-editor td {
  padding: 11px 16px;
  color: var(--text2);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.service-detail-editor tr:last-child td {
  border-bottom: none;
}

.service-detail-editor tr:nth-child(even) td {
  background: var(--bg2);
}

.service-detail-editor tr:hover td {
  background: var(--bg3);
}

/* — Kod — */
.service-detail-editor code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  background: var(--bg3);
  color: var(--accent);
  padding: 2px 7px;
  border-radius: 5px;
  border: 1px solid var(--border);
}

.service-detail-editor pre {
  background: #0f1729;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
  margin: 1.75em 0;
  overflow-x: auto;
}

.service-detail-editor pre code {
  background: none;
  border: none;
  padding: 0;
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.7;
}

/* — Tablo responsive wrapper — */
.service-detail-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.75em 0;
  border-radius: var(--r);
  border: 1px solid var(--border);
}

.service-detail-table-wrap table {
  margin: 0;
  min-width: 480px;
}

/* — Responsive — */
@media (max-width: 768px) {
  .service-detail-editor h2 {
    font-size: 22px;
  }

  .service-detail-editor h3 {
    font-size: 18px;
  }

  .service-detail-editor figure.media,
  .service-detail-editor .ck-media__wrapper {
    height: 260px;
    max-width: 100%;
  }

  .service-detail-editor table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }

  .service-detail-editor figure.media iframe,
  .service-detail-editor iframe[src*="youtube"] {
    border-radius: 8px;
  }
}

/* ===== DETAIL SIDEBAR FORM ===== */
.detail-layout > article,
.detail-layout > .service-detail-editor {
  flex: 1;
  min-width: 0;
}

.detail-sidebar {
  width: 340px;
  min-width: 340px;
  flex-shrink: 0;
  align-self: flex-start;
  position: sticky;
  top: 90px;
}

.detail-sidebar-sticky {
  /* sticky parent .detail-sidebar üzerinde */
}

.detail-sidebar-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 28px 24px;
}

.dsf-head {
  margin-bottom: 22px;
}

.dsf-head h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
  margin-bottom: 6px;
}

.dsf-head p {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.6;
  margin: 0;
}

.dsf-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dsf-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dsf-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

.dsf-field label span {
  color: var(--accent);
}

.dsf-field input,
.dsf-field textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font-family: inherit;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}

.dsf-field input::placeholder,
.dsf-field textarea::placeholder {
  color: var(--text3);
}

.dsf-field input:focus,
.dsf-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(67, 56, 202, .06);
}

.dsf-field textarea {
  resize: vertical;
  min-height: 100px;
}

.dsf-form .form-captcha {
  padding: 4px 0;
}


.dsf-form .form-submit-row {
  display: flex;
  justify-content: flex-end;
}

.dsf-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 28px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.dsf-submit:hover {
  background: var(--accent2);
  transform: translateY(-2px);
}

.dsf-submit i {
  transition: transform .3s;
}

.dsf-submit:hover i {
  transform: translateX(3px);
}

/* Blog sidebar override — eski widget yerine form */
main.blog-single .bd-sidebar {
  width: 340px;
  min-width: 340px;
}

/* Responsive */
@media (max-width: 1024px) {
  .detail-sidebar {
    width: 300px;
    min-width: 300px;
  }

  main.blog-single .bd-sidebar {
    width: 300px;
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .detail-layout {
    flex-direction: column;
    gap: 40px;
  }

  .detail-sidebar {
    width: 100%;
    min-width: 100%;
    position: static;
    align-self: auto;
  }
}

/* ===== SP STORY (Magazine Layout) ===== */
.sp-story {
  padding: 112px 0;
  overflow: hidden;
}

.sp-story-grid {
  display: flex;
  gap: 72px;
  align-items: center;
}

.sp-story-visual {
  flex: 0 0 50%;
  position: relative;
}

.sp-story-main-img {
  border-radius: 20px 4px 20px 4px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .1);
}

.sp-story-main-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.sp-story-main-img:hover img {
  transform: scale(1.05);
}

.sp-story-float {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 180px;
}

.sp-story-float-item {
  text-align: center;
}

.sp-story-float-item strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.sp-story-float-item span {
  font-size: 11px;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.sp-story-float-divider {
  height: 1px;
  background: var(--border);
}

.sp-story-text {
  flex: 1;
}

.sp-story-text .sec-label {
  margin-bottom: 12px;
}

.sp-story-text h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.sp-story-text h2 em {
  font-style: normal;
  color: var(--accent);
}

.sp-story-text .lead {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 12px;
}

.sp-story-text>p {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ===== SP VISION/MISSION (Glassmorphism) ===== */
.sp-philosophy {
  padding: 96px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.sp-philosophy::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 56, 202, .04) 0%, transparent 60%);
  pointer-events: none;
}

.sp-phil-head {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.sp-phil-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.sp-phil-head p {
  font-size: 15px;
  color: rgba(255, 255, 255, .45);
}

.sp-phil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.sp-phil-card {
  flex: 1;
  padding: 40px 32px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}

.sp-phil-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.sp-phil-card:hover::before {
  opacity: 1;
}

.sp-phil-card:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-8px);
  border-color: rgba(67, 56, 202, .3);
}

.sp-phil-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 64px;
  font-weight: 900;
  color: rgba(255, 255, 255, .04);
  line-height: 1;
}

.sp-phil-card:hover .sp-phil-num {
  color: rgba(67, 56, 202, .15);
  transition: color .5s;
}

.sp-phil-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(67, 56, 202, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 18px;
  transition: all .4s;
}

.sp-phil-card:hover .sp-phil-icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(67, 56, 202, .3);
}

.sp-phil-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.sp-phil-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  margin: 0;
}

/* ===== SP TEAM ===== */
.sp-team {
  padding: 96px 0;
  background: var(--bg2);
}

.sp-team-head {
  text-align: center;
  margin-bottom: 56px;
}

.sp-team-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.sp-team-head p {
  font-size: 15px;
  color: var(--text2);
}

.sp-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.sp-team-card {
  text-align: center;
  transition: all var(--tr);
}

.sp-team-card:hover {
  transform: translateY(-6px);
}

.sp-team-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px 50% 50% 50%;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
}

.sp-team-card:nth-child(2) .sp-team-img {
  border-radius: 50% 50% 50% 4px;
}

.sp-team-card:nth-child(3) .sp-team-img {
  border-radius: 50% 4px 50% 50%;
}

.sp-team-card:nth-child(4) .sp-team-img {
  border-radius: 50% 50% 4px 50%;
}

.sp-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.sp-team-card:hover .sp-team-img img {
  transform: scale(1.06);
}

.sp-team-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(67, 56, 202, .4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}

.sp-team-card:hover .sp-team-img::after {
  opacity: 1;
}

.sp-team-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.sp-team-card span {
  font-size: 12px;
  color: var(--text2);
}

.sp-team-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.sp-team-socials a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text3);
  transition: all .25s;
}

.sp-team-socials a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(67, 56, 202, .06);
}

/* ===== SP RESPONSIVE ===== */
@media(max-width:992px) {
  .sp-story-grid {
    flex-direction: column;
    gap: 48px;
  }

  .sp-story-visual {
    flex: none;
    width: 100%;
  }

  .sp-story-float {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    gap: 0;
    margin-top: 16px;
    border-radius: 12px;
  }

  .sp-story-float .sp-story-float-item {
    flex: 1;
    padding: 16px 12px;
  }

  .sp-story-float .sp-story-float-divider {
    width: 1px;
    height: auto;
    align-self: stretch;
  }

  .sp-phil-grid {
    grid-template-columns: 1fr;
  }

  .sp-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sp-counter-row {
    gap: 32px;
  }
}

@media(max-width:600px) {
  .pg-hero h1 {
    font-size: 30px;
  }

  .sp-team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sp-counter-item strong {
    font-size: 32px;
  }
}


.nb-manifesto {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.nb-manifesto-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  max-width: 1320px;
  margin: 0 auto;
}

.nb-manifesto-copy {
  text-align: left;
  max-width: 640px;
}

.nb-manifesto-copy h2 {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.nb-manifesto-copy h2 em {
  font-style: normal;
  color: var(--accent);
}

.nb-manifesto-copy p {
  font-size: 18px;
  color: var(--text2);
  line-height: 1.8;
  margin: 0;
}

.nb-manifesto-watermark {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  opacity: .18;
  user-select: none;
  pointer-events: none;
}

.nb-manifesto-watermark-line {
  display: block;
  font-size: clamp(44px, 7vw, 96px);
  letter-spacing: .02em;
  white-space: nowrap;
}

/* ===== NB PILLARS (3D Tilt Cards) ===== */
.nb-pillars {
  padding: 96px 0;
  background: var(--bg2);
}

.nb-pillars-head {
  margin-bottom: 56px;
}

.nb-pillars-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.nb-pillars-head p {
  font-size: 15px;
  color: var(--text2);
}

.nb-pillar-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.nb-pillar {
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  height: 400px;
  cursor: default;
  transform-style: preserve-3d;
  perspective: 800px;
}

.nb-pillar-inner {
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), box-shadow .5s ease;
  will-change: transform;
}

.nb-pillar:hover .nb-pillar-inner {
  transform: rotateY(-5deg) rotateX(3deg) scale(1.03);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, .15);
}

.nb-pillar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .5s;
}

.nb-pillar:hover img {
  transform: scale(1.1);
  filter: brightness(.7);
}

.nb-pillar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 41, .95) 0%, rgba(15, 23, 41, .1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background .5s;
}

.nb-pillar:hover .nb-pillar-overlay {
  background: linear-gradient(to top, rgba(67, 56, 202, .92) 0%, rgba(67, 56, 202, .3) 50%, transparent 100%);
}

.nb-pillar-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  opacity: .08;
  line-height: 1;
  transition: all .5s;
}

.nb-pillar:hover .nb-pillar-num {
  opacity: .25;
  transform: translateY(-4px);
}

.nb-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
  transition: all .4s;
  border: 1px solid rgba(255, 255, 255, .1);
}

.nb-pillar:hover .nb-pillar-icon {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .25);
  transform: translateY(-4px);
}

.nb-pillar h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  transition: margin .4s;
}

.nb-pillar:hover h4 {
  margin-bottom: 10px;
}

.nb-pillar-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.16, 1, .3, 1), opacity .4s .1s;
}

.nb-pillar:hover .nb-pillar-desc {
  max-height: 80px;
  opacity: 1;
}

.nb-pillar-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, .5));
  transition: width .6s cubic-bezier(.16, 1, .3, 1);
}

.nb-pillar:hover .nb-pillar-line {
  width: 100%;
}

/* ===== NB COMPARE (Before/After Split) ===== */
.nb-compare {
  padding: 96px 0;
  background: var(--bg3);
}

.nb-compare-head {
  text-align: center;
  margin-bottom: 56px;
}

.nb-compare-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.nb-compare-head p {
  font-size: 15px;
  color: var(--text2);
}

.nb-compare-grid {
  display: flex;
  gap: 2px;
  border-radius: var(--r);
  overflow: hidden;
}

.nb-compare-col {
  flex: 1;
  padding: 48px 40px;
}

.nb-compare-without {
  background: var(--bg);
  border: 1px solid var(--border);
}

.nb-compare-with {
  background: var(--accent);
}

.nb-compare-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.nb-compare-without .nb-compare-label {
  background: rgba(0, 0, 0, .05);
  color: var(--text3);
}

.nb-compare-with .nb-compare-label {
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

.nb-compare-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nb-compare-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.nb-compare-without .nb-compare-item {
  color: var(--text2);
}

.nb-compare-with .nb-compare-item {
  color: rgba(255, 255, 255, .85);
}

.nb-compare-item i {
  margin-top: 4px;
  font-size: 12px;
  flex-shrink: 0;
}

.nb-compare-without .nb-compare-item i {
  color: var(--text3);
}

.nb-compare-with .nb-compare-item i {
  color: #fff;
}

/* ===== NB TESTIMONIAL (Single Feature) ===== */
.nb-testimonial {
  padding: 96px 0;
  background: var(--bg2);
}

.nb-test-inner {
  display: flex;
  gap: 56px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.nb-test-img {
  flex: 0 0 200px;
  height: 200px;
  border-radius: 50% 50% 50% 4px;
  overflow: hidden;
}

.nb-test-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nb-test-body {
  flex: 1;
}

.nb-test-quote {
  font-size: 40px;
  color: var(--accent);
  opacity: .3;
  line-height: 1;
  margin-bottom: 16px;
}

.nb-test-body blockquote {
  font-size: 20px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 24px;
  letter-spacing: -.3px;
}

.nb-test-author {
  font-size: 14px;
}

.nb-test-author strong {
  color: var(--white);
}

.nb-test-author span {
  color: var(--text3);
  margin-left: 8px;
}

/* ===== NB CTA ===== */
.nb-cta {
  padding: 64px 0;
  background: var(--bg);
}

.nb-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 56px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  position: relative;
  overflow: hidden;
}

.nb-cta-inner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.nb-cta-inner h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
}

.nb-cta-inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.nb-cta-inner .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: #fff;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  transition: all .3s;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.nb-cta-inner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

/* ===== NB RESPONSIVE ===== */
@media(max-width:992px) {
  .nb-compare-grid {
    flex-direction: column;
  }

  .nb-manifesto-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nb-manifesto-watermark {
    align-self: center;
    align-items: center;
  }

  .nb-manifesto-watermark-line {
    font-size: clamp(36px, 11vw, 72px);
  }

  .nb-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 48px 28px;
  }
}

@media(max-width:600px) {
  .pg-hero h1 {
    font-size: 30px;
  }

  .nb-manifesto-copy h2 {
    font-size: 32px;
  }

  .nb-cta-inner h3 {
    font-size: 26px;
  }
}


.rf-marquee {
  padding: 48px 0;
  overflow: hidden;
  background: var(--bg);
}

.rf-marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: rfScroll 30s linear infinite;
}

@keyframes rfScroll {
  to {
    transform: translateX(-50%);
  }
}

.rf-marquee-item {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--text3);
  opacity: .4;
  transition: all .3s;
  flex-shrink: 0;
}

.rf-marquee-item:hover {
  opacity: 1;
  color: var(--accent);
  transform: scale(1.15);
}

/* ===== RF FEATURED PROJECTS ===== */
.rf-featured {
  padding: 96px 0;
  background: var(--bg2);
}

.rf-feat-head {
  text-align: center;
  margin-bottom: 56px;
}

.rf-feat-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.rf-feat-head p {
  font-size: 15px;
  color: var(--text2);
}

.rf-feat-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rf-feat-card {
  display: flex;
  gap: 0;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
}

.rf-feat-card:nth-child(even) {
  flex-direction: row-reverse;
}

.rf-feat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(67, 56, 202, .07);
}

.rf-feat-img {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.rf-feat-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.rf-feat-card:hover .rf-feat-img img {
  transform: scale(1.06);
}

.rf-feat-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 2;
}

.rf-feat-card:nth-child(even) .rf-feat-badge {
  left: auto;
  right: 16px;
}

.rf-feat-body {
  flex: 1;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rf-feat-sector {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.rf-feat-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.rf-feat-body>p {
  font-size: 14px;
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 24px;
}

.rf-feat-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.rf-feat-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.rf-feat-stat span {
  font-size: 11px;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.rf-feat-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.rf-feat-tag {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(67, 56, 202, .06);
  color: var(--accent);
}

/* ===== RF SECTORS ===== */
.rf-sectors {
  padding: 96px 0;
  background: var(--bg);
}

.rf-sect-head {
  text-align: center;
  margin-bottom: 56px;
}

.rf-sect-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.rf-sect-head p {
  font-size: 15px;
  color: var(--text2);
}

.rf-sect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.rf-sect-card {
  padding: 0;
  border-radius: var(--r);
  background: var(--bg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}

.rf-sect-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(67, 56, 202, .03), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.rf-sect-card:hover::before {
  opacity: 1;
}

.rf-sect-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(67, 56, 202, .06);
}

.rf-sect-thumb {
  width: 100%;
  height: 160px;
  border-radius: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: none;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  transition: box-shadow .4s, border-color .4s;
}

.rf-sect-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

.rf-sect-card:hover .rf-sect-thumb {
  border-color: rgba(67, 56, 202, .25);
}

.rf-sect-card:hover .rf-sect-thumb img {
  transform: scale(1.06);
}

.rf-sect-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  padding: 16px 20px;
  position: relative;
  z-index: 1;
}

/* ===== RF COUNTER ===== */
.rf-counter {
  padding: 56px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
}

.rf-counter-row {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.rf-counter-item {
  text-align: center;
}

.rf-counter-item strong {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.rf-counter-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

/* ===== RF TESTIMONIALS SLIDER ===== */
.rf-testimonials {
  padding: 96px 0;
}

.rf-test-head {
  text-align: center;
  margin-bottom: 56px;
}

.rf-test-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.rf-test-head p {
  font-size: 15px;
  color: var(--text2);
}

.rf-test-slider {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
}

.rf-test-slide {
  display: none;
  padding: 48px 40px;
  border-radius: var(--r);
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
  animation: rfSlideIn .5s ease forwards;
}

.rf-test-slide.active {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

@keyframes rfSlideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.rf-test-slide-left {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.rf-test-slide-left img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(67, 56, 202, .15);
}

.rf-test-stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
  font-size: 12px;
}

.rf-test-slide-right {
  flex: 1;
  position: relative;
  z-index: 1;
}

.rf-test-slide-right blockquote {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
  line-height: 1.8;
  margin: 0 0 16px;
  font-style: italic;
}

.rf-test-slide-meta strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.rf-test-slide-meta span {
  font-size: 12px;
  color: var(--text3);
}

.rf-test-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.rf-test-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text3);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  font-family: inherit;
}

.rf-test-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(67, 56, 202, .04);
}

.rf-test-dots {
  display: flex;
  gap: 8px;
}

.rf-test-dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all .3s;
}

.rf-test-dot.active {
  background: var(--accent);
  width: 48px;
}

/* ===== RF CTA ===== */
.rf-cta {
  padding: 64px 0;
  background: var(--bg);
}

.rf-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 56px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  position: relative;
  overflow: hidden;
}

.rf-cta-inner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}

.rf-cta-inner h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 1;
}

.rf-cta-inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.rf-cta-inner .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: #fff;
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
  transition: all .3s;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.rf-cta-inner .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

/* ===== RF RESPONSIVE ===== */
@media(max-width:992px) {

  .rf-feat-card,
  .rf-feat-card:nth-child(even) {
    flex-direction: column;
  }

  .rf-feat-img {
    flex: none;
    min-height: 220px;
  }

  .rf-feat-card:nth-child(even) .rf-feat-badge {
    right: auto;
    left: 16px;
  }

  .rf-sect-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rf-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width:600px) {
  .pg-hero h1 {
    font-size: 30px;
  }

  .rf-sect-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* ========== BLOG ARŞİV (html-tasarimlar/blog.html → _blog_archive) — hero: global .pg-hero ========== */
main.blog-archive .blog-page{padding:80px 0 120px}
main.blog-archive .blog-filters{display:flex;align-items:center;gap:8px;margin-bottom:50px;flex-wrap:wrap}
main.blog-archive .blog-filter{padding:9px 20px;border-radius:50px;font-size:13px;font-weight:600;color:var(--text2);border:1px solid var(--border);background:var(--bg);cursor:pointer;font-family:inherit;transition:all .35s ease;position:relative;overflow:hidden}
main.blog-archive .blog-filter::before{content:"";position:absolute;inset:0;background:var(--accent);border-radius:50px;transform:scaleX(0);transform-origin:left;transition:transform .35s cubic-bezier(.16,1,.3,1);z-index:0}
main.blog-archive .blog-filter:hover{border-color:var(--accent);color:var(--accent)}
main.blog-archive .blog-filter.active::before{transform:scaleX(1)}
main.blog-archive .blog-filter.active{color:#fff;border-color:var(--accent)}
main.blog-archive .blog-filter span{position:relative;z-index:1}
main.blog-archive .blog-featured{display:grid;grid-template-columns:1.2fr 1fr;grid-template-rows:260px 260px;gap:16px;margin-bottom:60px}
main.blog-archive .bl-card{border-radius:16px;overflow:hidden;position:relative;display:block;border:1px solid var(--border);transition:all .4s ease;text-decoration:none;color:inherit}
main.blog-archive .bl-card:hover{border-color:var(--accent)}
main.blog-archive .bl-card img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s ease}
main.blog-archive .bl-card:hover img{transform:scale(1.06)}
@keyframes blShine{0%{transform:translateX(-100%);opacity:1}100%{transform:translateX(100%);opacity:1}}
main.blog-archive .bl-card::before{content:"";position:absolute;inset:0;background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,.12) 50%,transparent 60%);z-index:2;pointer-events:none;transform:translateX(-100%);opacity:0}
main.blog-archive .bl-card:hover::before{animation:blShine .7s ease forwards}
main.blog-archive .bl-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(15,23,41,.88) 0%,rgba(15,23,41,.2) 50%,rgba(15,23,41,.05) 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:28px;z-index:1;transition:background .4s}
main.blog-archive .bl-card:hover .bl-card-overlay{background:linear-gradient(to top,rgba(67,56,202,.55) 0%,rgba(15,23,41,.15) 50%,rgba(15,23,41,.02) 100%)}
main.blog-archive .bl-card-tag{display:inline-block;background:var(--accent);color:#fff;font-size:10px;font-weight:700;padding:4px 10px;border-radius:6px;margin-bottom:10px;width:fit-content;text-transform:uppercase;letter-spacing:.5px}
main.blog-archive .bl-card-overlay h3{font-size:16px;font-weight:700;color:#fff;line-height:1.35;margin-bottom:6px}
main.blog-archive .bl-card-overlay .bl-meta{font-size:12px;color:rgba(255,255,255,.5);display:flex;align-items:center;gap:12px}
main.blog-archive .bl-card-overlay .bl-meta i{font-size:10px;margin-right:3px}
main.blog-archive .bl-card-big{grid-row:1/3}
main.blog-archive .bl-card-big .bl-card-overlay{padding:36px}
main.blog-archive .bl-card-big .bl-card-tag{font-size:11px;padding:5px 14px;margin-bottom:14px}
main.blog-archive .bl-card-big .bl-card-overlay h3{font-size:26px;letter-spacing:-.5px;margin-bottom:8px}
main.blog-archive .bl-card-big .bl-card-overlay p{font-size:14px;color:rgba(255,255,255,.6);line-height:1.7;margin-bottom:10px;max-width:400px}
main.blog-archive .bl-card-arrow{position:absolute;top:20px;right:20px;width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.1);backdrop-filter:blur(8px);display:flex;align-items:center;justify-content:center;color:#fff;font-size:14px;z-index:3;opacity:0;transform:translate(8px,-8px);transition:all .4s ease}
main.blog-archive .bl-card:hover .bl-card-arrow{opacity:1;transform:translate(0,0)}
main.blog-archive .blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
main.blog-archive .bl-grid-card{border-radius:16px;overflow:hidden;position:relative;display:block;border:1px solid var(--border);height:320px;transition:all .4s ease;text-decoration:none;color:inherit}
main.blog-archive .bl-grid-card:hover{border-color:var(--accent);transform:translateY(-4px)}
main.blog-archive .bl-grid-card img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s ease}
main.blog-archive .bl-grid-card:hover img{transform:scale(1.06)}
main.blog-archive .bl-grid-card::before{content:"";position:absolute;inset:0;background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,.12) 50%,transparent 60%);z-index:2;pointer-events:none;transform:translateX(-100%);opacity:0}
main.blog-archive .bl-grid-card:hover::before{animation:blShine .7s ease forwards}
main.blog-archive .bl-grid-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(15,23,41,.88) 0%,rgba(15,23,41,.15) 55%,rgba(15,23,41,.02) 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:24px;z-index:1;transition:background .4s}
main.blog-archive .bl-grid-card:hover .bl-grid-overlay{background:linear-gradient(to top,rgba(67,56,202,.5) 0%,rgba(15,23,41,.1) 55%,rgba(15,23,41,.01) 100%)}
main.blog-archive .bl-grid-overlay .bl-card-tag{margin-bottom:10px}
main.blog-archive .bl-grid-overlay h3{font-size:17px;font-weight:700;color:#fff;line-height:1.35;margin-bottom:4px}
main.blog-archive .bl-grid-overlay p{font-size:12px;color:rgba(255,255,255,.55);line-height:1.6;margin-bottom:10px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
main.blog-archive .bl-grid-overlay .bl-meta{font-size:11px;color:rgba(255,255,255,.45);display:flex;align-items:center;gap:12px}
main.blog-archive .bl-grid-card .bl-card-arrow{top:16px;right:16px;width:36px;height:36px;font-size:12px}
main.blog-archive .blog-section-title{display:flex;align-items:center;gap:16px;margin:60px 0 30px}
main.blog-archive .blog-section-title h2{font-size:24px;font-weight:800;color:var(--white);letter-spacing:-.5px;white-space:nowrap}
main.blog-archive .blog-section-title::after{content:"";flex:1;height:1px;background:var(--border)}
main.blog-archive .blog-pagination{display:flex;align-items:center;justify-content:center;gap:6px;margin-top:60px;flex-wrap:wrap}
main.blog-archive .blog-pagination .pg-btn{min-width:44px;height:44px;border-radius:12px;display:inline-flex;align-items:center;justify-content:center;font-size:14px;font-weight:600;border:1px solid var(--border);color:var(--text2);transition:all .3s;background:var(--bg);text-decoration:none;box-sizing:border-box}
main.blog-archive .blog-pagination .pg-btn:hover{border-color:var(--accent);color:var(--accent);transform:translateY(-2px)}
main.blog-archive .blog-pagination .pg-btn.pg-active{background:var(--accent);color:#fff;border-color:var(--accent)}
main.blog-archive .blog-pagination .pg-dots{color:var(--text3);font-size:14px;letter-spacing:2px;padding:0 4px}
main.blog-archive .blog-pagination .pg-arrow:hover{background:var(--accent);color:#fff;border-color:var(--accent)}
@media(max-width:1024px){main.blog-archive .blog-featured{grid-template-columns:1fr 1fr;grid-template-rows:240px 240px}main.blog-archive .blog-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){main.blog-archive .blog-filters{justify-content:center}main.blog-archive .blog-featured{grid-template-columns:1fr;grid-template-rows:300px 200px 200px}main.blog-archive .bl-card-big{grid-row:auto}main.blog-archive .blog-grid{grid-template-columns:1fr}main.blog-archive .bl-grid-card{height:280px}}

/* ========== BLOG TEKİL (html-tasarimlar/blog-detay.html → static/blog-detay) ========== */
main.blog-single .bd-progress{position:fixed;top:0;left:0;height:3px;background:var(--accent);z-index:9999;width:0;transition:width .08s linear}
main.blog-single .bd-breadcrumb{display:flex;align-items:center;gap:8px;font-size:13px;padding:20px 0}
main.blog-single .bd-breadcrumb a{color:var(--text3);transition:color .3s;text-decoration:none}
main.blog-single .bd-breadcrumb a:hover{color:var(--accent)}
main.blog-single .bd-breadcrumb i{font-size:9px;color:var(--text3)}
main.blog-single .bd-breadcrumb span{color:var(--accent);font-weight:600}
main.blog-single .bd-layout{display:flex;gap:50px;padding:20px 0 100px;align-items:flex-start}
main.blog-single .bd-article{flex:1;min-width:0}
main.blog-single .bd-cover{border-radius:16px;overflow:hidden;border:1px solid var(--border);margin-bottom:32px}
main.blog-single .bd-cover img{width:100%;height:420px;object-fit:cover;display:block;transition:transform .6s ease}
main.blog-single .bd-cover:hover img{transform:scale(1.03)}
main.blog-single .bd-tag{display:inline-block;background:rgba(67,56,202,.08);color:var(--accent);font-size:11px;font-weight:700;padding:5px 14px;border-radius:6px;margin-bottom:16px;text-transform:uppercase;letter-spacing:1px;border:1px solid rgba(67,56,202,.12)}
main.blog-single .bd-article>h1{font-size:36px;font-weight:800;color:var(--white);line-height:1.2;letter-spacing:-1.5px;margin-bottom:14px}
main.blog-single .bd-desc{font-size:16px;color:var(--text2);line-height:1.7;margin-bottom:24px}
main.blog-single .bd-meta{display:flex;align-items:center;gap:20px;flex-wrap:wrap;padding-bottom:28px;margin-bottom:32px;border-bottom:1px solid var(--border)}
main.blog-single .bd-author{display:flex;align-items:center;gap:10px}
main.blog-single .bd-author-avatar{width:40px;height:40px;border-radius:50%;background:var(--accent);display:flex;align-items:center;justify-content:center;color:#fff;font-size:14px;font-weight:700}
main.blog-single .bd-author-info span{display:block;font-size:13px;font-weight:600;color:var(--white)}
main.blog-single .bd-author-info small{font-size:11px;color:var(--text3)}
main.blog-single .bd-meta-divider{width:1px;height:20px;background:var(--border)}
main.blog-single .bd-meta-item{display:flex;align-items:center;gap:5px;font-size:13px;color:var(--text3)}
main.blog-single .bd-meta-item i{font-size:11px;color:var(--accent)}
main.blog-single .bd-article-body{font-size:16px;color:var(--text);line-height:1.9}
main.blog-single .bd-article-body h2{font-size:26px;font-weight:800;color:var(--white);letter-spacing:-.5px;margin:36px 0 14px;line-height:1.25}
main.blog-single .bd-article-body h3{font-size:20px;font-weight:700;color:var(--white);margin:28px 0 10px}
main.blog-single .bd-article-body p{margin-bottom:18px}
main.blog-single .bd-article-body ul{margin:0 0 24px;padding-left:1.25em;list-style:disc}
main.blog-single .bd-quote{margin:28px 0;padding:24px 28px;border-left:3px solid var(--accent);background:var(--bg2);border-radius:0 12px 12px 0}
main.blog-single .bd-quote p{font-size:16px;font-weight:500;color:var(--white);line-height:1.7;font-style:italic;margin-bottom:6px}
main.blog-single .bd-quote cite{font-size:13px;color:var(--text3);font-style:normal;font-weight:600}
main.blog-single .bd-img{margin:28px 0;border-radius:14px;overflow:hidden;border:1px solid var(--border)}
main.blog-single .bd-img img{width:100%;display:block}
main.blog-single .bd-img figcaption{padding:10px 16px;font-size:12px;color:var(--text3);background:var(--bg2)}
main.blog-single .bd-article-body img{max-width:100%;height:auto;border-radius:12px}
main.blog-single .bd-bottom{margin-top:36px;padding-top:24px;border-top:1px solid var(--border);display:flex;justify-content:space-between;align-items:flex-start;gap:20px;flex-wrap:wrap}
main.blog-single .bd-tags{display:flex;flex-wrap:wrap;gap:6px}
main.blog-single .bd-tag-sm{font-size:12px;font-weight:600;color:var(--text2);padding:6px 14px;border-radius:50px;border:1px solid var(--border);transition:all .3s}
main.blog-single .bd-share{display:flex;align-items:center;gap:6px}
main.blog-single .bd-share span{font-size:12px;font-weight:600;color:var(--text3);margin-right:4px}
main.blog-single .bd-share a{width:36px;height:36px;border-radius:50%;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;color:var(--text3);font-size:13px;transition:all .3s;text-decoration:none}
main.blog-single .bd-share a:hover{border-color:var(--accent);background:var(--accent);color:#fff}
main.blog-single .bd-sidebar{width:320px;min-width:320px}
main.blog-single .bd-sidebar-sticky{position:sticky;top:90px;display:flex;flex-direction:column;gap:20px}
main.blog-single .bd-widget{border:1px solid var(--border);border-radius:14px;padding:22px}
main.blog-single .bd-widget h4{font-size:14px;font-weight:700;color:var(--white);margin-bottom:16px;display:flex;align-items:center;gap:8px}
main.blog-single .bd-widget h4 i{color:var(--accent);font-size:13px}
main.blog-single .bd-toc a{display:flex;align-items:center;gap:10px;padding:9px 12px;font-size:13px;color:var(--text2);border-radius:8px;transition:all .3s;font-weight:500;text-decoration:none}
main.blog-single .bd-toc a:hover{background:var(--bg2);color:var(--accent)}
main.blog-single .bd-toc a.active{background:rgba(67,56,202,.06);color:var(--accent);font-weight:600}
main.blog-single .bd-cats a{display:flex;align-items:center;justify-content:space-between;padding:10px 0;font-size:13px;color:var(--text2);border-bottom:1px solid var(--border);transition:all .3s;text-decoration:none}
main.blog-single .bd-cats a:last-child{border-bottom:none}
main.blog-single .bd-cats a:hover{color:var(--accent);padding-left:4px}
main.blog-single .bd-cats a span{font-size:11px;color:var(--text3);background:var(--bg2);padding:2px 8px;border-radius:10px;font-weight:600}
main.blog-single .bd-related-item{display:flex;gap:12px;padding:10px 0;border-bottom:1px solid var(--border);text-decoration:none;color:inherit}
main.blog-single .bd-related-item:last-child{border-bottom:none;padding-bottom:0}
main.blog-single .bd-related-thumb{width:72px;height:56px;border-radius:8px;overflow:hidden;flex-shrink:0;border:1px solid var(--border)}
main.blog-single .bd-related-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .5s ease}
main.blog-single .bd-related-item:hover .bd-related-thumb img{transform:scale(1.08)}
main.blog-single .bd-related-body h5{font-size:13px;font-weight:600;color:var(--white);line-height:1.4;margin-bottom:3px;transition:color .3s}
main.blog-single .bd-related-item:hover .bd-related-body h5{color:var(--accent)}
main.blog-single .bd-related-body small{font-size:11px;color:var(--text3)}
main.blog-single .bd-more{border-top:1px solid var(--border);padding:60px 0 100px}
main.blog-single .bd-more-head{display:flex;align-items:center;gap:16px;margin-bottom:28px}
main.blog-single .bd-more-head h2{font-size:24px;font-weight:800;color:var(--white);letter-spacing:-.5px;white-space:nowrap}
main.blog-single .bd-more-head::after{content:"";flex:1;height:1px;background:var(--border)}
main.blog-single .bd-more-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
main.blog-single .bd-more-card{border-radius:16px;overflow:hidden;position:relative;display:block;border:1px solid var(--border);height:280px;transition:all .4s ease;text-decoration:none;color:inherit}
main.blog-single .bd-more-card:hover{border-color:var(--accent);transform:translateY(-4px)}
main.blog-single .bd-more-card img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
main.blog-single .bd-more-card:hover img{transform:scale(1.06)}
main.blog-single .bd-more-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(15,23,41,.88) 0%,rgba(15,23,41,.15) 55%,rgba(15,23,41,.02) 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:24px;z-index:1;transition:background .4s}
main.blog-single .bd-more-card:hover .bd-more-overlay{background:linear-gradient(to top,rgba(67,56,202,.5) 0%,rgba(15,23,41,.1) 55%,rgba(15,23,41,.01) 100%)}
main.blog-single .bd-more-tag{display:inline-block;background:var(--accent);color:#fff;font-size:10px;font-weight:700;padding:4px 10px;border-radius:6px;margin-bottom:10px;width:fit-content;text-transform:uppercase;letter-spacing:.5px}
main.blog-single .bd-more-overlay h3{font-size:17px;font-weight:700;color:#fff;line-height:1.35;margin-bottom:6px}
main.blog-single .bd-more-meta{font-size:11px;color:rgba(255,255,255,.45);display:flex;gap:12px}
main.blog-single .bd-more-meta i{font-size:10px;margin-right:3px}
@media(max-width:1024px){main.blog-single .bd-article>h1{font-size:30px}main.blog-single .bd-cover img{height:340px}main.blog-single .bd-sidebar{width:260px;min-width:260px}}
@media(max-width:768px){main.blog-single .bd-layout{flex-direction:column;gap:40px;padding:16px 0 60px}main.blog-single .bd-sidebar{width:100%;min-width:100%}main.blog-single .bd-sidebar-sticky{position:static}main.blog-single .bd-article>h1{font-size:26px;letter-spacing:-1px}main.blog-single .bd-cover img{height:260px}main.blog-single .bd-more-grid{grid-template-columns:1fr}main.blog-single .bd-more-card{height:250px}}
@media(max-width:480px){main.blog-single .bd-article>h1{font-size:22px}main.blog-single .bd-cover img{height:200px}main.blog-single .bd-meta-divider{display:none}main.blog-single .bd-bottom{flex-direction:column}}

/* ========== İLETİŞİM (html-tasarimlar/iletisim.html → _contact_page) ========== */
main.contact-page .sec-label{font-size:12px;font-weight:700;color:var(--accent);text-transform:uppercase;letter-spacing:3px;margin-bottom:14px;display:block}
main.contact-page .ct-hero{padding:90px 0 60px;border-bottom:1px solid var(--border)}
main.contact-page .ct-hero .c{display:flex;align-items:flex-end;justify-content:space-between;gap:40px}
main.contact-page .ct-hero-text{max-width:560px}
main.contact-page .ct-breadcrumb{display:flex;align-items:center;gap:8px;font-size:13px;margin-bottom:24px}
main.contact-page .ct-breadcrumb a{color:var(--text3);transition:color .3s}
main.contact-page .ct-breadcrumb a:hover{color:var(--accent)}
main.contact-page .ct-breadcrumb i{font-size:9px;color:var(--text3)}
main.contact-page .ct-breadcrumb span{color:var(--accent);font-weight:600}
main.contact-page .ct-hero-text h1{font-size:44px;font-weight:800;color:var(--white);letter-spacing:-2px;line-height:1.1;margin-bottom:14px}
main.contact-page .ct-hero-text p{font-size:16px;color:var(--text2);line-height:1.7}
main.contact-page .ct-hero-cards{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;flex-shrink:0;width:100%;max-width:680px;min-width:0}
main.contact-page a.ct-hero-card{display:flex;flex-direction:column;align-items:center;padding:20px 12px;border:1px solid var(--border);border-radius:14px;text-align:center;transition:all .35s ease;text-decoration:none;color:inherit;min-width:0}
main.contact-page a.ct-hero-card:hover{border-color:var(--accent);transform:translateY(-3px)}
main.contact-page .ct-hero-card i{font-size:22px;color:var(--accent);margin-bottom:10px}
main.contact-page .ct-hero-card h4{font-size:13px;font-weight:700;color:var(--white);margin-bottom:4px}
main.contact-page .ct-hero-card span{font-size:11px;color:var(--text3);line-height:1.45;display:block;word-break:break-word}
main.contact-page .ct-info-bar{padding:32px 0;background:var(--bg2);border-bottom:1px solid var(--border)}
main.contact-page .ct-info-bar-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0}
main.contact-page .ct-info-item{display:flex;align-items:center;gap:16px;padding:20px 28px;text-decoration:none;color:inherit;border-right:1px solid var(--border);transition:background .3s}
main.contact-page .ct-info-item:last-child{border-right:none}
main.contact-page .ct-info-item:hover{background:var(--bg)}
main.contact-page .ct-info-icon{width:44px;height:44px;border-radius:10px;background:rgba(99,102,241,.12);display:flex;align-items:center;justify-content:center;flex-shrink:0}
main.contact-page .ct-info-icon i{font-size:18px;color:var(--accent)}
main.contact-page .ct-info-icon--wa{background:rgba(37,211,102,.12)}
main.contact-page .ct-info-icon--wa i{color:#25d366}
main.contact-page .ct-info-body{display:flex;flex-direction:column;min-width:0}
main.contact-page .ct-info-label{font-size:11px;color:var(--text3);text-transform:uppercase;letter-spacing:.06em;margin-bottom:3px}
main.contact-page .ct-info-body strong{font-size:13px;font-weight:600;color:var(--white);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
main.contact-page .ct-main{padding:70px 0 100px}
main.contact-page .ct-layout{display:flex;gap:40px}
main.contact-page .ct-form-wrap{flex:1;min-width:0}
main.contact-page .ct-form-wrap h2{font-size:28px;font-weight:800;color:var(--white);letter-spacing:-.5px;margin-bottom:6px}
main.contact-page .ct-form-wrap>p{font-size:14px;color:var(--text2);margin-bottom:32px}
main.contact-page .ct-form{display:flex;flex-direction:column;gap:18px}
main.contact-page .ct-form-row{display:flex;gap:18px}
main.contact-page .ct-field{flex:1;display:flex;flex-direction:column;gap:6px}
main.contact-page .ct-field label{font-size:13px;font-weight:600;color:var(--white)}
main.contact-page .ct-field label span{color:var(--accent)}
main.contact-page .ct-field input,main.contact-page .ct-field select,main.contact-page .ct-field textarea{width:100%;padding:12px 16px;border:1px solid var(--border);border-radius:10px;background:var(--bg);font-family:inherit;font-size:14px;color:var(--white);outline:none;transition:all .3s}
main.contact-page .ct-field input::placeholder,main.contact-page .ct-field textarea::placeholder{color:var(--text3)}
main.contact-page .ct-field input:focus,main.contact-page .ct-field select:focus,main.contact-page .ct-field textarea:focus{border-color:var(--accent);box-shadow:0 0 0 3px rgba(67,56,202,.06)}
main.contact-page .ct-field textarea{resize:vertical;min-height:130px}
main.contact-page .ct-field select{cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center;padding-right:36px}
main.contact-page .ct-form .g-recaptcha{align-self:flex-start}
main.contact-page .ct-submit{display:inline-flex;align-items:center;gap:8px;background:var(--accent);color:#fff;font-family:inherit;font-size:14px;font-weight:700;padding:14px 36px;border:none;border-radius:50px;cursor:pointer;transition:all .3s;align-self:flex-start}
main.contact-page .ct-submit:hover{background:var(--accent2);transform:translateY(-2px)}
main.contact-page .ct-submit i{transition:transform .3s}
main.contact-page .ct-submit:hover i{transform:translateX(3px)}
main.contact-page .ct-map-wrap{width:420px;min-width:420px;display:flex;flex-direction:column;gap:20px}
main.contact-page .ct-map{flex:1;border-radius:16px;overflow:hidden;border:1px solid var(--border);min-height:360px}
main.contact-page .ct-map iframe{width:100%;height:100%;border:0;display:block;min-height:360px}
main.contact-page .ct-hours{border:1px solid var(--border);border-radius:14px;padding:22px}
main.contact-page .ct-hours h4{font-size:14px;font-weight:700;color:var(--white);margin-bottom:14px;display:flex;align-items:center;gap:8px}
main.contact-page .ct-hours h4 i{color:var(--accent);font-size:14px}
main.contact-page .ct-hours-row{display:flex;justify-content:space-between;padding:8px 0;font-size:13px;border-bottom:1px solid var(--border)}
main.contact-page .ct-hours-row:last-child{border-bottom:none}
main.contact-page .ct-hours-row span:first-child{color:var(--text2)}
main.contact-page .ct-hours-row span:last-child{color:var(--white);font-weight:600}
main.contact-page .ct-hours-row.ct-closed span:last-child{color:var(--accent)}
main.contact-page .ct-social{padding:60px 0;border-top:1px solid var(--border);text-align:center}
main.contact-page .ct-social h3{font-size:20px;font-weight:800;color:var(--white);margin-bottom:8px}
main.contact-page .ct-social>p{font-size:14px;color:var(--text2);margin-bottom:28px}
main.contact-page .ct-social-links{display:flex;justify-content:center;gap:12px}
main.contact-page .ct-social-link{width:50px;height:50px;border-radius:50%;border:1px solid var(--border);display:flex;align-items:center;justify-content:center;font-size:18px;color:var(--text3);transition:all .35s ease;text-decoration:none}
main.contact-page .ct-social-link:hover{border-color:var(--accent);background:var(--accent);color:#fff;transform:translateY(-3px)}
@media(max-width:1024px){main.contact-page .ct-hero .c{flex-direction:column;align-items:flex-start}main.contact-page .ct-hero-cards{max-width:100%;grid-template-columns:repeat(2,minmax(0,1fr))}main.contact-page .ct-hero-text h1{font-size:36px}main.contact-page .ct-map-wrap{width:340px;min-width:340px}main.contact-page .ct-info-bar-grid{grid-template-columns:repeat(2,1fr)}main.contact-page .ct-info-item{border-right:none;border-bottom:1px solid var(--border)}main.contact-page .ct-info-item:nth-child(odd){border-right:1px solid var(--border)}}
@media(max-width:768px){main.contact-page .ct-hero{padding:70px 0 40px}main.contact-page .ct-hero-text h1{font-size:30px}main.contact-page .ct-hero-cards{grid-template-columns:1fr 1fr;gap:10px}main.contact-page .ct-layout{flex-direction:column;gap:40px}main.contact-page .ct-map-wrap{width:100%;min-width:100%}main.contact-page .ct-map{min-height:280px}main.contact-page .ct-map iframe{min-height:280px}main.contact-page .ct-form-row{flex-direction:column;gap:18px}main.contact-page .ct-info-bar-grid{grid-template-columns:1fr}main.contact-page .ct-info-item{border-right:none;justify-content:flex-start}main.contact-page .ct-info-item:nth-child(odd){border-right:none}main.contact-page .ct-info-body strong{white-space:normal;overflow:visible;text-overflow:clip}}
@media(max-width:480px){main.contact-page .ct-hero-cards{grid-template-columns:1fr}main.contact-page .ct-hero-text h1{font-size:26px}main.contact-page .ct-form-wrap h2{font-size:24px}main.contact-page .ct-info-bar-grid{grid-template-columns:1fr}main.contact-page .ct-info-item{border-right:none}main.contact-page .ct-info-item:nth-child(only){border-right:none}}
/* Legal pages */
main.legal-page .lp-body{padding:60px 0 80px}
main.legal-page .lp-content{max-width:860px;color:var(--text2);font-size:15px;line-height:1.85}
main.legal-page .lp-content h2{font-size:20px;font-weight:700;color:var(--white);margin:40px 0 12px;padding-bottom:10px;border-bottom:1px solid var(--border)}
main.legal-page .lp-content h3{font-size:16px;font-weight:700;color:var(--white);margin:28px 0 8px}
main.legal-page .lp-content h2:first-child,main.legal-page .lp-content h3:first-child{margin-top:0}
main.legal-page .lp-content p{margin-bottom:14px}
main.legal-page .lp-content ul,main.legal-page .lp-content ol{margin:0 0 16px 20px;padding:0}
main.legal-page .lp-content ul{list-style:disc}
main.legal-page .lp-content ol{list-style:decimal}
main.legal-page .lp-content li{margin-bottom:6px}
main.legal-page .lp-content strong{color:var(--white);font-weight:600}
main.legal-page .lp-content a{color:var(--accent);text-decoration:underline;text-underline-offset:3px}
main.legal-page .lp-content a:hover{color:var(--accent2)}
main.legal-page .lp-content blockquote{border-left:3px solid var(--accent);padding:12px 20px;margin:20px 0;background:var(--bg2);border-radius:0 8px 8px 0;color:var(--text2)}
@media(max-width:768px){main.legal-page .lp-body{padding:40px 0 60px}main.legal-page .lp-content{font-size:14px}main.legal-page .lp-content h2{font-size:18px}}

/* 404 / Error Sayfasi */
.error-section{padding:120px 0;background:var(--bg2);min-height:70vh;display:flex;align-items:center}
.error-content{max-width:680px;margin:0 auto;text-align:center}
.error-code{font-size:clamp(120px,20vw,240px);font-weight:800;line-height:1;letter-spacing:-.04em;background:linear-gradient(135deg,var(--accent) 0%,var(--accent2) 100%);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent;margin-bottom:8px}
.error-title{font-size:36px;font-weight:700;color:var(--white);margin:0 0 16px;line-height:1.2}
.error-desc{font-size:16px;color:var(--text2);line-height:1.7;margin:0 auto 36px;max-width:560px}
.error-actions{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.error-actions .btn-acc,.error-actions .btn-line{min-width:200px;justify-content:center}
@media(max-width:640px){.error-section{padding:72px 0;min-height:55vh}.error-title{font-size:26px}.error-desc{font-size:15px}.error-actions{flex-direction:column;align-items:stretch;gap:12px}.error-actions .btn-acc,.error-actions .btn-line{width:100%;min-width:0}}

/* ===== Ürün sayfaları ===== */
main.products-page .products{padding:56px 0 80px}
main.products-page .srv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
@media(max-width:900px){main.products-page .srv-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){main.products-page .srv-grid{grid-template-columns:1fr}}

/* Ürün detay — 02 varyasyon: thumbnail alt yatay, fiyat üstte vurgulu */
.product-detail-section{padding:60px 0 90px;background:var(--bg)}
.product-detail{display:grid;grid-template-columns:1.1fr 1fr;gap:48px;align-items:start}
@media(max-width:900px){.product-detail{grid-template-columns:1fr;gap:28px}}

.product-gallery{display:flex;flex-direction:column;gap:12px}
.product-gallery-main{position:relative;aspect-ratio:1/1;background:var(--bg2);border:1px solid var(--border);border-radius:var(--r);overflow:hidden;display:flex;align-items:center;justify-content:center}
.product-gallery-main img{width:100%;height:100%;object-fit:cover;cursor:zoom-in}
.product-gallery-placeholder{font-size:72px;color:var(--text3);opacity:.4}
.product-gallery-nav{position:absolute;top:50%;transform:translateY(-50%);width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.92);border:1px solid var(--border);color:var(--white);font-size:14px;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:2;box-shadow:0 4px 14px rgba(0,0,0,.1);opacity:0;transition:opacity .25s,background .25s,transform .25s}
.product-gallery-main:hover .product-gallery-nav{opacity:1}
.product-gallery-nav:hover{background:var(--accent);color:#fff;transform:translateY(-50%) scale(1.05)}
.product-gallery-nav-prev{left:12px}.product-gallery-nav-next{right:12px}
@media(hover:none){.product-gallery-nav{opacity:1}}

.product-gallery-thumbs{display:grid;grid-template-columns:repeat(auto-fill,minmax(72px,1fr));gap:8px}
.product-gallery-thumb{aspect-ratio:1/1;background:var(--bg2);border:2px solid var(--border);border-radius:10px;overflow:hidden;cursor:pointer;padding:0;transition:border-color .25s,transform .25s}
.product-gallery-thumb img{width:100%;height:100%;object-fit:cover}
.product-gallery-thumb:hover{transform:translateY(-2px)}
.product-gallery-thumb.is-active{border-color:var(--accent)}

.product-info{padding-top:4px}
.product-info-price{display:inline-flex;align-items:baseline;gap:10px;padding:12px 18px;background:var(--accent-faint,var(--bg2));border-radius:var(--r);margin-bottom:18px}
.product-info-price-label{font-size:11px;text-transform:uppercase;letter-spacing:1.5px;color:var(--text2);font-weight:600}
.product-info-price-value{font-size:22px;font-weight:800;color:var(--white)}

.product-info-title{font-size:30px;font-weight:800;color:var(--white);line-height:1.2;margin:0 0 12px}
.product-info-code{font-size:12px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:var(--text2);margin-bottom:14px}
.product-info-code span{color:var(--text3);font-weight:500;margin-right:4px}
.product-info-lead{font-size:15px;color:var(--text2);line-height:1.6;margin:0 0 22px}

.product-info-features{list-style:none;padding:0;margin:0 0 26px;border:1px solid var(--border);border-radius:12px;overflow:hidden}
.product-info-features li{display:flex;align-items:center;padding:11px 16px;border-bottom:1px solid var(--border);font-size:14px}
.product-info-features li:last-child{border-bottom:none}
.product-info-features li:nth-child(even){background:var(--bg2)}
.product-info-features .feature-label{flex:0 0 42%;font-weight:600;color:var(--white)}
.product-info-features .feature-value{flex:1;color:var(--text2)}

.product-info-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:8px}
.product-info-actions .btn-acc,.product-info-actions .btn-line{min-width:180px;justify-content:center;padding:13px 26px;font-size:14px;white-space:nowrap}
.product-info-actions .btn-line{color:var(--white);border-color:var(--border)}
.product-info-actions .btn-line:hover{border-color:var(--accent);color:var(--accent);background:rgba(255,255,255,.04)}
.product-info-actions .btn-acc i,.product-info-actions .btn-line i{font-size:15px}
@media(max-width:520px){.product-info-actions{flex-direction:column;gap:10px}.product-info-actions .btn-acc,.product-info-actions .btn-line{width:100%;min-width:0}}

/* Tabs — 02 varyasyon: pill style */
.product-tabs{margin-top:48px;border:1px solid var(--border);border-radius:16px;overflow:hidden;background:var(--bg)}
.product-tabs-head{display:flex;gap:6px;padding:10px;background:var(--bg2);border-bottom:1px solid var(--border)}
.product-tab{background:transparent;border:1px solid transparent;padding:10px 22px;font-size:14px;font-weight:600;color:var(--text2);cursor:pointer;border-radius:999px;transition:background .2s,color .2s,border-color .2s}
.product-tab:hover{color:var(--white)}
.product-tab.is-active{background:var(--white);color:var(--bg);border-color:var(--white)}
.product-tab-panel{display:none;padding:32px}
.product-tab-panel.is-active{display:block}
.product-tab-panel .service-detail-editor{max-width:none;margin:0;text-align:left}
.product-tab-panel .service-detail-editor>*:first-child{margin-top:0}
.product-tab-panel .service-detail-editor>*:last-child{margin-bottom:0}

/* Related */
.product-related{margin-top:64px}
.product-related .section-title{margin-bottom:24px}
.product-related .section-title h2{font-size:22px;color:var(--white);margin:0}

/* Lightbox */
.product-lightbox{position:fixed;inset:0;background:rgba(15,23,41,.92);z-index:10000;display:none;align-items:center;justify-content:center;padding:60px 72px;opacity:0;transition:opacity .3s}
.product-lightbox.is-open{display:flex;opacity:1}
.product-lightbox-stage{max-width:100%;max-height:100%;display:flex;align-items:center;justify-content:center}
.product-lightbox-stage img{max-width:100%;max-height:calc(100vh - 120px);width:auto;height:auto;object-fit:contain;border-radius:12px;box-shadow:0 20px 60px rgba(0,0,0,.5);animation:prdLbIn .35s cubic-bezier(.16,1,.3,1)}
@keyframes prdLbIn{from{opacity:0;transform:scale(.94)}to{opacity:1;transform:scale(1)}}
.product-lightbox-close{position:absolute;top:20px;right:20px;width:46px;height:46px;border-radius:50%;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);color:#fff;font-size:18px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .25s,transform .25s;backdrop-filter:blur(8px)}
.product-lightbox-close:hover{background:rgba(255,255,255,.22);transform:rotate(90deg)}
.product-lightbox-nav{position:absolute;top:50%;transform:translateY(-50%);width:52px;height:52px;border-radius:50%;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);color:#fff;font-size:18px;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .25s;backdrop-filter:blur(8px)}
.product-lightbox-nav:hover{background:var(--accent);border-color:var(--accent)}
.product-lightbox-nav-prev{left:24px}.product-lightbox-nav-next{right:24px}
@media(max-width:600px){.product-lightbox{padding:40px 16px}.product-lightbox-nav{width:40px;height:40px;font-size:15px}.product-lightbox-nav-prev{left:10px}.product-lightbox-nav-next{right:10px}.product-lightbox-close{top:12px;right:12px;width:38px;height:38px;font-size:15px}}
