/* ═══════════════════════════════════════════════════════════════
 * Solveges — Main Stylesheet
 * Tüm sayfa ve block'lar için ortak stiller.
 * Customizer renkleri inline <style id="solveges-vars"> ile head'in
 * sonuna inject edilir; bu dosyadaki :root değerleri default'tur.
 * ═══════════════════════════════════════════════════════════════ */

:root {
	--orange: #FF7824;
	--orange-dark: #e05e0a;
	--navy: #0B1F4B;
	--navy-mid: #162d6b;
	--green: #2DA84F;
	--white: #ffffff;
	--off-white: #F5F6F8;
	--text: #1A1D2E;
	--text-mid: #4A4E6A;
	--text-light: #8A8EA8;
	--border: rgba(0,0,0,0.08);
	--shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
	--shadow-md: 0 8px 32px rgba(0,0,0,0.10);
	--shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
	--radius: 16px;
	--radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Manrope', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: 0.5rem 1rem; z-index: 9999; }

/* ─── NAV ─── */
.site-header nav {
	position: fixed; top: 0; left: 0; right: 0; z-index: 200;
	display: flex; align-items: center; justify-content: space-between;
	padding: 0 5%; height: 84px;
	transition: background 0.3s, box-shadow 0.3s;
}
.site-header nav.scrolled,
body:not(.home) .site-header nav {
	background: rgba(255,255,255,0.97); box-shadow: 0 1px 0 var(--border); backdrop-filter: blur(16px);
}
.site-header .logo,
.site-header .custom-logo-link {
	display: inline-flex; align-items: center;
	font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; color: var(--white);
	transition: color 0.3s; text-decoration: none;
	line-height: 1;
	max-height: 60px;
}
.site-header .logo span { color: var(--orange); }
.site-header nav.scrolled .logo,
body:not(.home) .site-header .logo { color: var(--navy); }

/* Custom logo image — header taşmasın */
.site-header .custom-logo {
	display: block;
	max-height: 52px;
	width: auto;
	height: auto;
	object-fit: contain;
}

/* ─── Logo swap (koyu / açık versiyon) ─── */
/* Default: dark logo görünür, light gizli */
.site-header .custom-logo-dark { display: block; }
.site-header .custom-logo-light { display: none; }

/* Sadece light yüklenmişse hep light göster */
.site-header .logo-only-light .custom-logo-light { display: block; }

/* Anasayfa üstünde (şeffaf nav) ve her ikisi de varsa: light göster, dark gizle */
body.home .site-header nav:not(.scrolled) .logo-has-both .custom-logo-dark { display: none; }
body.home .site-header nav:not(.scrolled) .logo-has-both .custom-logo-light { display: block; }

/* Mobile menu açıkken her sayfada light logo göster */
body.mobile-menu-open .site-header .logo-has-both .custom-logo-dark { display: none !important; }
body.mobile-menu-open .site-header .logo-has-both .custom-logo-light { display: block !important; }

.site-header .nav-links { display: flex; gap: 2.4rem; list-style: none; align-items: center; }
.site-header .nav-links > li { position: relative; padding: 30px 0; }
.site-header .nav-links a {
	text-decoration: none; color: rgba(255,255,255,0.92);
	font-size: 0.92rem; font-weight: 600;
	text-transform: uppercase; letter-spacing: 0.08em;
	transition: color 0.2s;
}
.site-header nav.scrolled .nav-links a,
body:not(.home) .site-header .nav-links a { color: var(--text); }
.site-header .nav-links a:hover { color: var(--orange) !important; }

/* Has-children indicator */
.site-header .nav-links .menu-item-has-children > a::after {
	content: '▾'; font-size: 0.7em; margin-left: 6px;
	display: inline-block; vertical-align: middle;
	transition: transform 0.2s;
}
.site-header .nav-links .menu-item-has-children:hover > a::after { transform: rotate(180deg); }

/* Dropdown (sub-menu) */
.site-header .nav-links .sub-menu {
	position: absolute; top: 100%; left: -1.2rem;
	background: rgba(255,255,255,0.98);
	border: 1px solid var(--border); border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg); min-width: 260px;
	padding: 0.6rem 0; list-style: none; margin: 0;
	opacity: 0; pointer-events: none;
	transform: translateY(-10px); transition: opacity 0.22s ease, transform 0.22s ease;
	z-index: 10;
}
.site-header .nav-links li:hover > .sub-menu,
.site-header .nav-links li:focus-within > .sub-menu {
	opacity: 1; pointer-events: all; transform: translateY(0);
}
.site-header .nav-links .sub-menu li { padding: 0; }
.site-header .nav-links .sub-menu a {
	display: block; padding: 0.7rem 1.4rem;
	color: var(--text-mid) !important;
	font-size: 0.82rem; font-weight: 500;
	text-transform: none; letter-spacing: 0.01em;
}
.site-header .nav-links .sub-menu a:hover {
	color: var(--orange) !important; background: rgba(255,120,36,0.06);
}

.nav-cta {
	background: var(--orange); color: #fff; border: none;
	padding: 0.7rem 1.6rem; border-radius: 50px; font-family: inherit;
	font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
	cursor: pointer; transition: all 0.2s;
	text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,120,36,0.35); }

/* ─── HAMBURGER (mobile only) ─── */
.nav-hamburger {
	display: none;
	width: 44px; height: 44px;
	padding: 10px 8px;
	background: transparent; border: none;
	cursor: pointer;
	flex-direction: column; justify-content: center; align-items: center;
	gap: 5px;
	position: relative; z-index: 1001;
	-webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
	display: block;
	width: 26px; height: 2.5px;
	background: var(--white);
	border-radius: 2px;
	transition: transform 0.32s cubic-bezier(0.65, 0, 0.35, 1),
	            opacity 0.2s ease,
	            background 0.3s ease;
}
.site-header nav.scrolled .nav-hamburger span,
body:not(.home) .site-header .nav-hamburger span { background: var(--navy); }

/* Açık durumda X'e dönüşür */
body.mobile-menu-open .nav-hamburger span { background: #fff !important; }
body.mobile-menu-open .nav-hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
body.mobile-menu-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.mobile-menu-open .nav-hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Body lock when mobile menu open */
body.mobile-menu-open { overflow: hidden; }

/* ─── BUTTONS ─── */
.btn-primary {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--orange); color: #fff; text-decoration: none;
	padding: 0.9rem 2rem; border-radius: 50px; font-size: 0.95rem; font-weight: 700;
	transition: all 0.2s; border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,120,36,0.4); }
.btn-outline {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(255,255,255,0.1); color: #fff; text-decoration: none;
	padding: 0.9rem 2rem; border-radius: 50px; font-size: 0.95rem; font-weight: 600;
	border: 1.5px solid rgba(255,255,255,0.3); transition: all 0.2s; backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }
.btn-outline-w {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(255,255,255,0.1); color: #fff; text-decoration: none;
	padding: 0.9rem 2rem; border-radius: 50px; font-size: 0.95rem; font-weight: 600;
	border: 1.5px solid rgba(255,255,255,0.25); transition: all 0.2s;
}
.btn-outline-w:hover { background: rgba(255,255,255,0.18); }
.btn-green {
	display: block; text-align: center; background: var(--green); color: #fff;
	padding: 0.85rem 1.5rem; border-radius: 50px; font-weight: 700; font-size: 0.9rem;
	text-decoration: none; transition: all 0.2s; border: none; cursor: pointer; font-family: inherit; width: 100%;
}
.btn-green:hover { background: #239c44; box-shadow: 0 6px 20px rgba(45,168,79,0.35); }

/* ─── HERO ─── */
.solveges-hero {
	min-height: 100vh; position: relative;
	display: flex; align-items: center;
	padding: 100px 5% 100px; overflow: hidden;
}
.hero-bg {
	position: absolute; inset: 0;
	background-position: center; background-size: cover; background-repeat: no-repeat;
	animation: heroBgZoom 25s ease-in-out infinite alternate;
}
@keyframes heroBgZoom {
	from { transform: scale(1); }
	to   { transform: scale(1.08); }
}
.hero-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(to right, rgba(10,20,50,0.88) 0%, rgba(10,20,50,0.65) 55%, rgba(10,20,50,0.2) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }

/* Hero text intro animation — stagger fade-up */
.solveges-hero .hero-eyebrow,
.solveges-hero h1,
.solveges-hero .hero-desc,
.solveges-hero .hero-btns { opacity: 0; transform: translateY(28px); animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.solveges-hero .hero-eyebrow { animation-delay: 0.15s; }
.solveges-hero h1            { animation-delay: 0.30s; }
.solveges-hero .hero-desc    { animation-delay: 0.50s; }
.solveges-hero .hero-btns    { animation-delay: 0.65s; }
.solveges-hero .stat-card    { opacity: 0; transform: translateY(18px); animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.solveges-hero .stat-card:nth-child(1) { animation-delay: 0.80s; }
.solveges-hero .stat-card:nth-child(2) { animation-delay: 0.95s; }
.solveges-hero .stat-card:nth-child(3) { animation-delay: 1.10s; }
@keyframes heroFadeUp {
	to { opacity: 1; transform: translateY(0); }
}
.solveges-hero h1 em { display: inline-block; position: relative; }
.solveges-hero h1 em::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 4%;
	height: 0.18em; background: var(--orange); opacity: 0.25;
	transform: scaleX(0); transform-origin: left;
	animation: heroEmUnderline 1s cubic-bezier(0.22, 1, 0.36, 1) 1.05s forwards;
	z-index: -1;
}
@keyframes heroEmUnderline {
	to { transform: scaleX(1); }
}
.hero-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
	backdrop-filter: blur(10px); border-radius: 50px;
	padding: 0.35rem 1rem 0.35rem 0.5rem; margin-bottom: 1.8rem;
	font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.9);
	letter-spacing: 0.04em; text-transform: uppercase;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.solveges-hero h1 {
	font-size: clamp(2.8rem, 5.5vw, 4.8rem); font-weight: 800;
	line-height: 1.05; letter-spacing: -0.03em; color: #fff; margin-bottom: 1.4rem;
}
.solveges-hero h1 em { font-style: normal; color: var(--orange); }
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px; font-weight: 400; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
	position: absolute; bottom: 60px; right: 5%;
	display: flex; flex-direction: column; gap: 12px; z-index: 2;
}
.stat-card {
	background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
	backdrop-filter: blur(16px); border-radius: var(--radius);
	padding: 1rem 1.4rem; min-width: 180px;
}
.stat-num { font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-num .unit { font-size: 1rem; color: var(--orange); }
.stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── SECTION COMMONS ─── */
.solveges-section { padding: 96px 5%; }
.section-eyebrow {
	font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
	text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
h2.solveges-h2,
.solveges-section h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; color: var(--text); }
.section-desc { font-size: 1rem; color: var(--text-mid); line-height: 1.75; margin-top: 12px; max-width: 500px; }
.section-header { margin-bottom: 3.5rem; }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

/* ─── HAKKIMIZDA ─── */
.solveges-about { background: var(--off-white); padding: 96px 5%; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); display: block; }
.about-badge {
	position: absolute; bottom: -24px; right: -24px;
	background: var(--orange); color: #fff; border-radius: var(--radius);
	padding: 1.4rem 1.8rem; min-width: 160px; text-align: center;
	box-shadow: var(--shadow-lg);
}
.about-badge-num { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.about-badge-lbl { font-size: 0.78rem; font-weight: 600; opacity: 0.9; margin-top: 4px; }
.about-content h2 { margin-bottom: 1.2rem; }
.about-content p { font-size: 0.975rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.about-list { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 10px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.about-list li svg { width: 18px; height: 18px; stroke: var(--green); stroke-width: 2.5; fill: none; flex-shrink: 0; }

/* ─── SERVICES ─── */
.solveges-services { background: var(--white); padding: 96px 5%; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
	background: var(--white); border: 1.5px solid var(--border);
	border-radius: var(--radius); padding: 2.2rem 1.8rem;
	cursor: pointer; transition: all 0.3s; position: relative; overflow: hidden;
	text-decoration: none; color: inherit; display: block;
}
.service-card::after {
	content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
	background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.service-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.svc-icon {
	width: 52px; height: 52px; border-radius: 12px;
	background: var(--off-white); display: flex; align-items: center; justify-content: center;
	margin-bottom: 1.4rem; transition: background 0.3s;
}
.service-card:hover .svc-icon { background: rgba(255,120,36,0.1); }
.svc-icon svg { width: 26px; height: 26px; color: var(--orange); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text); }
.service-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }
.svc-arrow {
	display: inline-flex; align-items: center; gap: 6px;
	margin-top: 1.2rem; font-size: 0.82rem; font-weight: 700;
	color: var(--orange); transition: gap 0.2s;
}
.service-card:hover .svc-arrow { gap: 10px; }
.svc-arrow svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.5; fill: none; }

/* ─── SERVICE MODAL ─── */
.modal-overlay {
	position: fixed; inset: 0; background: rgba(0,0,0,0.55);
	z-index: 500; display: flex; align-items: center; justify-content: center;
	opacity: 0; pointer-events: none; transition: opacity 0.25s; backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
	background: #fff; border-radius: var(--radius); max-width: 560px; width: 90%;
	padding: 2.5rem; position: relative; transform: scale(0.95);
	transition: transform 0.25s; box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
	position: absolute; top: 1.2rem; right: 1.2rem; background: var(--off-white);
	border: none; border-radius: 50%; width: 36px; height: 36px; cursor: pointer;
	display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.modal-close:hover { background: #eee; }
.modal-close svg { width: 18px; height: 18px; stroke: var(--text-mid); stroke-width: 2.5; fill: none; }
.modal-icon { width: 60px; height: 60px; border-radius: 14px; background: rgba(255,120,36,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; }
.modal-icon svg { width: 30px; height: 30px; color: var(--orange); }
.modal-box h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.6rem; color: var(--text); }
.modal-box p { color: var(--text-mid); line-height: 1.75; font-size: 0.95rem; margin-bottom: 1rem; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.5rem; }
.modal-tag { background: var(--off-white); padding: 0.3rem 0.8rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600; color: var(--text-mid); }
.modal-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: #fff; padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: background 0.2s; }
.modal-cta:hover { background: var(--orange-dark); }

/* ─── AUDIENCE ─── */
.solveges-audience { background: var(--off-white); padding: 96px 5%; }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 16px; margin-top: 2.5rem; }
.audience-card {
	background: var(--white); border-radius: var(--radius-sm);
	padding: 1.6rem 1.2rem; text-align: center;
	border: 1.5px solid var(--border); transition: all 0.25s;
}
.audience-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.aud-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--off-white); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; transition: background 0.25s; }
.audience-card:hover .aud-icon { background: rgba(255,120,36,0.1); }
.aud-icon svg { width: 22px; height: 22px; stroke: var(--orange); stroke-width: 1.8; fill: none; }
.audience-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.audience-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }

/* ─── CALCULATOR ─── */
.solveges-calculator { background: var(--white); padding: 96px 5%; }
.calc-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.calc-panel { background: var(--off-white); border-radius: var(--radius); padding: 2.5rem; }
.calc-panel h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 2rem; color: var(--text); }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.78rem; font-weight: 700; color: var(--text-mid); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
.form-group select,
.form-group input[type=text] {
	width: 100%; background: var(--white); border: 1.5px solid var(--border);
	border-radius: var(--radius-sm); color: var(--text); padding: 0.75rem 1rem;
	font-family: inherit; font-size: 0.9rem; appearance: none;
	transition: border-color 0.2s;
}
.form-group select:focus { outline: none; border-color: var(--orange); }
.range-row { display: flex; align-items: center; gap: 12px; }
.range-row input[type=range] { flex: 1; accent-color: var(--orange); cursor: pointer; }
.range-display { font-size: 1rem; font-weight: 700; color: var(--orange); min-width: 80px; text-align: right; }
.result-panel { background: var(--navy); border-radius: var(--radius); padding: 2.5rem; color: #fff; position: sticky; top: 90px; }
.result-panel h3 { font-size: 0.78rem; font-weight: 700; margin-bottom: 1.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }
.r-big { font-size: 3rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 4px; }
.r-big-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 1.8rem; }
.r-rows { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.4rem; }
.r-row { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.r-row:last-child { border-bottom: none; }
.r-key { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.r-val { font-size: 0.95rem; font-weight: 700; color: #fff; }
.r-val.accent { color: var(--orange); }
.r-disclaimer { font-size: 0.73rem; color: rgba(255,255,255,0.35); margin-top: 1.4rem; line-height: 1.6; }
.r-cta { margin-top: 1.5rem; }

/* ─── PROJECTS ─── */
.solveges-projects { background: var(--off-white); padding: 96px 5%; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.project-card {
	border-radius: var(--radius); overflow: hidden; cursor: pointer;
	position: relative; aspect-ratio: 4/3; background: var(--navy-mid);
	transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.project-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.project-card:hover img { transform: scale(1.06); }
.project-card.large { grid-column: span 2; aspect-ratio: 16/9; }
.project-info {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(10,20,50,0.9) 0%, transparent 55%);
	display: flex; flex-direction: column; justify-content: flex-end;
	padding: 1.4rem; opacity: 0; transition: opacity 0.3s;
}
.project-card:hover .project-info { opacity: 1; }
.proj-name { font-size: 1.05rem; font-weight: 700; color: #fff; }
.proj-meta { font-size: 0.78rem; color: var(--orange); margin-top: 4px; font-weight: 600; }
.proj-placeholder {
	width: 100%; height: 100%;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 10px; color: var(--text-light); font-size: 0.8rem; text-align: center; padding: 1.5rem;
	background: repeating-linear-gradient(-45deg, rgba(0,0,0,0.02) 0, rgba(0,0,0,0.02) 1px, transparent 1px, transparent 14px);
}
.proj-placeholder svg { width: 36px; height: 36px; stroke: var(--text-light); stroke-width: 1.3; fill: none; opacity: 0.5; }

/* ─── LIGHTBOX ─── */
.lightbox {
	position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 600;
	display: flex; align-items: center; justify-content: center;
	opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close { position: fixed; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,0.15); border: none; color: #fff; border-radius: 50%; width: 44px; height: 44px; cursor: pointer; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-close:hover { background: rgba(255,255,255,0.25); }
.lightbox-meta { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; color: #fff; }
.lightbox-meta strong { display: block; font-size: 1.1rem; }
.lightbox-meta span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

/* ─── WHY US ─── */
.solveges-why { background: var(--navy); padding: 96px 5%; }
.solveges-why .section-eyebrow { color: var(--orange); }
.solveges-why h2 { color: #fff; }
.solveges-why .section-desc { color: rgba(255,255,255,0.55); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 3rem; }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 2rem 1.6rem; transition: background 0.3s; }
.why-card:hover { background: rgba(255,255,255,0.08); }
.why-num { font-size: 0.7rem; font-weight: 700; color: var(--orange); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.2rem; }
.why-card h4 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ─── REGION ─── */
.solveges-region { background: var(--orange); padding: 56px 5%; }
.bolge-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.bolge-inner h3 { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.bolge-inner p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.region-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.region-tag { background: rgba(255,255,255,0.2); color: #fff; padding: 0.4rem 1.1rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; border: 1px solid rgba(255,255,255,0.3); }

/* ─── FOOTER ─── */
.site-footer { background: #060d1f; padding: 56px 5% 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-size: 1.4rem; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -0.02em; display: inline-block; }
.footer-logo span { color: var(--orange); }
.footer-logo-image img {
	display: block; max-height: 56px; width: auto; height: auto;
	object-fit: contain;
}
.footer-about-text { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-col h5 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.78rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 0.5rem; }

/* ─── FLOATING ACTION CLUSTER (Teklif + WhatsApp) ─── */
.solveges-fab {
	position: fixed; bottom: 2rem; right: 2rem; z-index: 300;
	display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
}
.fab-teklif {
	background: var(--orange); color: #fff; border: none;
	padding: 0.85rem 1.5rem; border-radius: 50px;
	font-family: inherit; font-size: 0.85rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.06em;
	cursor: pointer; box-shadow: 0 6px 24px rgba(255,120,36,0.4);
	transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
	white-space: nowrap; display: inline-flex; align-items: center; gap: 8px;
	animation: fabPulse 2.4s ease-in-out infinite;
}
.fab-teklif:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,120,36,0.55); animation: none; }
.fab-teklif svg { width: 16px; height: 16px; }
@keyframes fabPulse {
	0%, 100% { box-shadow: 0 6px 24px rgba(255,120,36,0.4); }
	50%      { box-shadow: 0 6px 28px rgba(255,120,36,0.65), 0 0 0 8px rgba(255,120,36,0.08); }
}
.wa-btn {
	width: 56px; height: 56px; border-radius: 50%; background: #25D366;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.wa-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ─── BÖLGESEL VERİLER BLOCK ─── */
.bv-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.bv-card {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: var(--radius);
	padding: 2rem 1.5rem;
	text-align: center;
	transition: background 0.3s, transform 0.3s;
}
.bv-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.bv-value {
	font-size: 2.4rem; font-weight: 800; color: var(--orange);
	line-height: 1; margin-bottom: 0.5rem;
}
.bv-unit {
	display: block; font-size: 0.78rem; font-weight: 600;
	color: rgba(255,255,255,0.55); margin-top: 6px;
	text-transform: uppercase; letter-spacing: 0.06em;
}
.bv-label {
	font-size: 0.875rem; font-weight: 600;
	color: rgba(255,255,255,0.8); line-height: 1.4;
}

/* ─── FAQ BLOCK ─── */
.solveges-faq { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
	background: var(--off-white);
	border: 1.5px solid var(--border);
	border-radius: var(--radius-sm);
	overflow: hidden;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: rgba(255,120,36,0.3); }
.faq-item[open] { border-color: var(--orange); box-shadow: var(--shadow-sm); background: #fff; }
.faq-question {
	display: flex; align-items: center; justify-content: space-between;
	gap: 1rem; padding: 1.2rem 1.5rem;
	font-weight: 700; font-size: 1rem; color: var(--text);
	cursor: pointer; list-style: none; user-select: none;
	transition: color 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--orange); }
.faq-chev {
	width: 18px; height: 18px; flex-shrink: 0;
	transition: transform 0.25s ease;
}
.faq-item[open] .faq-chev { transform: rotate(180deg); color: var(--orange); }
.faq-answer {
	padding: 0 1.5rem 1.4rem;
	color: var(--text-mid); line-height: 1.75; font-size: 0.95rem;
}
.faq-answer p { margin-bottom: 0.6rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ─── İÇERİK GRID BLOCK (hizmet single + reusable) ─── */
.solveges-icerik-grid { padding: 96px 5%; background: var(--white); }
.solveges-icerik-grid.bg-off-white { background: var(--off-white); }
.icerik-grid-wrap {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: 4rem; align-items: center;
	max-width: 1280px; margin: 0 auto;
}
.icerik-grid-wrap.image-right .icerik-grid-image { order: 2; }
.icerik-grid-wrap.image-right .icerik-grid-content { order: 1; }
.icerik-grid-image img {
	width: 100%; height: 480px; object-fit: cover;
	border-radius: var(--radius); display: block;
}
.icerik-grid-image-placeholder {
	width: 100%; height: 480px; border-radius: var(--radius);
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
	display: flex; align-items: center; justify-content: center;
	color: rgba(255,255,255,0.3); font-size: 0.85rem;
}
.icerik-grid-content h2 { margin-bottom: 1.2rem; }
.icerik-grid-content p { color: var(--text-mid); line-height: 1.8; font-size: 0.975rem; margin-bottom: 1rem; }
.icerik-grid-content .check-list { margin: 1.5rem 0 2rem; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ─── TEKLIF MODAL ─── */
#teklif-modal {
	position: fixed; inset: 0; background: rgba(0,0,0,0.6);
	z-index: 700; display: flex; align-items: center; justify-content: center;
	opacity: 0; pointer-events: none; transition: opacity 0.25s; backdrop-filter: blur(6px);
}
#teklif-modal.open { opacity: 1; pointer-events: all; }
.teklif-box {
	background: #fff; border-radius: var(--radius); max-width: 540px; width: 92%;
	max-height: 90vh; overflow-y: auto; position: relative;
	transform: translateY(20px); transition: transform 0.25s; box-shadow: var(--shadow-lg);
}
#teklif-modal.open .teklif-box { transform: translateY(0); }
.teklif-head {
	padding: 2rem 2rem 1.5rem; border-bottom: 1px solid var(--border);
	display: flex; justify-content: space-between; align-items: flex-start;
}
.teklif-head h3 { font-size: 1.3rem; font-weight: 800; color: var(--text); }
.teklif-head p { font-size: 0.85rem; color: var(--text-mid); margin-top: 4px; }
.teklif-close {
	background: var(--off-white); border: none; border-radius: 50%;
	width: 36px; height: 36px; cursor: pointer; flex-shrink: 0; margin-left: 1rem;
	display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.teklif-close:hover { background: #e8e8e8; }
.teklif-close svg { width: 16px; height: 16px; stroke: var(--text-mid); stroke-width: 2.5; fill: none; }
.teklif-body { padding: 1.5rem 2rem 2rem; }
.tf-group { margin-bottom: 1.2rem; }
.tf-group label {
	display: block; font-size: 0.75rem; font-weight: 700; color: var(--text-mid);
	letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px;
}
.tf-group label .req { color: var(--orange); margin-left: 2px; }
.tf-group input, .tf-group select, .tf-group textarea {
	width: 100%; background: var(--off-white); border: 1.5px solid var(--border);
	border-radius: var(--radius-sm); color: var(--text); padding: 0.75rem 1rem;
	font-family: inherit; font-size: 0.9rem; transition: border-color 0.2s; appearance: none;
}
.tf-group input:focus, .tf-group select:focus, .tf-group textarea:focus {
	outline: none; border-color: var(--orange); background: #fff;
}
.tf-group input.error, .tf-group select.error { border-color: #e53e3e; }
.tf-group .err-msg { font-size: 0.75rem; color: #e53e3e; margin-top: 4px; display: none; }
.tf-group .err-msg.show { display: block; }
.tf-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tf-honeypot { position: absolute; left: -9999px; top: -9999px; }
.teklif-submit {
	width: 100%; background: var(--orange); color: #fff; border: none;
	border-radius: 50px; padding: 1rem; font-family: inherit;
	font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.2s;
	margin-top: 0.5rem;
}
.teklif-submit:hover:not(:disabled) { background: var(--orange-dark); }
.teklif-submit:disabled { opacity: 0.6; cursor: wait; }
.teklif-success {
	display: none; flex-direction: column; align-items: center; justify-content: center;
	padding: 3rem 2rem; text-align: center; min-height: 300px;
}
.teklif-success.show { display: flex; }
.teklif-body.hide { display: none; }
.success-icon {
	width: 72px; height: 72px; border-radius: 50%; background: var(--green);
	display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem;
	animation: scaleIn 0.4s ease;
}
@keyframes scaleIn { from { transform: scale(0); } to { transform: scale(1); } }
.success-icon svg { width: 36px; height: 36px; stroke: #fff; stroke-width: 2.5; fill: none; }
.teklif-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 0.6rem; }
.teklif-success p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
 * SINGLE / SERVICE PAGES
 * ═══════════════════════════════════════════════════════════════ */

.page-hero { padding: 140px 5% 80px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-position: center; background-size: cover; opacity: 0.12; }
.breadcrumb { position: relative; z-index: 2; display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 { position: relative; z-index: 2; font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 1.2rem; }
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero p { position: relative; z-index: 2; font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.75; max-width: 580px; margin-bottom: 2rem; }
.page-hero .hero-actions { position: relative; z-index: 2; display: flex; gap: 1rem; flex-wrap: wrap; }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.intro-img img { width: 100%; border-radius: var(--radius); height: 420px; object-fit: cover; }
.intro-content h2 { margin-bottom: 1.2rem; }
.intro-content p { color: var(--text-mid); line-height: 1.8; font-size: 0.975rem; margin-bottom: 1rem; }
.check-list { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 12px; padding: 0; }
.check-list li {
	display: flex; align-items: flex-start; gap: 12px;
	font-size: 0.95rem; color: var(--text); line-height: 1.55;
	padding: 4px 0;
}
.check-list li > span { flex: 1; }
.check-list li > svg {
	width: 22px; height: 22px;
	stroke: var(--green); stroke-width: 2.5; fill: none;
	flex-shrink: 0; margin-top: 1px;
	background: rgba(45,168,79,0.1); border-radius: 50%;
	padding: 3px;
}

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 3rem; }
.step-card { background: #fff; border-radius: var(--radius); padding: 2rem 1.6rem; border: 1.5px solid var(--border); position: relative; }
.step-num { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.step-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.6rem; }
.step-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }
.step-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,120,36,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.step-icon svg { width: 22px; height: 22px; stroke: var(--orange); stroke-width: 1.8; fill: none; }

.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2.5rem; }
.type-card { background: var(--off-white); border-radius: var(--radius); padding: 2rem; border: 1.5px solid transparent; transition: all 0.25s; }
.type-card:hover { border-color: var(--orange); background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.type-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--text); }
.type-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }
.type-range { font-size: 0.78rem; font-weight: 700; color: var(--orange); margin-top: 0.8rem; }

.locations-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 2.5rem; }
.location-card { background: var(--off-white); border-radius: var(--radius); padding: 2rem; text-decoration: none; border: 1.5px solid transparent; transition: all 0.25s; display: block; color: inherit; }
.location-card:hover { border-color: var(--orange); background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.loc-icon { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,120,36,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.loc-icon svg { width: 22px; height: 22px; stroke: var(--orange); stroke-width: 1.8; fill: none; }
.location-card h4 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.location-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.55; }
.loc-arrow { display: inline-flex; align-items: center; gap: 6px; margin-top: 1rem; font-size: 0.8rem; font-weight: 700; color: var(--orange); }
.loc-arrow svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2.5; fill: none; }

.cta-band { background: var(--navy); padding: 80px 5%; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; max-width: 500px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── İLETİŞİM BLOCK ─── */
.solveges-iletisim { background: var(--off-white); }
.iletisim-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 2.5rem; }
.iletisim-card {
	background: var(--white); border-radius: var(--radius);
	padding: 2rem 1.6rem; text-decoration: none; color: inherit;
	border: 1.5px solid var(--border); transition: all 0.25s; display: block;
}
.iletisim-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.iletisim-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(255,120,36,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; color: var(--orange); }
.iletisim-icon svg { width: 22px; height: 22px; }
.iletisim-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
.iletisim-value { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; word-break: break-word; }
.iletisim-desc { font-size: 0.78rem; color: var(--text-mid); line-height: 1.5; }

/* ─── BLOG ─── */
.blog-hero { padding: 140px 5% 60px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.blog-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.025em; }
.blog-hero p { color: rgba(255,255,255,0.7); margin-top: 1rem; max-width: 580px; line-height: 1.7; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 2rem; }
.blog-card {
	background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius);
	overflow: hidden; transition: all 0.25s; display: flex; flex-direction: column;
	text-decoration: none; color: inherit;
}
.blog-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card .thumb { aspect-ratio: 16/9; background: var(--off-white); overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card .content { padding: 1.6rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .meta { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.4; color: var(--text); margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; flex: 1; }
.blog-card .read-more { margin-top: 1rem; font-size: 0.82rem; font-weight: 700; color: var(--orange); display: inline-flex; align-items: center; gap: 6px; }

/* Single blog */
.single-post-hero { padding: 140px 5% 40px; background: var(--off-white); }
.single-post-hero .breadcrumb a { color: var(--text-mid); }
.single-post-hero .breadcrumb span { color: var(--text-light); }
.single-post-hero h1 { color: var(--text); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; margin: 1rem 0; }
.single-post-meta { font-size: 0.85rem; color: var(--text-mid); display: flex; gap: 1rem; flex-wrap: wrap; }
.single-post-thumb { aspect-ratio: 16/9; overflow: hidden; border-radius: var(--radius); margin: 2rem 0; }
.single-post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.single-post-content { max-width: 760px; margin: 0 auto; padding: 0 5% 4rem; }
.single-post-content p { font-size: 1.05rem; line-height: 1.8; color: var(--text); margin-bottom: 1.4rem; }
.single-post-content h2 { font-size: 1.6rem; font-weight: 800; margin: 2rem 0 1rem; color: var(--text); }
.single-post-content h3 { font-size: 1.25rem; font-weight: 700; margin: 1.5rem 0 0.8rem; color: var(--text); }
.single-post-content ul, .single-post-content ol { margin: 0 0 1.4rem 1.4rem; }
.single-post-content li { line-height: 1.8; color: var(--text-mid); }
.single-post-content blockquote { border-left: 4px solid var(--orange); padding: 0.5rem 0 0.5rem 1.4rem; margin: 1.6rem 0; font-style: italic; color: var(--text-mid); }
.single-post-content img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 1rem 0; }

/* ─── COMMENTS ─── */
.comments-area { max-width: 760px; margin: 0 auto; padding: 0 5%; }
.comments-area > h3 {
	font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text);
	margin-bottom: 1.5rem;
	padding-bottom: 0.8rem;
	border-bottom: 1.5px solid var(--border);
}
.comments-area .comment-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.comments-area .comment-list > li { margin-bottom: 1.2rem; }
.comments-area .comment-body {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.4rem 1.5rem;
	position: relative;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.comments-area .comment-body:hover { border-color: rgba(255,120,36,0.3); box-shadow: var(--shadow-sm); }
.comments-area .comment-author {
	display: flex; align-items: center; gap: 12px; margin-bottom: 0.8rem;
}
.comments-area .comment-author img,
.comments-area .comment-author .avatar {
	border-radius: 50%; flex-shrink: 0;
}
.comments-area .comment-author .fn {
	font-weight: 700; font-size: 0.95rem; color: var(--text); font-style: normal;
}
.comments-area .comment-author .says { display: none; }
.comments-area .comment-metadata {
	margin-left: auto;
	font-size: 0.78rem; color: var(--text-light);
}
.comments-area .comment-metadata a {
	color: var(--text-light); text-decoration: none;
}
.comments-area .comment-metadata a:hover { color: var(--orange); }
.comments-area .comment-content {
	font-size: 0.92rem; line-height: 1.7; color: var(--text-mid);
}
.comments-area .comment-content p { margin-bottom: 0.8rem; }
.comments-area .comment-content p:last-child { margin-bottom: 0; }
.comments-area .reply { margin-top: 1rem; }
.comments-area .comment-reply-link {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 0.75rem; font-weight: 700;
	color: var(--orange); text-decoration: none;
	text-transform: uppercase; letter-spacing: 0.06em;
	transition: color 0.2s;
}
.comments-area .comment-reply-link:hover { color: var(--orange-dark); }
.comments-area .comment-reply-link::before { content: '↩'; font-size: 1rem; }
.comments-area .children {
	list-style: none; padding-left: 2.4rem; margin-top: 1.2rem;
}
.comments-area .children > li { margin-bottom: 1rem; }
.comments-area .pingback,
.comments-area .trackback {
	font-size: 0.85rem; color: var(--text-mid); padding: 0.8rem 1rem;
	background: var(--off-white); border-radius: var(--radius-sm);
}
.comments-area .comment-navigation {
	margin: 1.5rem 0; display: flex; justify-content: space-between;
}

/* Comment form */
.comments-area .comment-respond {
	margin-top: 2rem;
	background: var(--off-white);
	border-radius: var(--radius);
	padding: 2rem 1.8rem;
}
.comments-area .comment-reply-title {
	font-size: 1.2rem; font-weight: 800; color: var(--text);
	margin-bottom: 0.4rem;
}
.comments-area .comment-reply-title small a {
	font-size: 0.75rem; font-weight: 600; color: var(--text-light);
	margin-left: 8px; text-decoration: none;
}
.comments-area .comment-reply-title small a:hover { color: var(--orange); }
.comments-area .comment-notes {
	font-size: 0.82rem; color: var(--text-mid); margin-bottom: 1.2rem;
}
.comments-area .comment-form { display: grid; gap: 1rem; }
.comments-area .comment-form-author,
.comments-area .comment-form-email,
.comments-area .comment-form-url,
.comments-area .comment-form-comment { margin: 0; }
.comments-area .comment-form-author,
.comments-area .comment-form-email { display: inline-block; width: calc(50% - 0.5rem); }
.comments-area .comment-form-author { margin-right: 1rem; }
.comments-area .comment-form label {
	display: block;
	font-size: 0.72rem; font-weight: 700;
	color: var(--text-mid);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.comments-area .comment-form label .required { color: var(--orange); margin-left: 2px; }
.comments-area .comment-form input[type="text"],
.comments-area .comment-form input[type="email"],
.comments-area .comment-form input[type="url"],
.comments-area .comment-form textarea {
	width: 100%; padding: 0.75rem 1rem;
	border: 1.5px solid var(--border);
	border-radius: var(--radius-sm);
	background: var(--white);
	font-family: inherit; font-size: 0.92rem;
	color: var(--text);
	transition: border-color 0.2s, background 0.2s;
}
.comments-area .comment-form input:focus,
.comments-area .comment-form textarea:focus {
	outline: none; border-color: var(--orange);
}
.comments-area .comment-form textarea { min-height: 140px; resize: vertical; }
.comments-area .comment-form-cookies-consent {
	display: flex; align-items: flex-start; gap: 8px;
	font-size: 0.82rem; color: var(--text-mid);
}
.comments-area .comment-form-cookies-consent input { margin-top: 4px; flex-shrink: 0; accent-color: var(--orange); }
.comments-area .comment-form .form-submit {
	margin-top: 0.6rem;
}
.comments-area .comment-form .form-submit input[type="submit"],
.comments-area .comment-form .submit {
	display: inline-flex; align-items: center; gap: 8px;
	background: var(--orange); color: #fff !important; border: none;
	padding: 0.9rem 2rem; border-radius: 50px;
	font-size: 0.9rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: 0.06em;
	cursor: pointer; font-family: inherit;
	transition: all 0.2s;
}
.comments-area .comment-form .form-submit input[type="submit"]:hover,
.comments-area .comment-form .submit:hover {
	background: var(--orange-dark);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(255,120,36,0.4);
}
.comments-area .no-comments,
.comments-area .nocomments {
	font-size: 0.9rem; color: var(--text-mid);
	padding: 1rem 0; text-align: center;
}
.comments-area .logged-in-as {
	font-size: 0.85rem; color: var(--text-mid); margin-bottom: 1rem;
}
.comments-area .logged-in-as a { color: var(--orange); text-decoration: none; }

@media (max-width: 600px) {
	.comments-area .comment-form-author,
	.comments-area .comment-form-email { display: block; width: 100%; margin-right: 0; }
	.comments-area .children { padding-left: 1rem; }
	.comments-area .comment-author { flex-wrap: wrap; }
	.comments-area .comment-metadata { margin-left: 0; flex-basis: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
 * RESPONSIVE
 * ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
	.solveges-hero { padding: 100px 5% 48px; align-items: flex-start; flex-direction: column; justify-content: flex-end; min-height: 100svh; }
	.hero-content { max-width: 100%; }
	.hero-stats { position: relative; bottom: auto; right: auto; flex-direction: row; flex-wrap: wrap; gap: 10px; margin-top: 2rem; }
	.stat-card { min-width: 120px; flex: 1; padding: 0.85rem 1rem; }
	.stat-num { font-size: 1.5rem; }
	.services-grid, .why-grid { grid-template-columns: 1fr 1fr; }
	.projects-grid { grid-template-columns: 1fr 1fr; }
	.project-card.large { grid-column: span 2; }
	.calc-wrapper { grid-template-columns: 1fr; }
	.result-panel { position: static; }
	.footer-grid { grid-template-columns: 1fr; }
	.site-header .nav-links { display: none; }
	.about-grid { grid-template-columns: 1fr; gap: 3rem; }
	.about-img-wrap img { height: 300px; }
	.about-badge { right: 16px; bottom: -16px; }
	.tf-row2 { grid-template-columns: 1fr; }
	.teklif-box { max-height: 95vh; }
	.intro-grid { grid-template-columns: 1fr; }
	.steps-grid, .types-grid, .locations-grid { grid-template-columns: 1fr 1fr; }
	.iletisim-grid { grid-template-columns: 1fr 1fr; }
	.blog-grid { grid-template-columns: 1fr 1fr; }
	.icerik-grid-wrap { grid-template-columns: 1fr; gap: 2rem; }
	.icerik-grid-wrap.image-right .icerik-grid-image { order: 0; }
	.icerik-grid-wrap.image-right .icerik-grid-content { order: 1; }
	.icerik-grid-image img, .icerik-grid-image-placeholder { height: 320px; }
	.bv-grid { grid-template-columns: 1fr 1fr; }

	/* Header — mobile */
	.site-header nav { padding: 0 5%; height: 72px; }
	.site-header .nav-cta { display: none; }
	.site-header .nav-links { display: none; }
	.nav-hamburger { display: flex; }

	/* Mobile menu açık iken — full screen overlay */
	body.mobile-menu-open .site-header nav {
		background: var(--navy) !important; box-shadow: none !important;
	}
	body.mobile-menu-open .site-header .logo,
	body.mobile-menu-open .site-header .custom-logo-link { color: #fff !important; }
	body.mobile-menu-open .site-header .nav-links {
		display: flex !important; flex-direction: column;
		position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
		height: calc(100vh - 72px);
		height: calc(100dvh - 72px);
		width: 100%;
		background: var(--navy);
		padding: 2rem 1.5rem 3rem;
		margin: 0; list-style: none;
		gap: 0; z-index: 999;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		animation: mobileMenuFadeIn 0.3s ease;
	}
	body.mobile-menu-open .site-header .nav-links > li {
		padding: 0;
		border-bottom: 1px solid rgba(255,255,255,0.08);
	}
	body.mobile-menu-open .site-header .nav-links > li:last-child {
		border-bottom: none;
	}
	body.mobile-menu-open .site-header .nav-links > li > a {
		display: block;
		padding: 1.1rem 0.4rem !important;
		color: #fff !important;
		font-size: 1.05rem !important;
		font-weight: 600;
		text-transform: uppercase;
		letter-spacing: 0.06em;
	}
	body.mobile-menu-open .site-header .nav-links .menu-item-has-children > a::after { display: none; }

	/* Sub-menu — inline, dark altyapı uyumlu */
	body.mobile-menu-open .site-header .nav-links .sub-menu {
		position: static !important;
		display: block !important;
		background: transparent !important;
		border: none !important;
		box-shadow: none !important;
		padding: 0 0 0.8rem 0.4rem !important;
		margin: -0.4rem 0 0 !important;
		min-width: 0 !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		transform: none !important;
	}
	body.mobile-menu-open .site-header .nav-links .sub-menu li { padding: 0; }
	body.mobile-menu-open .site-header .nav-links .sub-menu a {
		display: block;
		padding: 0.55rem 0.4rem !important;
		color: rgba(255,255,255,0.62) !important;
		font-size: 0.85rem !important;
		font-weight: 500 !important;
		text-transform: none !important;
		letter-spacing: 0 !important;
		border: none;
	}
	body.mobile-menu-open .site-header .nav-links .sub-menu a:hover {
		color: var(--orange) !important;
		background: transparent !important;
	}

	@keyframes mobileMenuFadeIn {
		from { opacity: 0; transform: translateY(-8px); }
		to   { opacity: 1; transform: translateY(0); }
	}
}
@media (max-width: 600px) {
	.solveges-hero { padding: 88px 5% 40px; }
	.solveges-hero h1 { font-size: 2.6rem; }
	.hero-btns { flex-direction: column; }
	.hero-btns .btn-primary, .hero-btns .btn-outline { justify-content: center; }
	.hero-stats { gap: 8px; }
	.stat-card { min-width: 100px; }
	.services-grid, .why-grid, .projects-grid { grid-template-columns: 1fr; }
	.project-card.large { grid-column: span 1; }
	.solveges-section, .solveges-services, .solveges-audience, .solveges-calculator,
	.solveges-projects, .solveges-why, .solveges-about { padding: 64px 5%; }
	.steps-grid, .types-grid, .locations-grid { grid-template-columns: 1fr; }
	.iletisim-grid { grid-template-columns: 1fr; }
	.blog-grid { grid-template-columns: 1fr; }
	.bv-grid { grid-template-columns: 1fr; }
}
