/*
Theme Name: PanelJet HQ
Theme URI: https://paneljet.local
Author: PanelJet
Description: PanelJet merkez sitesi icin ozel kodlanmis, kurumsal/teknoloji karakterinde tema. Sutunlu mega menu, urun kategorisi vitrin sablonu ve PanelJet HQ eklentisinin (kayit/giris/panelim) kisa kodlarini profesyonel bir tasarimla sunar.
Version: 1.3.1
Requires PHP: 7.4
Text Domain: paneljet-hq-theme
*/

:root {
	--pj-navy: #06213f;
	--pj-navy-2: #0c2a4a;
	--pj-navy-3: #123a63;
	--pj-blue: #185fa5;
	--pj-blue-bright: #378add;
	--pj-blue-pale: #e6f1fb;
	--pj-ink: #0b1220;
	--pj-text: #1c2733;
	--pj-text-muted: #5f6b7a;
	--pj-surface: #ffffff;
	--pj-bg: #f4f7fb;
	--pj-bg-alt: #eef3f9;
	--pj-border: #dde6f0;
	--pj-teal: #0f6e56;
	--pj-teal-bg: #e1f5ee;
	--pj-teal-bright: #2bcf9c;
	--pj-radius: 14px;
	--pj-radius-sm: 8px;
	--pj-shadow-sm: 0 1px 2px rgba(6, 33, 63, 0.06), 0 1px 1px rgba(6, 33, 63, 0.04);
	--pj-shadow-md: 0 8px 24px rgba(6, 33, 63, 0.10), 0 2px 8px rgba(6, 33, 63, 0.06);
	--pj-shadow-lg: 0 20px 48px rgba(6, 33, 63, 0.16), 0 6px 16px rgba(6, 33, 63, 0.08);
	--pj-container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: "Inter", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	color: var(--pj-text);
	background: var(--pj-bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--pj-blue); text-decoration: none; }
a:hover { color: var(--pj-blue-bright); }

.pj-container { max-width: var(--pj-container); margin: 0 auto; padding: 0 5%; }

.pj-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--pj-blue);
	background: var(--pj-blue-pale);
	padding: 5px 12px;
	border-radius: 999px;
	margin-bottom: 16px;
}

.pj-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 24px;
	border-radius: var(--pj-radius-sm);
	font-weight: 600;
	font-size: 14.5px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.pj-btn-primary { background: var(--pj-blue-bright); color: #fff; box-shadow: var(--pj-shadow-sm); }
.pj-btn-primary:hover { background: #2c78c8; color: #fff; box-shadow: var(--pj-shadow-md); transform: translateY(-1px); }
.pj-btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.28); }
.pj-btn-ghost:hover { background: rgba(255,255,255,.14); color: #fff; }
.pj-btn-outline { background: #fff; color: var(--pj-navy); border-color: var(--pj-border); }
.pj-btn-outline:hover { border-color: var(--pj-blue); color: var(--pj-blue); }

/* ---------- Header + mega menu ---------- */
.pj-header { background: var(--pj-navy); position: relative; z-index: 50; }
.pj-header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 5%; max-width: var(--pj-container); margin: 0 auto; }
.pj-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-size: 18px; }
.pj-logo-mark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--pj-blue-bright), var(--pj-teal)); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: #fff; }

.pj-nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 22px; cursor: pointer; }

.pj-nav { display: flex; align-items: center; gap: 4px; }
.pj-nav > ul { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.pj-nav > ul > li { position: relative; }
.pj-nav > ul > li > a {
	display: flex; align-items: center; gap: 5px;
	color: rgba(255,255,255,.88); font-size: 14.5px; font-weight: 500;
	padding: 10px 14px; border-radius: var(--pj-radius-sm);
}
.pj-nav > ul > li > a:hover, .pj-nav > ul > li.pj-menu-open > a { color: #fff; background: rgba(255,255,255,.08); }
.pj-nav .pj-caret { font-size: 10px; opacity: .7; transition: transform .15s ease; }
.pj-nav > ul > li.pj-menu-open .pj-caret { transform: rotate(180deg); }

.pj-mega {
	position: absolute; top: calc(100% + 10px); left: 0;
	background: #fff; border-radius: var(--pj-radius); box-shadow: var(--pj-shadow-lg);
	padding: 26px; display: none; min-width: 560px;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 28px;
	border: 1px solid var(--pj-border);
}
.pj-nav > ul > li.pj-menu-open .pj-mega { display: grid; }

.pj-mega-col-title { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--pj-text-muted); margin: 0 0 12px; }
.pj-mega-col ul { list-style: none; margin: 0; padding: 0; }
.pj-mega-col li { margin-bottom: 4px; }
.pj-mega-col a { display: block; color: var(--pj-text); font-size: 14px; padding: 6px 8px; border-radius: 6px; }
.pj-mega-col a:hover { background: var(--pj-blue-pale); color: var(--pj-blue); }
.pj-mega-simple-link a { color: var(--pj-text); font-size: 14.5px; font-weight: 500; }

/* ---------- Hero ---------- */
.pj-hero {
	background: radial-gradient(1100px 520px at 82% -10%, rgba(55,138,221,.35), transparent 60%),
	            linear-gradient(180deg, var(--pj-navy) 0%, var(--pj-navy-2) 100%);
	position: relative; overflow: hidden;
}
.pj-hero::before {
	content: ""; position: absolute; width: 480px; height: 480px; border-radius: 50%;
	background: radial-gradient(circle, rgba(15,110,86,.35), transparent 70%);
	top: -180px; right: -140px; filter: blur(10px);
}
.pj-hero-inner-static {
	position: relative; z-index: 1; max-width: var(--pj-container); margin: 0 auto; padding: 44px 5% 36px;
}
.pj-hero-eyebrow { color: #bcd6f2; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); }
.pj-hero h1 { font-size: 38px; line-height: 1.15; color: #fff; margin: 0 0 14px; font-weight: 600; letter-spacing: -.01em; }
.pj-hero h1 em { font-style: normal; color: #7fc1ff; }
.pj-hero-sub { font-size: 16px; color: #cbd8e6; max-width: 460px; margin: 0; }

.pj-hero-bottom-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-top: 28px; }
.pj-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.pj-hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.pj-hero-stat-num { font-size: 21px; font-weight: 600; color: #fff; }
.pj-hero-stat-label { font-size: 12px; color: #9db4cb; }

/* Slides: each is a full text+visual row, cross-faded */
.pj-hero-slides { position: relative; min-height: 340px; }
.pj-hero-slide-block {
	position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .5s ease;
	display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: center;
}
.pj-hero-slide-block.active { opacity: 1; pointer-events: auto; }

.pj-hero-slide-visual {
	background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
	border-radius: var(--pj-radius); padding: 20px; box-shadow: var(--pj-shadow-lg);
	backdrop-filter: blur(6px); min-height: 300px; display: flex; align-items: center; justify-content: center;
}

/* Slide 1: staggered sector tag columns */
.pj-hero-sectors { display: flex; gap: 10px; width: 100%; }
.pj-hero-sector-col { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.pj-hero-sector-col:last-child { margin-top: 20px; }
.pj-hero-sector-tag {
	background: rgba(255,255,255,.06); color: #dbe7f3; border-radius: var(--pj-radius-sm);
	padding: 11px 12px; font-size: 12.5px; font-weight: 500;
}
.pj-hero-sector-tag.is-blue { background: var(--pj-blue-bright); color: #fff; }
.pj-hero-sector-tag.is-teal { background: var(--pj-teal); color: #fff; }

/* Slide 2: katmanli mimari diyagrami */
.pj-stack { width: 100%; display: flex; flex-direction: column; gap: 7px; }
.pj-stack-row {
	background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.10);
	border-radius: 10px; padding: 10px 12px;
}
.pj-stack-tier {
	display: block; font-size: 10.5px; letter-spacing: .07em; text-transform: uppercase;
	color: #7e9bbb; font-weight: 600; margin-bottom: 7px;
}
.pj-stack-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.pj-stack-chips span {
	display: inline-flex; align-items: center; gap: 5px;
	background: rgba(255,255,255,.07); color: #dbe7f3; border: 1px solid rgba(255,255,255,.09);
	border-radius: 6px; padding: 5px 9px; font-size: 12px; font-weight: 500;
}
.pj-stack-chips span .ti { font-size: 14px; opacity: .85; }
.pj-stack-chips span.is-blue { background: var(--pj-blue-bright); border-color: transparent; color: #fff; }
.pj-stack-chips span.is-teal { background: rgba(43,207,156,.16); border-color: rgba(43,207,156,.32); color: var(--pj-teal-bright); }
.pj-stack-chips span.is-more { background: transparent; border-style: dashed; color: #9db4cb; }

.pj-stack-base {
	display: flex; align-items: center; gap: 12px; margin-top: 3px;
	background: linear-gradient(120deg, rgba(55,138,221,.30), rgba(43,207,156,.16));
	border: 1px solid rgba(55,138,221,.42); border-radius: 10px; padding: 13px 14px;
}
.pj-stack-base-icon {
	width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
	background: var(--pj-blue-bright); color: #fff;
	display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.pj-stack-base strong { display: block; color: #fff; font-size: 14.5px; font-weight: 600; }
.pj-stack-base span { display: block; color: #b9cbe0; font-size: 11.5px; }

/* Slide 3: destek konusmasi */
.pj-chat { width: 100%; max-width: 360px; }
.pj-chat-head { display: flex; align-items: center; gap: 11px; padding-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,.10); }
.pj-chat-avatar {
	width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
	background: rgba(43,207,156,.18); color: var(--pj-teal-bright);
	display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.pj-chat-head strong { display: block; color: #fff; font-size: 14.5px; font-weight: 600; }
.pj-chat-status { display: flex; align-items: center; gap: 6px; color: #9db4cb; font-size: 11.5px; }
.pj-chat-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--pj-teal-bright); }

.pj-chat-thread { display: flex; flex-direction: column; gap: 7px; padding: 14px 0; }
.pj-bubble { max-width: 82%; font-size: 12.5px; line-height: 1.5; padding: 9px 12px; }
.pj-bubble.is-in {
	align-self: flex-start; background: rgba(255,255,255,.07); color: #dbe7f3;
	border-radius: 12px 12px 12px 3px;
}
.pj-bubble.is-out {
	align-self: flex-end; background: var(--pj-blue-bright); color: #fff;
	border-radius: 12px 12px 3px 12px;
}

.pj-chat-foot { display: flex; gap: 10px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.10); }
.pj-chat-foot div { flex: 1; }
.pj-chat-foot strong { display: block; color: #fff; font-size: 14px; font-weight: 600; }
.pj-chat-foot span { display: block; color: #9db4cb; font-size: 11px; }

.pj-hero-dots { display: flex; gap: 8px; }
.pj-hero-dots button { width: 22px; height: 4px; border-radius: 2px; border: none; background: rgba(255,255,255,.22); cursor: pointer; padding: 0; transition: background .2s ease, width .2s ease; }
.pj-hero-dots button.active { background: var(--pj-blue-bright); width: 30px; }
.pj-hero-slide-dots { position: static; margin-top: 8px; }

/* ---------- Section rhythm ---------- */
.pj-section { padding: 60px 0; }
.pj-section-alt { background: var(--pj-bg-alt); }
.pj-section-head { max-width: 620px; margin: 0 auto 32px; text-align: center; }
.pj-section-head h2 { font-size: 30px; font-weight: 600; margin: 0 0 12px; color: var(--pj-ink); letter-spacing: -.01em; }
.pj-section-head p { color: var(--pj-text-muted); font-size: 15.5px; margin: 0; }

/* Category / product teaser cards */
.pj-cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.pj-cat-card {
	background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius);
	padding: 26px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pj-cat-card:hover { transform: translateY(-4px); box-shadow: var(--pj-shadow-md); border-color: #c7dcef; }
.pj-cat-badge {
	width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
	background: var(--pj-blue-pale); color: var(--pj-blue); font-weight: 700; font-size: 17px; margin-bottom: 16px;
}
.pj-cat-card h3 { font-size: 17px; margin: 0 0 8px; font-weight: 600; }
.pj-cat-card p { font-size: 14px; color: var(--pj-text-muted); margin: 0 0 16px; }
.pj-cat-link { font-size: 13.5px; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.pj-cat-link .ti { font-size: 15px; transition: transform .15s ease; }
.pj-cat-card:hover .pj-cat-link .ti { transform: translateX(3px); }

/* Feature grid (icon + title + text) */
.pj-feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.pj-feature { padding: 4px; }
.pj-feature-icon {
	width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
	background: var(--pj-teal-bg); color: var(--pj-teal); font-size: 20px; margin-bottom: 14px;
}
.pj-feature h3 { font-size: 16px; margin: 0 0 8px; font-weight: 600; }
.pj-feature p { font-size: 14px; color: var(--pj-text-muted); margin: 0; }

/* Customer journey roadmap - dark accent section, breaks up the light/light/light run and eases the seam with a soft fade */
.pj-journey-section {
	position: relative;
	background: radial-gradient(900px 420px at 88% 100%, rgba(55,138,221,.22), transparent 60%),
	            radial-gradient(700px 360px at 8% 0%, rgba(15,110,86,.30), transparent 60%),
	            linear-gradient(180deg, var(--pj-navy) 0%, var(--pj-navy-2) 100%);
	overflow: hidden;
}
.pj-journey-section::before,
.pj-journey-section::after {
	content: ""; position: absolute; left: 0; right: 0; height: 100px; pointer-events: none; z-index: 0;
}
.pj-journey-section::before { top: 0; background: linear-gradient(180deg, var(--pj-bg) 0%, rgba(244,247,251,0) 100%); }
.pj-journey-section::after { bottom: 0; background: linear-gradient(0deg, var(--pj-bg) 0%, rgba(244,247,251,0) 100%); }
.pj-journey-section .pj-container { position: relative; z-index: 1; }

.pj-section-head-dark h2 { color: #fff; }
.pj-section-head-dark p { color: #b9cbe0; }

.pj-roadmap {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
	margin: 34px 0 44px;
}
.pj-roadmap-line {
	position: absolute; top: 24px; left: 6%; right: 6%; height: 2px;
	background: linear-gradient(90deg, rgba(255,255,255,.02), rgba(255,255,255,.24) 15%, rgba(255,255,255,.24) 85%, rgba(255,255,255,.02));
}
.pj-roadmap-step {
	position: relative; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
	border-radius: var(--pj-radius); padding: 40px 18px 22px; text-align: center;
	backdrop-filter: blur(6px);
}
.pj-roadmap-step.is-offset { margin-top: 20px; }
.pj-roadmap-num {
	position: absolute; top: 14px; right: 16px; font-size: 12px; font-weight: 700; letter-spacing: .04em;
	color: rgba(255,255,255,.3);
}
.pj-roadmap-node {
	position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
	width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
	font-size: 20px; color: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.3); border: 3px solid var(--pj-navy-2);
}
.pj-roadmap-node.is-blue { background: var(--pj-blue-bright); }
.pj-roadmap-node.is-teal { background: var(--pj-teal-bright); }
.pj-roadmap-step h3 { color: #fff; font-size: 15.5px; margin: 6px 0 8px; font-weight: 600; }
.pj-roadmap-step p { color: #b9cbe0; font-size: 12.5px; margin: 0; line-height: 1.5; }

.pj-roadmap-notes { max-width: 780px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 30px; position: relative; z-index: 1; }
.pj-roadmap-notes div { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: #dbe7f3; }
.pj-roadmap-notes .ti { color: var(--pj-teal-bright); font-size: 16px; }

@media (max-width: 900px) {
	.pj-roadmap { grid-template-columns: 1fr; gap: 30px; margin-top: 24px; }
	.pj-roadmap-line { top: 0; bottom: 0; left: 24px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.24) 10%, rgba(255,255,255,.24) 90%, rgba(255,255,255,.02)); }
	.pj-roadmap-step { padding-left: 60px; text-align: left; }
	.pj-roadmap-step.is-offset { margin-top: 0; }
	.pj-roadmap-node { top: 22px; left: 24px; transform: translate(-50%, -50%); }
	.pj-roadmap-num { top: 16px; right: 16px; }
}

/* Trust / logos strip */
.pj-trust-strip { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; align-items: center; opacity: .75; }
.pj-trust-strip span { font-size: 13.5px; font-weight: 600; color: var(--pj-text-muted); letter-spacing: .02em; }

/* CTA band */
.pj-cta-band {
	background: linear-gradient(120deg, var(--pj-navy), var(--pj-navy-3));
	border-radius: var(--pj-radius); padding: 44px 6%; text-align: center; color: #fff;
}
.pj-cta-band h2 { font-size: 26px; margin: 0 0 12px; font-weight: 600; }
.pj-cta-band p { color: #cbd8e6; margin: 0 0 26px; }

/* ---------- Footer ---------- */
.pj-footer { background: var(--pj-ink); color: #b9c3ce; padding: 56px 0 26px; }
.pj-footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; margin-bottom: 40px; }
.pj-footer-brand p { font-size: 13.5px; color: #8a94a0; max-width: 260px; }
.pj-footer-col h4 { color: #fff; font-size: 13.5px; margin: 0 0 14px; font-weight: 600; }
.pj-footer-col ul { list-style: none; margin: 0; padding: 0; }
.pj-footer-col li { margin-bottom: 9px; }
.pj-footer-col a { color: #b9c3ce; font-size: 13.5px; }
.pj-footer-col a:hover { color: #fff; }
.pj-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; font-size: 12.5px; color: #6f7a86; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- Generic content page ---------- */
.pj-page { padding: 64px 0; }
.pj-page-content { max-width: 780px; margin: 0 auto; background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius); padding: 44px 5%; }
.pj-page-content h1 { font-size: 30px; margin: 0 0 24px; }
.pj-page-content h2 { font-size: 21px; margin: 32px 0 14px; }
.pj-page-content p { color: var(--pj-text); }

/* ---------- Urun arsivi (kategori sayfalari) ---------- */
.pj-btn-block { display: flex; justify-content: center; width: 100%; margin-bottom: 8px; }

.pj-crumbs { font-size: 12.5px; color: #7e9bbb; margin-bottom: 16px; display: flex; gap: 7px; flex-wrap: wrap; }
.pj-crumbs a { color: #7e9bbb; }
.pj-crumbs a:hover { color: #bcd6f2; }
.pj-crumbs span { opacity: .5; }
.pj-crumbs em { font-style: normal; color: #bcd6f2; }

.pj-archive-head {
	background: radial-gradient(900px 420px at 88% -20%, rgba(55,138,221,.30), transparent 60%),
	            linear-gradient(180deg, var(--pj-navy) 0%, var(--pj-navy-2) 100%);
	padding: 34px 0 38px;
}
.pj-archive-head-row { display: flex; gap: 20px; align-items: flex-start; }
.pj-archive-icon {
	width: 58px; height: 58px; border-radius: 14px; flex-shrink: 0;
	background: rgba(55,138,221,.18); border: 1px solid rgba(255,255,255,.14); color: #7fc1ff;
	display: flex; align-items: center; justify-content: center; font-size: 27px;
}
.pj-archive-head-text { min-width: 0; }
.pj-archive-head-text h1 { font-size: 32px; color: #fff; margin: 0 0 8px; font-weight: 600; letter-spacing: -.01em; line-height: 1.2; }
.pj-archive-head-text p { color: #b9cbe0; font-size: 15px; margin: 0; max-width: 640px; line-height: 1.65; }
.pj-archive-meta { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 16px; font-size: 13px; color: #9db4cb; }
.pj-archive-meta .ti { color: var(--pj-teal-bright); font-size: 16px; vertical-align: -3px; margin-right: 4px; }

.pj-cat-switch { background: var(--pj-navy-2); border-top: 1px solid rgba(255,255,255,.07); }
.pj-cat-switch .pj-container { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 13px; padding-bottom: 13px; }
.pj-cat-chip {
	background: rgba(255,255,255,.07); color: #cbd8e6; font-size: 13px;
	padding: 7px 15px; border-radius: 999px; transition: background .15s ease, color .15s ease;
}
.pj-cat-chip:hover { background: rgba(255,255,255,.14); color: #fff; }
.pj-cat-chip.active { background: var(--pj-blue-bright); color: #fff; }

.pj-archive-body { padding: 40px 0 72px; }

.pj-filter-bar {
	background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius-sm);
	padding: 12px 14px; margin-bottom: 22px;
}
.pj-filter-top {
	display: flex; align-items: center; justify-content: space-between;
	gap: 14px; flex-wrap: wrap;
}

/* Arama kutusu */
.pj-filter-search {
	position: relative; flex: 1 1 260px; max-width: 420px;
	display: flex; align-items: center;
}
.pj-filter-search > .ti {
	position: absolute; left: 12px; font-size: 17px; color: var(--pj-text-muted); pointer-events: none;
}
.pj-filter-search input[type="search"] {
	width: 100%; font: inherit; font-size: 14px; color: var(--pj-text);
	background: var(--pj-bg-alt); border: 1px solid var(--pj-border);
	border-radius: 999px; padding: 9px 36px 9px 36px;
	transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
	-webkit-appearance: none; appearance: none;
}
.pj-filter-search input[type="search"]::-webkit-search-cancel-button { display: none; }
.pj-filter-search input[type="search"]::placeholder { color: var(--pj-text-muted); }
.pj-filter-search input[type="search"]:focus {
	outline: none; background: #fff;
	border-color: var(--pj-blue-bright);
	box-shadow: 0 0 0 3px var(--pj-blue-pale);
}
.pj-search-clear {
	position: absolute; right: 6px; display: inline-flex; align-items: center; justify-content: center;
	width: 26px; height: 26px; border: none; border-radius: 50%; cursor: pointer;
	background: transparent; color: var(--pj-text-muted); font-size: 15px;
	transition: background .15s ease, color .15s ease;
}
.pj-search-clear:hover { background: var(--pj-bg-alt); color: var(--pj-text); }

/* Etiket satiri - en fazla iki satir */
.pj-filter-tagline {
	display: flex; align-items: flex-start; gap: 8px; flex-wrap: wrap;
	margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--pj-border);
}
.pj-filter-tags {
	display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
	flex: 1 1 auto; min-width: 0;
}
.pj-filter-tags.is-clamped {
	/* iki satir: (satir yuksekligi 30px x 2) + aradaki 6px bosluk */
	max-height: 66px; overflow: hidden;
}
.pj-filter-label {
	font-size: 12.5px; font-weight: 600; letter-spacing: .3px;
	color: var(--pj-text-muted); white-space: nowrap; padding: 7px 0;
}
.pj-filter-tag {
	border: none; background: transparent; cursor: pointer; font: inherit;
	font-size: 13px; line-height: 18px; color: var(--pj-text-muted);
	padding: 6px 13px; border-radius: 6px;
	transition: background .15s ease, color .15s ease;
}
.pj-filter-tag:hover { background: var(--pj-bg-alt); color: var(--pj-text); }
.pj-filter-tag.active { background: var(--pj-blue-pale); color: var(--pj-blue); font-weight: 600; }
.pj-filter-more {
	border: 1px solid var(--pj-border); background: var(--pj-surface); cursor: pointer;
	font: inherit; font-size: 12.5px; font-weight: 600; color: var(--pj-blue);
	padding: 6px 12px; border-radius: 999px; white-space: nowrap;
	display: inline-flex; align-items: center; gap: 5px; align-self: flex-start;
	transition: background .15s ease, border-color .15s ease;
}
.pj-filter-more:hover { background: var(--pj-blue-pale); border-color: var(--pj-blue-pale); }
.pj-filter-count { font-size: 12.5px; color: var(--pj-text-muted); white-space: nowrap; }

.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}

@media (max-width: 640px) {
	.pj-filter-search { max-width: none; flex: 1 1 100%; }
	.pj-filter-count { width: 100%; }
	.pj-filter-label { width: 100%; padding: 0 0 2px; }
}

.pj-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; align-items: start; }
.pj-product-card {
	background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius);
	overflow: hidden; display: flex; flex-direction: column;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pj-product-card:hover { transform: translateY(-4px); box-shadow: var(--pj-shadow-md); border-color: #c7dcef; }
.pj-product-card.is-featured { border: 2px solid var(--pj-blue-bright); }

.pj-product-thumb {
	display: block; position: relative; background: var(--pj-navy); aspect-ratio: 16 / 10; overflow: hidden;
}
.pj-product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pj-thumb-fallback {
	position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 16px 18px;
	background: radial-gradient(420px 220px at 72% 0%, rgba(55,138,221,.30), transparent 65%),
	            radial-gradient(340px 200px at 10% 100%, rgba(43,207,156,.18), transparent 65%);
}

/* Gorseli olmayan urunler icin cizilmis varsayilan panel gorseli */
.pj-mock { display: block; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13); border-radius: 8px; padding: 9px; }
.pj-mock-top { display: flex; gap: 4px; margin-bottom: 9px; }
.pj-mock-top b { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.22); }
.pj-mock-row { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.pj-mock-row em { height: 6px; width: 46%; border-radius: 3px; background: rgba(255,255,255,.20); }
.pj-mock-row s { height: 6px; width: 22%; border-radius: 3px; background: var(--pj-blue-bright); opacity: .75; }
.pj-mock-cols { display: flex; gap: 5px; }
.pj-mock-cols i { flex: 1; height: 40px; border-radius: 5px; background: rgba(255,255,255,.07); }
.pj-mock-cols i:nth-child(2) { flex: 1.5; background: rgba(55,138,221,.42); }
.pj-mock-cols i:nth-child(3) { background: rgba(43,207,156,.30); }
.pj-mock.is-large { padding: 14px; }
.pj-mock.is-large .pj-mock-cols i { height: 92px; }
.pj-mock.is-large .pj-mock-row em,
.pj-mock.is-large .pj-mock-row s { height: 8px; }

.pj-mock-badge {
	display: flex; align-items: center; gap: 7px; margin-top: 11px;
	font-size: 12.5px; font-weight: 600; color: #cfe2f5;
}
.pj-mock-badge .ti { font-size: 16px; color: var(--pj-teal-bright); flex-shrink: 0; }
.pj-product-flag {
	position: absolute; top: 11px; left: 11px; background: var(--pj-teal-bright); color: #04342c;
	font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 5px;
}

.pj-product-body { padding: 15px 16px 14px; display: flex; flex-direction: column; flex: 1; }
.pj-product-kicker { font-size: 10.5px; color: var(--pj-blue); letter-spacing: .06em; font-weight: 600; margin-bottom: 6px; }
.pj-product-title { font-size: 16.5px; margin: 0 0 6px; font-weight: 600; line-height: 1.3; }
.pj-product-title a { color: var(--pj-ink); }
.pj-product-title a:hover { color: var(--pj-blue); }
.pj-product-desc { font-size: 13px; color: var(--pj-text-muted); margin: 0 0 11px; line-height: 1.5; }
.pj-product-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px; }
.pj-product-tags span { font-size: 11px; color: var(--pj-teal); background: var(--pj-teal-bg); padding: 3px 8px; border-radius: 5px; }

.pj-product-foot {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	border-top: 1px solid var(--pj-border); padding-top: 11px; margin-top: auto;
}
.pj-product-price strong { display: block; font-size: 18px; color: var(--pj-navy); font-weight: 600; line-height: 1.25; }
.pj-product-price strong.pj-price-quote { font-size: 15px; color: var(--pj-blue); }
.pj-product-price span { font-size: 11.5px; color: var(--pj-text-muted); }
.pj-product-cta {
	font-size: 13px; font-weight: 600; background: var(--pj-blue-bright); color: #fff;
	padding: 8px 15px; border-radius: 6px; display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
}
.pj-product-cta:hover { background: #2c78c8; color: #fff; }
.pj-product-cta .ti { font-size: 15px; transition: transform .15s ease; }
.pj-product-card:hover .pj-product-cta .ti { transform: translateX(3px); }

.pj-empty-filter { text-align: center; padding: 48px 0; color: var(--pj-text-muted); }
.pj-empty-filter .ti { font-size: 34px; color: #b9c8d8; }
.pj-empty-state { text-align: center; padding: 56px 24px; background: var(--pj-surface); border: 1px dashed var(--pj-border); border-radius: var(--pj-radius); }
.pj-empty-icon {
	width: 60px; height: 60px; border-radius: 16px; margin: 0 auto 18px;
	background: var(--pj-blue-pale); color: var(--pj-blue); display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.pj-empty-state h2 { font-size: 20px; margin: 0 0 8px; font-weight: 600; }
.pj-empty-state p { color: var(--pj-text-muted); font-size: 14.5px; margin: 0 0 22px; }

.pj-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; }
.pj-pagination .page-numbers {
	min-width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--pj-border); border-radius: 7px; background: var(--pj-surface);
	font-size: 13.5px; color: var(--pj-text); padding: 0 10px;
}
.pj-pagination .page-numbers.current { background: var(--pj-blue-bright); color: #fff; border-color: var(--pj-blue-bright); }
.pj-pagination .page-numbers:hover { border-color: var(--pj-blue); color: var(--pj-blue); }
.pj-pagination .page-numbers.current:hover { color: #fff; }

.pj-archive-cta {
	background: radial-gradient(600px 300px at 80% 0%, rgba(55,138,221,.25), transparent 60%),
	            linear-gradient(120deg, var(--pj-navy), var(--pj-navy-3));
	border-radius: var(--pj-radius); padding: 40px 6%; text-align: center; color: #fff; margin-top: 48px;
}
.pj-archive-cta h2 { font-size: 22px; margin: 0 0 9px; font-weight: 600; color: #fff; }
.pj-archive-cta p { color: #cbd8e6; margin: 0 0 22px; font-size: 14.5px; }

/* ---------- Urun tekil sayfasi ---------- */
.pj-product-hero {
	background: radial-gradient(900px 460px at 85% -10%, rgba(55,138,221,.32), transparent 60%),
	            linear-gradient(180deg, var(--pj-navy) 0%, var(--pj-navy-2) 100%);
	padding: 32px 0 40px;
}
.pj-product-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 44px; align-items: center; }
.pj-product-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.pj-badge { font-size: 12px; padding: 4px 12px; border-radius: 999px; border: 1px solid transparent; }
.pj-badge.is-blue { background: rgba(55,138,221,.2); border-color: rgba(255,255,255,.14); color: #9fc9f0; }
.pj-badge.is-blue:hover { background: rgba(55,138,221,.35); color: #fff; }
.pj-badge.is-teal { background: rgba(43,207,156,.14); border-color: rgba(43,207,156,.3); color: var(--pj-teal-bright); }
.pj-product-hero-text h1 { font-size: 34px; color: #fff; margin: 0 0 10px; font-weight: 600; line-height: 1.18; letter-spacing: -.01em; }
.pj-product-lead { font-size: 16px; color: #b9cbe0; line-height: 1.65; margin: 0 0 18px; max-width: 520px; }
.pj-product-metaline {
	display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; color: #9db4cb;
	padding: 12px 0; border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 20px;
}
.pj-product-metaline strong { color: #fff; font-weight: 600; }
.pj-product-hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

.pj-product-hero-visual {
	background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14);
	border-radius: var(--pj-radius); padding: 12px; box-shadow: var(--pj-shadow-lg);
}
.pj-product-hero-visual img { width: 100%; border-radius: 8px; }
.pj-shot-placeholder {
	border-radius: 8px; padding: 18px;
	background: radial-gradient(420px 220px at 75% 0%, rgba(55,138,221,.26), transparent 65%), var(--pj-navy);
}

.pj-product-subnav { background: var(--pj-navy-2); border-top: 1px solid rgba(255,255,255,.07); position: sticky; top: 0; z-index: 40; }
.pj-product-subnav .pj-container { display: flex; gap: 26px; flex-wrap: wrap; }
.pj-product-subnav a { font-size: 13.5px; color: #9db4cb; padding: 13px 0; border-bottom: 2px solid transparent; }
.pj-product-subnav a:hover { color: #fff; border-bottom-color: var(--pj-blue-bright); }

.pj-product-page-body { padding: 44px 0 72px; }
.pj-product-layout { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); gap: 34px; align-items: start; }
.pj-product-block { margin-bottom: 40px; scroll-margin-top: 70px; }
.pj-product-block h2 { font-size: 22px; margin: 0 0 16px; font-weight: 600; color: var(--pj-ink); }
.pj-prose { font-size: 15px; color: var(--pj-text); line-height: 1.75; }
.pj-prose p { margin: 0 0 14px; }
.pj-prose ul { padding-left: 20px; }
.pj-prose li { margin-bottom: 7px; }

.pj-featgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.pj-featcard { background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius); padding: 18px; }
.pj-featcard-icon {
	width: 38px; height: 38px; border-radius: 10px; background: var(--pj-teal-bg); color: var(--pj-teal);
	display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 12px;
}
.pj-featcard h3 { font-size: 15px; margin: 0 0 6px; font-weight: 600; }
.pj-featcard p { font-size: 13.5px; color: var(--pj-text-muted); margin: 0; line-height: 1.55; }

.pj-shots-stage { background: var(--pj-navy); border-radius: var(--pj-radius); padding: 12px; margin-bottom: 10px; }
.pj-shots-stage img { width: 100%; border-radius: 8px; display: block; }
.pj-shots-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.pj-shot-thumb {
	border: 2px solid transparent; background: var(--pj-navy); border-radius: 8px; padding: 0; cursor: pointer;
	overflow: hidden; width: 92px; height: 62px; opacity: .55; transition: opacity .15s ease, border-color .15s ease;
}
.pj-shot-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pj-shot-thumb:hover { opacity: .85; }
.pj-shot-thumb.active { opacity: 1; border-color: var(--pj-blue-bright); }

.pj-faq { background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius); overflow: hidden; }
.pj-faq details { border-bottom: 1px solid var(--pj-border); }
.pj-faq details:last-child { border-bottom: none; }
.pj-faq summary {
	display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer;
	padding: 15px 18px; font-size: 14.5px; font-weight: 500; color: var(--pj-text); list-style: none;
}
.pj-faq summary::-webkit-details-marker { display: none; }
.pj-faq summary:hover { background: var(--pj-bg-alt); }
.pj-faq summary .ti { color: var(--pj-text-muted); font-size: 18px; transition: transform .2s ease; flex-shrink: 0; }
.pj-faq details[open] summary .ti { transform: rotate(180deg); }
.pj-faq-answer { padding: 0 18px 16px; font-size: 14px; color: var(--pj-text-muted); line-height: 1.7; }

.pj-product-aside { position: sticky; top: 68px; display: flex; flex-direction: column; gap: 14px; }
.pj-pricecard { background: var(--pj-surface); border: 2px solid var(--pj-blue-bright); border-radius: var(--pj-radius); padding: 20px; }
.pj-pricecard-kicker { font-size: 11px; color: var(--pj-blue); letter-spacing: .07em; font-weight: 600; margin-bottom: 9px; }
.pj-pricecard-amount { font-size: 30px; color: var(--pj-navy); font-weight: 600; line-height: 1.15; margin-bottom: 6px; }
.pj-pricecard-amount.is-quote { font-size: 24px; color: var(--pj-blue); }
.pj-pricecard-note { font-size: 13px; color: var(--pj-text-muted); margin: 0 0 16px; line-height: 1.55; }

.pj-speccard { background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius); padding: 18px 20px; }
.pj-speccard h3 { font-size: 15px; margin: 0 0 12px; font-weight: 600; }
.pj-specrow { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; padding: 7px 0; border-bottom: 1px solid #f0f4f8; }
.pj-specrow:last-child { border-bottom: none; }
.pj-specrow span { color: var(--pj-text-muted); }
.pj-specrow strong { color: var(--pj-text); font-weight: 600; text-align: right; }

.pj-supportcard {
	background: radial-gradient(400px 220px at 80% 0%, rgba(43,207,156,.22), transparent 65%),
	            linear-gradient(160deg, var(--pj-navy), var(--pj-navy-2));
	border-radius: var(--pj-radius); padding: 20px; color: #fff;
}
.pj-supportcard-icon {
	width: 38px; height: 38px; border-radius: 10px; background: rgba(43,207,156,.18); color: var(--pj-teal-bright);
	display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 12px;
}
.pj-supportcard h3 { font-size: 15.5px; margin: 0 0 7px; font-weight: 600; color: #fff; }
.pj-supportcard p { font-size: 13px; color: #b9cbe0; margin: 0 0 16px; line-height: 1.55; }

.pj-related { margin-top: 16px; }
.pj-related h2 { font-size: 22px; margin: 0 0 16px; font-weight: 600; }
.pj-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.pj-related-card {
	background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius); padding: 18px;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pj-related-card:hover { transform: translateY(-3px); box-shadow: var(--pj-shadow-md); border-color: #c7dcef; }
.pj-related-kicker { font-size: 11px; color: var(--pj-blue); letter-spacing: .06em; font-weight: 600; }
.pj-related-card h3 { font-size: 15.5px; margin: 7px 0 5px; font-weight: 600; color: var(--pj-ink); }
.pj-related-card p { font-size: 13px; color: var(--pj-text-muted); margin: 0; }

@media (max-width: 900px) {
	.pj-product-hero-grid { grid-template-columns: 1fr; gap: 26px; }
	.pj-product-layout { grid-template-columns: 1fr; }
	.pj-product-aside { position: static; }
	.pj-archive-head-text h1 { font-size: 26px; }
	.pj-product-hero-text h1 { font-size: 27px; }
	.pj-product-subnav { position: static; }
	.pj-product-subnav .pj-container { gap: 16px; overflow-x: auto; }
}

/* ---------- Iletisim sayfasi ---------- */
.pj-contact-hero {
	background: radial-gradient(900px 460px at 85% -20%, rgba(55,138,221,.32), transparent 60%),
	            radial-gradient(600px 320px at 5% 100%, rgba(15,110,86,.28), transparent 62%),
	            linear-gradient(180deg, var(--pj-navy) 0%, var(--pj-navy-2) 100%);
	padding: 52px 0 58px; text-align: center;
}
.pj-contact-hero h1 { font-size: 34px; color: #fff; margin: 0 0 12px; font-weight: 600; letter-spacing: -.01em; }
.pj-contact-hero p { color: #b9cbe0; font-size: 16px; max-width: 620px; margin: 0 auto; line-height: 1.7; }

.pj-contact-body { padding: 48px 0 72px; }
.pj-contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 30px; align-items: start; }

.pj-contact-methods { display: flex; flex-direction: column; gap: 12px; }
.pj-contact-card {
	display: flex; align-items: center; gap: 15px;
	background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius);
	padding: 18px 20px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pj-contact-card:hover { transform: translateY(-3px); box-shadow: var(--pj-shadow-md); border-color: #c7dcef; }
.pj-contact-card.is-whatsapp { border-color: rgba(43,207,156,.55); }
.pj-contact-icon {
	width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
	background: var(--pj-blue-pale); color: var(--pj-blue);
	display: flex; align-items: center; justify-content: center; font-size: 21px;
}
.pj-contact-card.is-whatsapp .pj-contact-icon { background: var(--pj-teal-bg); color: var(--pj-teal); }
.pj-contact-card h3 { font-size: 15.5px; margin: 0 0 3px; font-weight: 600; color: var(--pj-ink); }
.pj-contact-card p { font-size: 12.5px; color: var(--pj-text-muted); margin: 0 0 5px; }
.pj-contact-card strong { display: block; font-size: 14px; color: var(--pj-blue); font-weight: 600; }
.pj-contact-arrow { margin-left: auto; color: var(--pj-text-muted); font-size: 18px; flex-shrink: 0; }

.pj-contact-form-wrap { background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius); padding: 26px; }
.pj-contact-form-wrap h2 { font-size: 20px; margin: 0 0 7px; font-weight: 600; }
.pj-contact-form-lead { font-size: 13.5px; color: var(--pj-text-muted); margin: 0 0 20px; line-height: 1.6; }
.pj-contact-form label { display: block; margin-bottom: 14px; }
.pj-contact-form label span { display: block; font-size: 13px; font-weight: 600; color: var(--pj-text); margin-bottom: 5px; }
.pj-contact-form input,
.pj-contact-form select,
.pj-contact-form textarea {
	width: 100%; border: 1px solid var(--pj-border); border-radius: var(--pj-radius-sm);
	padding: 10px 13px; font: inherit; font-size: 14px; color: var(--pj-text);
	background: #fff; transition: border-color .15s ease, box-shadow .15s ease;
}
.pj-contact-form input:focus,
.pj-contact-form select:focus,
.pj-contact-form textarea:focus {
	outline: none; border-color: var(--pj-blue-bright); box-shadow: 0 0 0 3px rgba(55,138,221,.14);
}
.pj-contact-form textarea { resize: vertical; }
.pj-contact-form button { border: none; cursor: pointer; margin-top: 4px; }
.pj-contact-form-note { font-size: 12px; color: var(--pj-text-muted); margin: 10px 0 0; text-align: center; line-height: 1.55; }

.pj-contact-steps { margin-top: 56px; }
.pj-contact-steps h2 { font-size: 22px; margin: 0 0 20px; font-weight: 600; text-align: center; }
.pj-steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.pj-step { background: var(--pj-surface); border: 1px solid var(--pj-border); border-radius: var(--pj-radius); padding: 20px; }
.pj-step-num { font-size: 12px; font-weight: 700; color: var(--pj-blue-bright); letter-spacing: .05em; }
.pj-step h3 { font-size: 15px; margin: 8px 0 6px; font-weight: 600; }
.pj-step p { font-size: 13px; color: var(--pj-text-muted); margin: 0; line-height: 1.55; }

.pj-contact-extra { margin-top: 44px; max-width: 720px; }

@media (max-width: 900px) {
	.pj-contact-grid { grid-template-columns: 1fr; }
	.pj-contact-hero h1 { font-size: 27px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
	.pj-hero-slide-block { grid-template-columns: 1fr; position: static; opacity: 1 !important; pointer-events: auto !important; display: none; }
	.pj-hero-slide-block.active { display: grid; }
	.pj-hero-slides { min-height: 0; }
	.pj-hero-inner-static { padding-top: 40px; }
	.pj-hero-slide-visual { max-width: 480px; margin: 0 auto; }
	.pj-footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 780px) {
	.pj-nav-toggle { display: block; }
	.pj-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--pj-navy); padding: 10px 5% 20px; }
	.pj-nav.pj-nav-open { display: block; }
	.pj-nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
	.pj-mega { position: static; box-shadow: none; border: none; background: rgba(255,255,255,.04); grid-template-columns: 1fr; margin-top: 6px; }
	.pj-mega-col-title, .pj-mega-col a, .pj-mega-simple-link a { color: #dbe7f3; }
	.pj-hero h1 { font-size: 30px; }
	.pj-footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   URUN SERIDI (ana sayfa) - sagdan sola sonsuz kayan liste
   Kart tasarimi urun kategorisi sayfasindaki kartin sadelestirilmis
   halidir. Ton bilerek acik tutuldu: hero, yolculuk ve CTA
   bolumleri lacivert oldugu icin sayfa tekduze gorunmesin.
   ============================================================ */
.pj-marquee-section {
	position: relative;
	overflow: hidden;
	padding-bottom: 34px;
	background:
		radial-gradient(820px 360px at 10% 0%, rgba(43, 207, 156, .14), transparent 62%),
		radial-gradient(760px 340px at 92% 100%, rgba(55, 138, 221, .12), transparent 60%),
		linear-gradient(180deg, #ffffff 0%, var(--pj-bg) 100%);
	border-top: 1px solid var(--pj-border);
	border-bottom: 1px solid var(--pj-border);
}

.pj-marquee-section .pj-eyebrow { color: var(--pj-teal); }

.pj-marquee {
	margin-top: 20px;
	overflow: hidden;
	padding: 6px 0 12px;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.pj-marquee-track {
	display: flex;
	gap: 20px;
	width: max-content;
	animation: pj-marquee-scroll 52s linear infinite;
}

.pj-marquee:hover .pj-marquee-track { animation-play-state: paused; }

@keyframes pj-marquee-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ---------- Kart ---------- */
.pj-mq-card {
	flex: 0 0 auto;
	width: 300px;
	display: flex;
	flex-direction: column;
	background: var(--pj-surface);
	border: 1px solid var(--pj-border);
	border-radius: var(--pj-radius);
	overflow: hidden;
	text-decoration: none;
	color: var(--pj-text);
	box-shadow: var(--pj-shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pj-mq-card:hover {
	transform: translateY(-4px);
	border-color: var(--pj-blue-bright);
	box-shadow: 0 14px 30px rgba(6, 33, 63, .12);
}

/* Gorsel alani: urun sayfasindaki kartla ayni dil */
.pj-mq-thumb {
	display: block;
	position: relative;
	background: var(--pj-navy);
	aspect-ratio: 16 / 9;
	overflow: hidden;
	padding: 14px 16px;
}

.pj-mq-thumb::before {
	content: "";
	position: absolute; inset: 0;
	background:
		radial-gradient(360px 200px at 74% 0%, rgba(55,138,221,.32), transparent 66%),
		radial-gradient(300px 180px at 8% 100%, rgba(43,207,156,.20), transparent 66%);
}

.pj-mq-thumb img {
	position: absolute; inset: 0;
	width: 100%; height: 100%; object-fit: cover;
}

.pj-mq-thumb .pj-mock { position: relative; z-index: 1; }

.pj-mq-badge {
	position: absolute; right: 12px; bottom: 12px; z-index: 2;
	width: 34px; height: 34px; border-radius: 9px;
	display: grid; place-items: center;
	background: rgba(255,255,255,.14);
	border: 1px solid rgba(255,255,255,.2);
	backdrop-filter: blur(4px);
	color: #fff; font-size: 17px;
}

/* Govde */
.pj-mq-body { display: flex; flex-direction: column; gap: 6px; padding: 16px 18px 18px; flex: 1; }

.pj-mq-kicker {
	font-size: 10.5px; font-weight: 700; letter-spacing: .9px;
	color: var(--pj-text-muted);
}

.pj-mq-title {
	font-size: 16px; font-weight: 600; line-height: 1.3;
	color: var(--pj-ink);
}

.pj-mq-desc {
	font-size: 13px; line-height: 1.5; color: var(--pj-text-muted);
	flex: 1;
}

.pj-mq-foot {
	display: flex; align-items: center; justify-content: space-between;
	gap: 10px; margin-top: 12px; padding-top: 13px;
	border-top: 1px solid var(--pj-border);
}

.pj-mq-price { font-size: 14.5px; font-weight: 700; color: var(--pj-ink); }
.pj-mq-price.is-quote { color: var(--pj-blue); }

.pj-mq-cta {
	display: inline-flex; align-items: center; gap: 5px;
	font-size: 13px; font-weight: 600; color: var(--pj-blue);
	white-space: nowrap;
}

.pj-mq-card:hover .pj-mq-cta i { transform: translateX(3px); }
.pj-mq-cta i { transition: transform .18s ease; }

.pj-marquee-foot { margin-top: 18px; text-align: center; }

@media (max-width: 640px) {
	.pj-mq-card { width: 258px; }
	.pj-mq-body { padding: 14px 15px 16px; }
	.pj-marquee-track { animation-duration: 38s; gap: 14px; }
}

/* Hareketi azaltmayi tercih eden kullanicilar icin animasyonu durdur */
@media (prefers-reduced-motion: reduce) {
	.pj-marquee-track { animation: none; }
	.pj-marquee { overflow-x: auto; }
}

/* Dar ekranlarda bolum bosluklarini daha da sikilastir */
@media (max-width: 640px) {
	.pj-section { padding: 42px 0; }
	.pj-section-head { margin-bottom: 24px; }
	.pj-marquee-section { padding-bottom: 26px; }
	.pj-cta-band { padding: 34px 7%; }
}

/* ---------- Kardes marka bandi ---------- */
.pj-family { background: #041a33; border-bottom: 1px solid rgba(255,255,255,.08); }
.pj-family-inner {
	max-width: var(--pj-container); margin: 0 auto; padding: 7px 5%;
	display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
	font-size: 12.5px; color: #9db4cb;
}
.pj-family-marks { display: inline-flex; align-items: center; gap: 5px; }
.pj-family-pj, .pj-family-tw {
	display: inline-flex; align-items: center; justify-content: center;
	width: 20px; height: 20px; border-radius: 5px;
	font-size: 9.5px; font-weight: 700; color: #fff; letter-spacing: .02em;
}
.pj-family-pj { background: linear-gradient(135deg, var(--pj-blue-bright), var(--pj-teal)); }
.pj-family-tw { background: #1e6fd9; }
.pj-family-plus { color: #52708c; font-size: 11px; }
.pj-family-note { flex: 1 1 auto; min-width: 0; }
.pj-family-link {
	display: inline-flex; align-items: center; gap: 5px;
	color: #7fc1ff; font-weight: 600; white-space: nowrap;
}
.pj-family-link:hover { color: #fff; }
.pj-family-link .ti { font-size: 13px; }

@media (max-width: 640px) {
	.pj-family-inner { font-size: 11.5px; gap: 8px; padding: 6px 5%; }
	.pj-family-note { flex-basis: 100%; order: 3; }
}

/* ---------- Dis hizmet tanitim sayfasi ---------- */
.pj-service { padding: 44px 0 60px; }

.pj-service-choice {
	display: grid; grid-template-columns: 1fr auto 1fr; gap: 20px; align-items: stretch;
}
.pj-choice-card {
	background: var(--pj-surface); border: 1px solid var(--pj-border);
	border-radius: var(--pj-radius); padding: 28px 26px 24px;
	display: flex; flex-direction: column; align-items: flex-start;
	box-shadow: var(--pj-shadow-sm);
}
.pj-choice-icon {
	width: 44px; height: 44px; border-radius: 12px; margin-bottom: 16px;
	display: flex; align-items: center; justify-content: center;
	background: var(--pj-blue-pale); color: var(--pj-blue); font-size: 22px;
}
.pj-choice-icon.is-alt { background: var(--pj-teal-bg); color: var(--pj-teal); }
.pj-choice-card h2 { font-size: 20px; margin: 0 0 8px; font-weight: 600; color: var(--pj-navy); }
.pj-choice-card p { color: var(--pj-text-muted); font-size: 14.5px; margin: 0 0 20px; }
.pj-choice-card .pj-btn { margin-top: auto; }
.pj-choice-card small { color: var(--pj-text-muted); font-size: 12px; margin-top: 10px; }

.pj-choice-or { display: flex; align-items: center; justify-content: center; position: relative; }
.pj-choice-or::before {
	content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--pj-border);
}
.pj-choice-or span {
	position: relative; background: var(--pj-bg); padding: 8px 4px;
	font-size: 12px; color: var(--pj-text-muted);
}

.pj-service-block { margin-top: 44px; }
.pj-service-block h2 { font-size: 22px; font-weight: 600; color: var(--pj-navy); margin: 0 0 18px; }

.pj-service-list {
	list-style: none; margin: 0; padding: 0;
	display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 10px 24px;
}
.pj-service-list li {
	display: flex; align-items: flex-start; gap: 9px;
	font-size: 14.5px; color: var(--pj-text);
}
.pj-service-list .ti { color: var(--pj-teal); font-size: 17px; flex: none; margin-top: 2px; }

.pj-service-steps {
	display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px;
}
.pj-step {
	background: var(--pj-surface); border: 1px solid var(--pj-border);
	border-radius: var(--pj-radius-sm); padding: 20px 18px;
}
.pj-step-no {
	display: inline-block; font-size: 13px; font-weight: 700; color: var(--pj-blue-bright);
	letter-spacing: .05em; margin-bottom: 8px;
}
.pj-step h3 { font-size: 15.5px; margin: 0 0 5px; font-weight: 600; color: var(--pj-navy); }
.pj-step p { font-size: 13.5px; color: var(--pj-text-muted); margin: 0; }

.pj-service-note {
	margin-top: 40px; display: flex; gap: 14px; align-items: flex-start;
	background: var(--pj-bg-alt); border: 1px solid var(--pj-border);
	border-radius: var(--pj-radius-sm); padding: 18px 20px;
}
.pj-service-note .ti { color: var(--pj-blue); font-size: 20px; flex: none; margin-top: 1px; }
.pj-service-note p { margin: 0; font-size: 14px; color: var(--pj-text-muted); line-height: 1.6; }
.pj-service-note strong { color: var(--pj-navy); }

@media (max-width: 820px) {
	.pj-service-choice { grid-template-columns: 1fr; }
	.pj-choice-or::before { top: 50%; bottom: auto; left: 0; right: 0; width: auto; height: 1px; }
	.pj-choice-or span { padding: 4px 12px; }
}

/* Kardes markanin verdigi hizmet kategorisi kartlari */
.pj-cat-card.is-partner { position: relative; }
.pj-cat-partner {
	position: absolute; top: 12px; right: 12px;
	display: inline-flex; align-items: center; gap: 4px;
	font-size: 10.5px; font-weight: 600; letter-spacing: .02em;
	color: var(--pj-blue); background: var(--pj-blue-pale);
	border-radius: 999px; padding: 4px 9px;
}
.pj-cat-partner::before {
	content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--pj-blue-bright);
}
