/* İkinci El Kameram — Profesyonel tasarım v2 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
	--iek-font: 'Inter', system-ui, -apple-system, sans-serif;
	--iek-bg: #ffffff;
	--iek-surface: #f8fafc;
	--iek-surface-2: #f1f5f9;
	--iek-text: #0f172a;
	--iek-text-muted: #64748b;
	--iek-border: #e2e8f0;
	--iek-accent: #1d4ed8;
	--iek-accent-dark: #1e3a8a;
	--iek-accent-soft: #eff6ff;
	--iek-wa: #25d366;
	--iek-wa-dark: #1da851;
	--iek-wa-soft: #e8faf0;
	--iek-sell: #ea580c;
	--iek-sell-dark: #c2410c;
	--iek-sell-soft: #fff7ed;
	--iek-header: #0f172a;
	--iek-radius: 10px;
	--iek-radius-lg: 16px;
	--iek-shadow: 0 1px 3px rgba(15,23,42,.06);
	--iek-shadow-md: 0 8px 24px rgba(15,23,42,.08);
	--iek-max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { overflow-x: hidden; }

body.iek-body,
.iek-body {
	font-family: var(--iek-font);
	color: var(--iek-text);
	background: var(--iek-bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.iek-menu-open { overflow: hidden; }

/* Storefront gizle */
#masthead, .site-header, .storefront-primary-navigation,
.storefront-breadcrumb, .site-footer, .storefront-handheld-footer-bar,
.hentry .entry-header, .content-area .page-header {
	display: none !important;
}

.site-content, .col-full { margin: 0 !important; padding: 0 !important; max-width: 100% !important; width: 100% !important; }
.site-main { margin: 0 !important; }

.iek-wrap { max-width: var(--iek-max); margin: 0 auto; padding: 0 24px; }

/* ── HEADER ── */
.iek-header { position: sticky; top: 0; z-index: 200; }

.iek-header__top {
	background: var(--iek-header);
	color: #94a3b8;
	font-size: .78rem;
	border-bottom: 1px solid #1e293b;
}
.iek-header__top-inner {
	display: flex; justify-content: space-between; align-items: center;
	padding: 8px 24px;
}
.iek-header__top-link { color: #e2e8f0; text-decoration: none; font-weight: 500; }
.iek-header__top-link:hover { color: #fff; }

.iek-header__main {
	background: #fff;
	border-bottom: 1px solid var(--iek-border);
	box-shadow: var(--iek-shadow);
}
.iek-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: 16px 24px; gap: 32px;
}

.iek-logo {
	display: flex; align-items: center; gap: 12px;
	text-decoration: none; color: var(--iek-text);
}
.iek-logo__icon {
	width: 40px; height: 40px; border-radius: 10px;
	background: var(--iek-accent); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 1.1rem;
}
.iek-logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.iek-logo__text strong { font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; }
.iek-logo__text small { font-size: .72rem; color: var(--iek-text-muted); font-weight: 500; }
.iek-logo img { max-height: 44px; width: auto; }

.iek-nav__list {
	display: flex; align-items: center; gap: 4px;
	list-style: none; margin: 0; padding: 0;
}
.iek-nav__list a {
	display: block; padding: 8px 14px;
	font-size: .88rem; font-weight: 500;
	color: var(--iek-text); text-decoration: none;
	border-radius: 8px; transition: background .15s, color .15s;
}
.iek-nav__list a:hover { background: var(--iek-surface); color: var(--iek-accent); }
.iek-nav__cta {
	background: var(--iek-accent) !important;
	color: #fff !important;
}
.iek-nav__cta:hover { background: var(--iek-accent-dark) !important; color: #fff !important; }

.iek-menu-toggle {
	display: none; flex-direction: column; gap: 5px;
	background: none; border: none; cursor: pointer; padding: 8px;
}
.iek-menu-toggle span {
	display: block; width: 22px; height: 2px;
	background: var(--iek-text); border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}
.iek-menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.iek-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.iek-menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.iek-hero {
	background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #1d4ed8 100%);
	color: #fff; padding: 64px 0 72px;
}
.iek-hero__grid {
	display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center;
}
.iek-hero__eyebrow {
	display: inline-block; font-size: .78rem; font-weight: 600;
	text-transform: uppercase; letter-spacing: .08em;
	color: #93c5fd; margin-bottom: 16px;
}
.iek-hero h1 {
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 700; line-height: 1.1; margin: 0 0 20px;
	letter-spacing: -.03em;
}
.iek-hero__content p {
	font-size: 1.05rem; color: #cbd5e1; margin: 0 0 32px; max-width: 520px;
}
.iek-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.iek-hero__panel {
	display: grid; gap: 12px;
}
.iek-stat-card {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--iek-radius);
	padding: 20px 24px;
	backdrop-filter: blur(8px);
}
.iek-stat-card strong { display: block; font-size: 1.75rem; font-weight: 700; }
.iek-stat-card span { font-size: .85rem; color: #94a3b8; }

/* ── TRUST BAR ── */
.iek-trust-bar {
	background: var(--iek-surface);
	border-bottom: 1px solid var(--iek-border);
	padding: 16px 0;
}
.iek-trust-bar__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
	font-size: .85rem; color: var(--iek-text-muted);
}
.iek-trust-bar__grid strong { color: var(--iek-accent); margin-right: 6px; }

/* ── BUTTONS ── */
.iek-btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 12px 24px; border-radius: var(--iek-radius);
	font-weight: 600; font-size: .92rem; text-decoration: none;
	border: 2px solid transparent; cursor: pointer;
	transition: all .15s ease;
}
.iek-btn--primary { background: var(--iek-accent); color: #fff; }
.iek-btn--primary:hover { background: var(--iek-accent-dark); color: #fff; }
.iek-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.iek-btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; }
.iek-btn--outline { background: #fff; color: var(--iek-accent); border-color: var(--iek-border); }
.iek-btn--outline:hover { border-color: var(--iek-accent); background: var(--iek-accent-soft); }
.iek-btn--white { background: #fff; color: var(--iek-accent-dark); }
.iek-btn--white:hover { background: var(--iek-accent-soft); }
.iek-btn--whatsapp {
	background: var(--iek-wa); color: #fff; gap: 10px;
	box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.iek-btn--whatsapp:hover { background: var(--iek-wa-dark); color: #fff; }
.iek-btn--lg { padding: 16px 32px; font-size: 1rem; }
.iek-btn--ghost-wa { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.iek-btn--ghost-wa:hover { background: rgba(255,255,255,.12); color: #fff; }
.iek-icon-wa { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.iek-nav__sell { color: var(--iek-sell) !important; font-weight: 600 !important; }
.iek-nav__sell:hover { background: var(--iek-sell-soft) !important; color: var(--iek-sell-dark) !important; }
.iek-nav__cta--wa { background: var(--iek-wa) !important; }
.iek-nav__cta--wa:hover { background: var(--iek-wa-dark) !important; }
.iek-btn--sell {
	background: var(--iek-sell); color: #fff; gap: 10px;
	box-shadow: 0 4px 14px rgba(234,88,12,.3);
}
.iek-btn--sell:hover { background: var(--iek-sell-dark); color: #fff; }
.iek-btn--outline-sell { background: #fff; color: var(--iek-sell); border: 2px solid var(--iek-sell); }
.iek-btn--outline-sell:hover { background: var(--iek-sell-soft); color: var(--iek-sell-dark); }
.iek-btn--outline-sell-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.iek-btn--outline-sell-light:hover { background: rgba(255,255,255,.12); color: #fff; }
.iek-header__top-link--wa { color: #86efac !important; }
.iek-header__top-link--wa:hover { color: #fff !important; }

/* ── SECTIONS ── */
.iek-section { padding: 64px 0; }
.iek-section--alt { background: var(--iek-surface); }
.iek-section-head { margin-bottom: 36px; }
.iek-section-head h2 {
	font-size: 1.65rem; font-weight: 700; margin: 0 0 8px;
	letter-spacing: -.02em;
}
.iek-section-head p { margin: 0; color: var(--iek-text-muted); font-size: .95rem; }
.iek-section-foot { text-align: center; margin-top: 32px; }
.iek-section-head--center { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── BRAND GRID ── */
.iek-brand-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.iek-brand-card {
	display: flex; flex-direction: column; gap: 6px;
	padding: 24px 20px; background: #fff;
	border: 1px solid var(--iek-border); border-radius: var(--iek-radius-lg);
	text-decoration: none; color: var(--iek-text);
	transition: border-color .15s, box-shadow .15s, transform .15s;
}
.iek-brand-card strong { font-size: 1.1rem; font-weight: 700; }
.iek-brand-card span { font-size: .8rem; color: var(--iek-text-muted); }
.iek-brand-card:hover {
	border-color: var(--iek-accent);
	box-shadow: var(--iek-shadow-md);
	transform: translateY(-2px);
}

/* ── CATEGORY MODEL GROUPS ── */
.iek-brand-group { margin-bottom: 40px; }
.iek-brand-group:last-child { margin-bottom: 0; }
.iek-brand-group__head {
	display: flex; align-items: baseline; justify-content: space-between;
	gap: 16px; margin-bottom: 16px; padding-bottom: 12px;
	border-bottom: 1px solid var(--iek-border);
}
.iek-brand-group__head h3 {
	margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--iek-text);
}
.iek-brand-group__head a {
	font-size: .85rem; font-weight: 600; color: var(--iek-accent);
	text-decoration: none; white-space: nowrap;
}
.iek-brand-group__head a:hover { color: var(--iek-accent-dark); }

/* ── MODEL GRID ── */
.iek-model-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.iek-model-card {
	display: flex; flex-direction: column; gap: 4px;
	padding: 20px; background: #fff;
	border: 1px solid var(--iek-border); border-radius: var(--iek-radius);
	text-decoration: none; color: var(--iek-text);
	transition: all .15s ease;
}
.iek-model-card__brand {
	font-size: .7rem; font-weight: 700; text-transform: uppercase;
	letter-spacing: .06em; color: var(--iek-accent);
}
.iek-model-card__name { font-size: .95rem; font-weight: 600; line-height: 1.3; }
.iek-model-card__tag { font-size: .78rem; color: var(--iek-text-muted); }
.iek-model-card__link { font-size: .8rem; font-weight: 600; color: var(--iek-accent); margin-top: 8px; }
.iek-model-card:hover {
	border-color: var(--iek-accent);
	box-shadow: var(--iek-shadow-md);
	transform: translateY(-2px);
}

/* ── FEATURES ── */
.iek-features {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.iek-feature {
	padding: 28px 24px; background: #fff;
	border: 1px solid var(--iek-border); border-radius: var(--iek-radius-lg);
}
.iek-feature__icon {
	font-size: .75rem; font-weight: 700; color: var(--iek-accent);
	margin-bottom: 12px; letter-spacing: .05em;
}
.iek-feature h3 { font-size: 1rem; margin: 0 0 8px; font-weight: 600; }
.iek-feature p { font-size: .88rem; color: var(--iek-text-muted); margin: 0; line-height: 1.55; }

/* ── CTA BAND ── */
.iek-cta-band {
	background: var(--iek-accent);
	color: #fff; padding: 48px 0;
}
.iek-cta-band--whatsapp {
	background: linear-gradient(135deg, #128c7e 0%, #25d366 55%, #1da851 100%);
}
.iek-cta-band__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 32px; flex-wrap: wrap;
}
.iek-cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.iek-cta-band__badge {
	display: inline-block; font-size: .72rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: .08em;
	background: rgba(255,255,255,.2); padding: 4px 10px;
	border-radius: 20px; margin-bottom: 10px;
}
.iek-cta-band h2 { margin: 0 0 8px; font-size: 1.5rem; font-weight: 700; }
.iek-cta-band p { margin: 0; color: rgba(255,255,255,.85); font-size: .95rem; }
.iek-cta-band--whatsapp p { color: rgba(255,255,255,.9); }

/* ── PAGE HERO (inner) ── */
.iek-page-hero {
	background: var(--iek-header);
	color: #fff; padding: 32px 0 40px;
}
.iek-page-hero h1 {
	margin: 12px 0 0; font-size: clamp(1.5rem, 3vw, 2.1rem);
	font-weight: 700; letter-spacing: -.02em;
}
.iek-breadcrumb { font-size: .8rem; color: #94a3b8; padding: 0; }
.iek-breadcrumb a { color: #cbd5e1; text-decoration: none; }
.iek-breadcrumb a:hover { color: #fff; }
.iek-breadcrumb .rank-math-breadcrumb { font-size: inherit; color: inherit; }
.iek-breadcrumb .rank-math-breadcrumb a { color: #cbd5e1; }
.iek-breadcrumb .rank-math-breadcrumb a:hover { color: #fff; }

/* ── PROSE (content) ── */
.iek-prose, .iek-seo-content {
	font-size: .95rem; line-height: 1.75; color: var(--iek-text-muted);
}
.iek-prose h2, .iek-seo-content h2 {
	font-size: 1.35rem; font-weight: 700; color: var(--iek-text);
	margin: 36px 0 12px; padding-bottom: 8px;
	border-bottom: 2px solid var(--iek-accent-soft);
}
.iek-prose h2:first-child, .iek-seo-content h2:first-child { margin-top: 0; }
.iek-prose h3, .iek-seo-content h3 { font-size: 1.1rem; color: var(--iek-text); margin: 24px 0 8px; }
.iek-prose p, .iek-seo-content p { margin: 0 0 16px; }
.iek-prose a, .iek-seo-content a { color: var(--iek-accent); font-weight: 500; }
.iek-prose a:hover, .iek-seo-content a:hover { color: var(--iek-accent-dark); }
.iek-prose ul, .iek-seo-content ul { padding-left: 1.25rem; margin: 0 0 16px; }
.iek-prose .iek-lead, .iek-lead {
	font-size: 1.05rem; color: var(--iek-text); line-height: 1.7;
	padding: 20px 24px; background: var(--iek-accent-soft);
	border-left: 4px solid var(--iek-accent); border-radius: 0 var(--iek-radius) var(--iek-radius) 0;
	margin-bottom: 28px;
}

/* FAQ */
.iek-prose details, .iek-faq-item, .iek-faq details {
	border: 1px solid var(--iek-border); border-radius: var(--iek-radius);
	margin-bottom: 8px; background: #fff; overflow: hidden;
}
.iek-prose summary, .iek-faq-item summary, .iek-faq summary {
	padding: 16px 20px; font-weight: 600; font-size: .92rem;
	color: var(--iek-text); cursor: pointer; list-style: none;
}
.iek-prose summary::-webkit-details-marker, .iek-faq summary::-webkit-details-marker { display: none; }
.iek-prose details[open] summary, .iek-faq details[open] summary {
	border-bottom: 1px solid var(--iek-border); background: var(--iek-surface);
}
.iek-prose details p, .iek-faq-item p, .iek-faq__answer {
	padding: 16px 20px; margin: 0; font-size: .9rem;
	color: var(--iek-text-muted); line-height: 1.65;
}

/* ── CONTACT / WHATSAPP ── */
.iek-contact-hub { max-width: 720px; margin: 0 auto; }
.iek-contact-hub__main {
	display: flex; align-items: center; gap: 20px;
	padding: 28px 32px; background: var(--iek-wa-soft);
	border: 2px solid var(--iek-wa); border-radius: var(--iek-radius-lg);
	text-decoration: none; color: var(--iek-text);
	transition: box-shadow .15s, transform .15s;
	margin-bottom: 20px;
}
.iek-contact-hub__main:hover {
	box-shadow: 0 12px 32px rgba(37,211,102,.2);
	transform: translateY(-2px);
}
.iek-contact-hub__icon {
	width: 52px; height: 52px; border-radius: 14px;
	display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.iek-contact-hub__icon svg { width: 26px; height: 26px; fill: currentColor; }
.iek-contact-hub__icon--wa { background: var(--iek-wa); color: #fff; }
.iek-contact-hub__icon--phone { background: var(--iek-accent-soft); color: var(--iek-accent); }
.iek-contact-hub__icon--clock { background: #fef3c7; color: #d97706; }
.iek-contact-hub__icon--chat { background: #ede9fe; color: #7c3aed; }
.iek-contact-hub__body { flex: 1; min-width: 0; }
.iek-contact-hub__label {
	display: inline-block; font-size: .7rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: .06em;
	color: var(--iek-wa-dark); margin-bottom: 4px;
}
.iek-contact-hub__body strong { display: block; font-size: 1.15rem; margin-bottom: 4px; }
.iek-contact-hub__body p { margin: 0; font-size: .88rem; color: var(--iek-text-muted); }
.iek-contact-hub__arrow { font-size: 1.5rem; color: var(--iek-wa); font-weight: 700; }
.iek-contact-cards {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.iek-contact-card {
	display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
	padding: 24px; background: #fff;
	border-radius: var(--iek-radius-lg); border: 1px solid var(--iek-border);
	text-decoration: none; color: var(--iek-text);
	transition: border-color .15s, box-shadow .15s;
}
a.iek-contact-card:hover { border-color: var(--iek-wa); box-shadow: var(--iek-shadow-md); }
.iek-contact-card strong { font-size: .95rem; }
.iek-contact-card span { font-size: .88rem; color: var(--iek-text-muted); }
.iek-contact-card--phone .iek-contact-hub__icon { width: 44px; height: 44px; }
.iek-contact-card--info .iek-contact-hub__icon { width: 44px; height: 44px; }
.iek-contact-example {
	max-width: 560px; margin: 48px auto 0; text-align: center;
}
.iek-contact-example h3 { margin: 0 0 16px; font-size: 1rem; color: var(--iek-text-muted); }
.iek-contact-example blockquote {
	margin: 0 0 24px; padding: 20px 24px;
	background: var(--iek-surface); border-left: 4px solid var(--iek-wa);
	border-radius: 0 var(--iek-radius) var(--iek-radius) 0;
	font-size: .92rem; color: var(--iek-text); line-height: 1.65; text-align: left;
}

/* Floating WhatsApp */
.iek-wa-float {
	position: fixed; bottom: 24px; right: 24px; z-index: 300;
	display: flex; align-items: center; gap: 10px;
	padding: 14px 20px 14px 16px;
	background: var(--iek-wa); color: #fff;
	border-radius: 50px; text-decoration: none; font-weight: 600; font-size: .9rem;
	box-shadow: 0 6px 24px rgba(37,211,102,.45);
	transition: background .15s, transform .15s, box-shadow .15s;
}
.iek-wa-float:hover { background: var(--iek-wa-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.iek-wa-float svg { width: 24px; height: 24px; fill: #fff; flex-shrink: 0; }

/* ── SELL / ALIM ── */
.iek-cta-band--sell {
	background: linear-gradient(135deg, #9a3412 0%, #ea580c 55%, #c2410c 100%);
}
.iek-cta-band__badge--sell { background: rgba(255,255,255,.22); }
.iek-sell-banner {
	background: linear-gradient(135deg, #7c2d12 0%, #ea580c 50%, #fb923c 100%);
	color: #fff; padding: 40px 0;
}
.iek-sell-banner__grid {
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px; flex-wrap: wrap;
}
.iek-sell-banner__tag {
	display: inline-block; font-size: .72rem; font-weight: 700;
	text-transform: uppercase; letter-spacing: .08em;
	background: rgba(255,255,255,.18); padding: 4px 10px;
	border-radius: 20px; margin-bottom: 10px;
}
.iek-sell-banner h2 { margin: 0 0 10px; font-size: 1.5rem; font-weight: 700; }
.iek-sell-banner p { margin: 0; color: rgba(255,255,255,.9); font-size: .95rem; max-width: 520px; }
.iek-sell-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.iek-sell-intro {
	text-align: center; max-width: 640px; margin: 0 auto;
}
.iek-sell-intro p {
	font-size: 1.05rem; color: var(--iek-text-muted); margin: 0 0 24px; line-height: 1.7;
}
.iek-sell-steps {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.iek-sell-step {
	padding: 24px 20px; background: #fff;
	border: 1px solid var(--iek-border); border-radius: var(--iek-radius-lg);
}
.iek-sell-step__num {
	display: inline-block; font-size: .72rem; font-weight: 700;
	color: var(--iek-sell); letter-spacing: .06em; margin-bottom: 10px;
}
.iek-sell-step h3 { margin: 0 0 8px; font-size: 1rem; font-weight: 600; }
.iek-sell-step p { margin: 0; font-size: .88rem; color: var(--iek-text-muted); line-height: 1.55; }
.iek-brand-card--sell:hover { border-color: var(--iek-sell); }
.iek-sell-checks__list {
	list-style: none; margin: 0 0 28px; padding: 0;
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
.iek-sell-checks__list li {
	padding: 14px 18px; background: #fff;
	border: 1px solid var(--iek-border); border-radius: var(--iek-radius);
	font-size: .9rem; font-weight: 500;
}
.iek-sell-checks__list li::before { content: '✓ '; color: var(--iek-sell); font-weight: 700; }
.iek-sell-example blockquote {
	margin: 0; padding: 20px 24px; background: var(--iek-sell-soft);
	border-left: 4px solid var(--iek-sell); border-radius: 0 var(--iek-radius) var(--iek-radius) 0;
	font-size: .9rem; line-height: 1.7; white-space: pre-line; color: var(--iek-text);
}
.iek-sell-example h3 { margin: 0 0 12px; font-size: 1rem; }

/* ── FOOTER ── */
.iek-footer {
	background: var(--iek-header); color: #94a3b8;
	padding: 56px 0 0; margin-top: 0;
}
.iek-footer__grid {
	display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
	padding-bottom: 40px;
}
.iek-footer h4 {
	color: #f1f5f9; font-size: .85rem; font-weight: 600;
	text-transform: uppercase; letter-spacing: .06em; margin: 0 0 16px;
}
.iek-footer ul { list-style: none; margin: 0; padding: 0; }
.iek-footer a { color: #94a3b8; text-decoration: none; font-size: .88rem; line-height: 2.2; }
.iek-footer a:hover { color: #fff; }
.iek-footer__brand p { font-size: .88rem; line-height: 1.6; margin: 16px 0 0; max-width: 280px; }
.iek-logo--footer .iek-logo__text strong { color: #fff; }
.iek-footer__bottom {
	border-top: 1px solid #1e293b; padding: 20px 0; text-align: center;
}
.iek-footer__bottom p { margin: 0; font-size: .8rem; color: #64748b; }
.iek-footer__contact { margin-top: 20px; }
.iek-footer__wa {
	display: inline-flex; align-items: center; gap: 10px;
	padding: 10px 16px; background: rgba(37,211,102,.15);
	border: 1px solid rgba(37,211,102,.35); border-radius: var(--iek-radius);
	color: #86efac !important; font-weight: 600; font-size: .9rem !important;
	text-decoration: none; line-height: 1.4 !important;
}
.iek-footer__wa:hover { background: rgba(37,211,102,.25); color: #fff !important; }
.iek-footer__wa svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
	.iek-hero__grid { grid-template-columns: 1fr; gap: 32px; }
	.iek-hero__panel { grid-template-columns: repeat(3, 1fr); display: grid; }
	.iek-brand-grid, .iek-model-grid { grid-template-columns: repeat(2, 1fr); }
	.iek-features { grid-template-columns: repeat(2, 1fr); }
	.iek-sell-steps { grid-template-columns: repeat(2, 1fr); }
	.iek-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
	.iek-wrap { padding: 0 16px; }

	/* Header */
	.iek-header__top-inner {
		padding: 8px 16px; justify-content: center;
	}
	.iek-header__top-inner > span { display: none; }
	.iek-header__top-link { font-size: .82rem; white-space: nowrap; }
	.iek-header__inner { padding: 12px 16px; gap: 12px; }
	.iek-logo__text small { display: none; }
	.iek-logo__text strong { font-size: .95rem; }
	.iek-menu-toggle { display: flex; margin-left: auto; flex-shrink: 0; }
	.iek-header__main { position: relative; }
	.iek-nav {
		display: none; position: absolute; top: 100%; left: 0; right: 0;
		background: #fff; border-bottom: 1px solid var(--iek-border);
		box-shadow: var(--iek-shadow-md);
		padding: 8px 16px 16px;
		max-height: calc(100vh - 120px); overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.iek-nav.is-open { display: block; }
	.iek-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
	.iek-nav__list a {
		padding: 12px 14px; font-size: .92rem;
		min-height: 44px; display: flex; align-items: center;
	}
	.iek-nav__list li + li a { border-top: 1px solid var(--iek-surface-2); }
	.iek-nav__cta { margin-top: 6px; justify-content: center; text-align: center; }

	/* Hero */
	.iek-hero { padding: 40px 0 44px; }
	.iek-hero h1 { font-size: clamp(1.65rem, 7vw, 2.25rem); }
	.iek-hero__content p { font-size: .95rem; margin-bottom: 24px; max-width: none; }
	.iek-hero__actions { flex-direction: column; width: 100%; }
	.iek-hero__actions .iek-btn { width: 100%; justify-content: center; }
	.iek-hero__panel { grid-template-columns: repeat(3, 1fr); gap: 8px; }
	.iek-stat-card { padding: 14px 12px; text-align: center; }
	.iek-stat-card strong { font-size: 1.35rem; }
	.iek-stat-card span { font-size: .72rem; line-height: 1.3; }

	/* Sections */
	.iek-section { padding: 40px 0; }
	.iek-section-head { margin-bottom: 24px; }
	.iek-section-head h2 { font-size: 1.35rem; }
	.iek-page-hero { padding: 24px 0 28px; }
	.iek-page-hero h1 { font-size: clamp(1.25rem, 5.5vw, 1.75rem); }
	.iek-breadcrumb {
		overflow-x: auto; -webkit-overflow-scrolling: touch;
		white-space: nowrap; padding-bottom: 4px;
		scrollbar-width: none;
	}
	.iek-breadcrumb::-webkit-scrollbar { display: none; }

	/* Grids */
	.iek-brand-grid, .iek-model-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.iek-brand-card { padding: 18px 14px; }
	.iek-brand-card strong { font-size: 1rem; }
	.iek-model-card { padding: 16px 14px; }
	.iek-brand-group__head { flex-wrap: wrap; gap: 8px; }
	.iek-brand-group { margin-bottom: 28px; }
	.iek-features { grid-template-columns: 1fr; gap: 12px; }
	.iek-feature { padding: 20px 18px; }
	.iek-trust-bar { padding: 12px 0; }
	.iek-trust-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; font-size: .8rem; }

	/* CTA */
	.iek-cta-band { padding: 32px 0; }
	.iek-cta-band__inner { flex-direction: column; text-align: center; align-items: stretch; gap: 20px; }
	.iek-cta-band h2 { font-size: 1.25rem; }
	.iek-cta-band__actions { flex-direction: column; width: 100%; }
	.iek-cta-band__actions .iek-btn { width: 100%; justify-content: center; }

	/* Contact */
	.iek-contact-cards { grid-template-columns: 1fr; gap: 12px; }
	.iek-contact-hub__main { padding: 20px; gap: 14px; }
	.iek-contact-hub__arrow { display: none; }
	.iek-contact-hub__body strong { font-size: 1.05rem; }
	.iek-contact-card { padding: 18px; }
	.iek-contact-example { margin-top: 32px; }
	.iek-contact-example .iek-btn { width: 100%; }

	/* Sell */
	.iek-sell-banner__grid { flex-direction: column; align-items: stretch; text-align: center; }
	.iek-sell-banner__actions { flex-direction: column; width: 100%; }
	.iek-sell-banner__actions .iek-btn { width: 100%; justify-content: center; }
	.iek-sell-intro .iek-btn { width: 100%; }
	.iek-sell-steps { grid-template-columns: 1fr; gap: 12px; }
	.iek-sell-checks__list { grid-template-columns: 1fr; }
	.iek-cta-band--sell .iek-cta-band__actions { flex-direction: column; width: 100%; }
	.iek-cta-band--sell .iek-cta-band__actions .iek-btn { width: 100%; }

	/* Prose */
	.iek-prose h2, .iek-seo-content h2 { font-size: 1.2rem; margin-top: 28px; }
	.iek-prose .iek-lead, .iek-lead { padding: 16px; font-size: .95rem; }

	/* Footer */
	.iek-footer { padding-top: 40px; }
	.iek-footer__grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
	.iek-footer__brand p { max-width: none; }
	.iek-footer__wa { width: 100%; justify-content: center; }
	.iek-footer__bottom { padding: 16px 0 88px; }

	/* WhatsApp float + sayfa alt boşluğu */
	.iek-wa-float span { display: none; }
	.iek-wa-float {
		bottom: max(16px, env(safe-area-inset-bottom));
		right: max(16px, env(safe-area-inset-right));
		padding: 14px; border-radius: 50%;
		width: 56px; height: 56px; justify-content: center;
	}
	.iek-homepage, .iek-page { padding-bottom: 16px; }
}

@media (max-width: 480px) {
	.iek-hero__eyebrow { font-size: .7rem; margin-bottom: 12px; }
	.iek-trust-bar__grid { grid-template-columns: 1fr 1fr; }
	.iek-brand-grid, .iek-model-grid { gap: 10px; }
	.iek-model-card__name { font-size: .88rem; }
	.iek-btn { padding: 12px 18px; font-size: .88rem; }
	.iek-btn--lg { padding: 14px 20px; font-size: .92rem; }
}

@media (max-width: 360px) {
	.iek-logo__icon { width: 36px; height: 36px; font-size: 1rem; }
	.iek-hero__panel { grid-template-columns: 1fr; }
	.iek-brand-grid, .iek-model-grid { grid-template-columns: 1fr; }
}
