/* ==========================================================================
   ELL Landing v2 — mobil öncelikli
   ========================================================================== */

.ell {
	--ell-deep: #060D1C;
	--ell-navy: #0A162C;
	--ell-card-d: #0E1E39;
	--ell-blue: #2E7DF7;
	--ell-blue-2: #4D9BFF;
	--ell-blue-soft: rgba(46, 125, 247, .12);
	--ell-bg: #FFFFFF;
	--ell-bg-2: #F6F9FD;
	--ell-ink: #0F1D33;
	--ell-muted: #64748B;
	--ell-line: #E6EDF7;
	--ell-line-d: rgba(255, 255, 255, .10);
	--ell-wa: #25D366;
	--ell-r: 14px;
	--ell-pad: 20px;

	--ell-fd: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--ell-fb: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	font-family: var(--ell-fb);
	color: var(--ell-ink);
	font-size: 16px;
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
	background: var(--ell-bg);
}

.ell--gf- { --ell-fd: inherit; --ell-fb: inherit; }

.ell *, .ell *::before, .ell *::after { box-sizing: border-box; }
.ell img { max-width: 100%; height: auto; display: block; }
.ell ul, .ell ol { list-style: none; margin: 0; padding: 0; }
.ell p { margin: 0 0 1em; }
.ell p:last-child { margin-bottom: 0; }

.ell-wrap {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: var(--ell-pad);
}

.ell-sec { padding-block: 56px; position: relative; }
.ell-sec--light { background: var(--ell-bg); }
.ell-sec--soft { background: var(--ell-bg-2); }
.ell-sec--dark { background: var(--ell-navy); color: #fff; }

.ell-sr {
	position: absolute !important;
	width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Tipografi ---------- */
.ell-h1 {
	font-family: var(--ell-fd);
	font-size: clamp(30px, 8vw, 54px);
	line-height: 1.14;
	font-weight: 800;
	letter-spacing: -.025em;
	margin: 0 0 16px;
	color: #fff;
}

.ell-h1 em { font-style: normal; color: var(--ell-blue-2); }

.ell-h2 {
	font-family: var(--ell-fd);
	font-size: clamp(24px, 5.6vw, 36px);
	line-height: 1.24;
	font-weight: 800;
	letter-spacing: -.02em;
	margin: 0;
	color: var(--ell-ink);
}

.ell-sec--dark .ell-h2 { color: #fff; }

.ell-eyebrow {
	font-family: var(--ell-fd);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ell-blue);
	margin: 0 0 10px;
}

.ell-sec--dark .ell-eyebrow { color: var(--ell-blue-2); }

.ell-head { text-align: center; margin-bottom: 34px; }

.ell-head::after {
	content: "";
	display: block;
	width: 52px; height: 3px;
	margin: 16px auto 0;
	border-radius: 3px;
	background: var(--ell-blue);
}

.ell-lead {
	font-size: clamp(15px, 4vw, 17px);
	color: rgba(255, 255, 255, .74);
	max-width: 50ch;
	margin: 0 0 26px;
}

.ell-p { color: var(--ell-muted); }

/* ---------- Butonlar ---------- */
.ell-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 52px;
	padding: 14px 26px;
	border: 0;
	border-radius: 999px;
	font-family: var(--ell-fd);
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
	-webkit-tap-highlight-color: transparent;
}

.ell-btn--primary {
	background: var(--ell-blue);
	color: #fff;
	box-shadow: 0 10px 26px rgba(46, 125, 247, .34);
}

.ell-btn--outline {
	background: transparent;
	color: #fff;
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .34);
}

.ell-btn--outline-ink {
	background: #fff;
	color: var(--ell-ink);
	box-shadow: inset 0 0 0 1.5px var(--ell-line);
}

.ell-btn--wa { background: var(--ell-wa); color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, .3); }
.ell-btn--block { width: 100%; }

@media (hover: hover) {
	.ell-btn--primary:hover { background: #1F6BE0; transform: translateY(-2px); }
	.ell-btn--outline:hover { background: rgba(255, 255, 255, .1); }
	.ell-btn--outline-ink:hover { border-color: var(--ell-blue); color: var(--ell-blue); box-shadow: inset 0 0 0 1.5px var(--ell-blue); }
	.ell-btn--wa:hover { transform: translateY(-2px); }
}

.ell-btn:active { transform: scale(.98); }
.ell-btn:focus-visible { outline: 3px solid var(--ell-blue-2); outline-offset: 3px; }

.ell-arw { width: 15px; height: 15px; flex: none; }

.ell-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.ell-btns .ell-btn { flex: 1 1 auto; min-width: 160px; }

/* ==========================================================================
   1 · HERO
   ========================================================================== */
.ell-hero {
	position: relative;
	background: var(--ell-deep);
	color: #fff;
	padding-block: 44px 52px;
	overflow: hidden;
	isolation: isolate;
}

.ell-hero__bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(90% 60% at 78% 12%, rgba(46, 125, 247, .28) 0%, transparent 62%),
		radial-gradient(70% 50% at 0% 100%, rgba(46, 125, 247, .14) 0%, transparent 60%),
		linear-gradient(180deg, #060D1C 0%, #0A1730 100%);
}

.ell-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .5;
	background-image:
		radial-gradient(1.2px 1.2px at 20% 30%, rgba(255,255,255,.5) 50%, transparent 51%),
		radial-gradient(1px 1px at 68% 18%, rgba(255,255,255,.4) 50%, transparent 51%),
		radial-gradient(1.4px 1.4px at 84% 62%, rgba(255,255,255,.35) 50%, transparent 51%),
		radial-gradient(1px 1px at 42% 76%, rgba(255,255,255,.3) 50%, transparent 51%),
		radial-gradient(1px 1px at 92% 34%, rgba(255,255,255,.35) 50%, transparent 51%);
}

.ell-hero__grid { display: grid; gap: 36px; align-items: center; }

.ell-pill {
	display: inline-flex;
	align-items: center;
	padding: 8px 16px;
	margin-bottom: 18px;
	border-radius: 999px;
	background: rgba(46, 125, 247, .14);
	box-shadow: inset 0 0 0 1px rgba(77, 155, 255, .34);
	font-family: var(--ell-fd);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ell-blue-2);
}

.ell-feats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 12px;
}

.ell-feat {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, .82);
}

.ell-feat__i {
	display: grid;
	place-items: center;
	width: 32px; height: 32px;
	flex: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	box-shadow: inset 0 0 0 1px var(--ell-line-d);
	color: var(--ell-blue-2);
	font-size: 13px;
}

.ell-feat__i svg { width: 14px; height: 14px; fill: currentColor; }

/* Hero görsel */
.ell-hero__media { position: relative; }
.ell-hero__img { width: 100%; border-radius: var(--ell-r); }

.ell-score {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: -18px;
	margin-left: 4px;
	padding: 10px 14px;
	border-radius: 12px;
	background: #fff;
	color: var(--ell-ink);
	box-shadow: 0 14px 34px rgba(0, 0, 0, .34);
}

.ell-score__ring {
	position: relative;
	display: grid;
	place-items: center;
	width: 38px; height: 38px;
	flex: none;
	border-radius: 50%;
	background: conic-gradient(#16A34A calc(var(--v, 98) * 1%), #E6EDF7 0);
}

.ell-score__ring::after {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	background: #fff;
}

.ell-score__ring b {
	position: relative;
	z-index: 1;
	font-family: var(--ell-fd);
	font-size: 12px;
	font-weight: 800;
	color: #16A34A;
}

.ell-score__txt { display: grid; line-height: 1.3; }
.ell-score__lbl { font-size: 10.5px; color: var(--ell-muted); letter-spacing: .02em; }
.ell-score__val { font-family: var(--ell-fd); font-size: 17px; font-weight: 800; }
.ell-score__val small { font-size: 11px; font-weight: 600; color: var(--ell-muted); }

/* ==========================================================================
   2 · NEDEN BİZ — kart ızgarası
   ========================================================================== */
.ell-why__grid { display: grid; gap: 14px; }

.ell-card {
	padding: 26px 20px;
	border-radius: var(--ell-r);
	background: #fff;
	border: 1px solid var(--ell-line);
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ell-card__i {
	display: grid;
	place-items: center;
	width: 54px; height: 54px;
	margin: 0 auto 16px;
	border-radius: 14px;
	background: var(--ell-blue-soft);
	color: var(--ell-blue);
	font-size: 21px;
}

.ell-card__i svg { width: 22px; height: 22px; fill: currentColor; }

.ell-card__t {
	display: block;
	font-family: var(--ell-fd);
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--ell-ink);
}

.ell-card__d {
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--ell-muted);
	margin: 0;
}

@media (hover: hover) {
	.ell-card:hover {
		transform: translateY(-4px);
		border-color: rgba(46, 125, 247, .4);
		box-shadow: 0 16px 34px rgba(15, 29, 51, .09);
	}
}

/* ==========================================================================
   3 · SÜREÇ
   ========================================================================== */
.ell-proc { background: var(--ell-navy); }

.ell-proc__track { display: grid; gap: 30px; position: relative; }

.ell-step { display: grid; justify-items: center; text-align: center; gap: 5px; position: relative; }

.ell-step__i {
	display: grid;
	place-items: center;
	width: 62px; height: 62px;
	border-radius: 50%;
	background: rgba(46, 125, 247, .16);
	box-shadow: inset 0 0 0 1.5px rgba(77, 155, 255, .42);
	color: var(--ell-blue-2);
	font-size: 22px;
	margin-bottom: 10px;
}

.ell-step__i svg { width: 23px; height: 23px; fill: currentColor; }

.ell-step__n {
	font-family: var(--ell-fd);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .1em;
	color: rgba(77, 155, 255, .8);
}

.ell-step__t { font-family: var(--ell-fd); font-size: 16px; font-weight: 700; color: #fff; }

.ell-step__d {
	font-size: 13px;
	line-height: 1.58;
	color: rgba(255, 255, 255, .6);
	max-width: 30ch;
}

/* ==========================================================================
   4 · PROJELER
   ========================================================================== */
.ell-works__slider { position: relative; }

.ell-works__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 82%;
	gap: 14px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 4px;
	margin-inline: calc(var(--ell-pad) * -1);
	padding-inline: var(--ell-pad);
	overscroll-behavior-x: contain;
}

.ell-works__track::-webkit-scrollbar { display: none; }

.ell-work { scroll-snap-align: center; }

.ell-work__a { display: block; text-decoration: none; color: inherit; }

.ell-work__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border-radius: var(--ell-r);
	background: #DCE6F3;
	box-shadow: 0 8px 24px rgba(15, 29, 51, .1);
}

.ell-work__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }

@media (hover: hover) { .ell-work:hover .ell-work__img { transform: scale(1.05); } }

.ell-work__t {
	display: block;
	margin-top: 12px;
	font-family: var(--ell-fd);
	font-size: 15px;
	font-weight: 700;
	color: var(--ell-ink);
}

.ell-nav {
	position: absolute;
	top: 40%;
	z-index: 2;
	display: none;
	place-items: center;
	width: 44px; height: 44px;
	border: 1px solid var(--ell-line);
	border-radius: 50%;
	background: #fff;
	color: var(--ell-ink);
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(15, 29, 51, .1);
	transition: background-color .16s ease, color .16s ease, opacity .16s ease;
}

.ell-nav svg { width: 15px; height: 15px; }
.ell-nav--prev { left: -8px; }
.ell-nav--next { right: -8px; }
.ell-nav:hover { background: var(--ell-blue); color: #fff; border-color: var(--ell-blue); }
.ell-nav[disabled] { opacity: .35; cursor: default; }
.ell-nav[disabled]:hover { background: #fff; color: var(--ell-ink); border-color: var(--ell-line); }

.ell-works__foot { display: flex; justify-content: center; margin-top: 28px; }

/* ==========================================================================
   5 · YORUM + FORM
   ========================================================================== */
.ell-lead__grid { display: grid; gap: 18px; }

/* Yorumlar */
.ell-testi {
	padding: 28px 22px;
	border-radius: 18px;
	background: var(--ell-bg-2);
	border: 1px solid var(--ell-line);
}

.ell-testi__h2 {
	font-family: var(--ell-fd);
	font-size: clamp(21px, 5vw, 28px);
	font-weight: 800;
	line-height: 1.26;
	letter-spacing: -.02em;
	margin: 0 0 20px;
}

.ell-quote { font-family: var(--ell-fd); font-size: 40px; line-height: .8; color: var(--ell-blue); opacity: .5; }

.ell-testi__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 100%;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
}

.ell-testi__track::-webkit-scrollbar { display: none; }
.ell-testi__item { scroll-snap-align: start; padding-top: 12px; }

.ell-testi__txt { font-size: 14.5px; line-height: 1.72; color: var(--ell-muted); margin: 0 0 20px; }

.ell-testi__who { display: flex; align-items: center; gap: 12px; }

.ell-testi__pic {
	width: 44px; height: 44px;
	flex: none;
	border-radius: 50%;
	object-fit: cover;
	background: var(--ell-line);
}

.ell-testi__name { display: block; font-family: var(--ell-fd); font-size: 14.5px; font-weight: 700; }
.ell-testi__role { display: block; font-size: 12.5px; color: var(--ell-muted); }

.ell-dots { display: flex; justify-content: center; gap: 7px; margin-top: 22px; }

.ell-dot {
	width: 8px; height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #C7D5E8;
	cursor: pointer;
	transition: width .2s ease, background-color .2s ease;
}

.ell-dot.is-on { width: 22px; border-radius: 999px; background: var(--ell-blue); }

/* Form kartı */
.ell-formcard {
	padding: 26px 20px;
	border-radius: 18px;
	background: var(--ell-card-d);
	color: #fff;
	box-shadow: 0 22px 50px rgba(6, 13, 28, .28);
	border: 1px solid var(--ell-line-d);
}

.ell-formcard__t {
	font-family: var(--ell-fd);
	font-size: clamp(21px, 5vw, 27px);
	font-weight: 800;
	letter-spacing: -.02em;
	margin: 0 0 8px;
	color: #fff;
}

.ell-formcard__p { font-size: 14px; color: rgba(255, 255, 255, .66); margin: 0 0 20px; max-width: 42ch; }

.ell-formcard__body { display: grid; gap: 18px; }

.ell-form { display: grid; gap: 12px; }
.ell-row { display: grid; gap: 12px; }
.ell-field { display: grid; gap: 5px; min-width: 0; }

.ell-form input,
.ell-form select,
.ell-form textarea {
	width: 100%;
	min-height: 50px;
	padding: 13px 16px;
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 10px;
	background: rgba(255, 255, 255, .05);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.4;
	color: #fff;
	appearance: none;
	-webkit-appearance: none;
	transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

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

.ell-form input::placeholder,
.ell-form textarea::placeholder { color: rgba(255, 255, 255, .45); }

.ell-form select { color: rgba(255, 255, 255, .55); padding-right: 40px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%23FFFFFF' stroke-opacity='.6' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 12px;
}

.ell-form select:valid { color: #fff; }
.ell-form select option { background: #0E1E39; color: #fff; }

.ell-form input:focus,
.ell-form select:focus,
.ell-form textarea:focus {
	outline: none;
	border-color: var(--ell-blue-2);
	background: rgba(255, 255, 255, .09);
	box-shadow: 0 0 0 3px rgba(46, 125, 247, .22);
}

.ell-field.is-error input,
.ell-field.is-error select { border-color: #F87171; }

.ell-err { display: none; font-size: 12.5px; color: #FCA5A5; }
.ell-field.is-error .ell-err { display: block; }

.ell-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.ell-consent { font-size: 12px; line-height: 1.5; color: rgba(255, 255, 255, .5); margin: 2px 0 0; }

.ell-msg { display: none; padding: 12px 14px; border-radius: 10px; font-size: 14px; font-weight: 500; }
.ell-msg.is-ok { display: block; background: rgba(22, 163, 74, .18); color: #86EFAC; }
.ell-msg.is-bad { display: block; background: rgba(239, 68, 68, .16); color: #FCA5A5; }

.ell-spin {
	display: none;
	width: 16px; height: 16px;
	border: 2px solid rgba(255, 255, 255, .4);
	border-top-color: #fff;
	border-radius: 50%;
	animation: ell-rot .7s linear infinite;
}

.is-sending .ell-spin { display: block; }
.is-sending { pointer-events: none; opacity: .8; }
@keyframes ell-rot { to { transform: rotate(360deg); } }

/* Form yan faydalar */
.ell-perks {
	display: grid;
	gap: 12px;
	padding: 18px;
	border-radius: 14px;
	background: rgba(255, 255, 255, .04);
	border: 1px solid var(--ell-line-d);
	align-content: center;
}

.ell-perk { display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 12px; }

.ell-perk__i {
	display: grid;
	place-items: center;
	width: 40px; height: 40px;
	border-radius: 11px;
	background: rgba(46, 125, 247, .18);
	color: var(--ell-blue-2);
	font-size: 15px;
}

.ell-perk__i svg { width: 17px; height: 17px; fill: currentColor; }
.ell-perk__t { font-family: var(--ell-fd); font-size: 13.5px; font-weight: 700; line-height: 1.35; color: #fff; }

/* ==========================================================================
   6 · RAKAMLAR
   ========================================================================== */
.ell-stats { background: var(--ell-deep); padding-block: 34px; }

.ell-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px 12px;
}

.ell-stat { display: flex; align-items: center; gap: 12px; justify-content: center; }

.ell-stat__i {
	display: grid;
	place-items: center;
	width: 42px; height: 42px;
	flex: none;
	border-radius: 12px;
	background: rgba(46, 125, 247, .16);
	color: var(--ell-blue-2);
	font-size: 16px;
}

.ell-stat__i svg { width: 18px; height: 18px; fill: currentColor; }
.ell-stat__b { display: grid; line-height: 1.25; }
.ell-stat__v { font-family: var(--ell-fd); font-size: clamp(20px, 5.5vw, 27px); font-weight: 800; color: #fff; }
.ell-stat__l { font-size: 12.5px; color: rgba(255, 255, 255, .58); }

/* ==========================================================================
   7 · FOOTER
   ========================================================================== */
.ell-foot { background: var(--ell-navy); color: #fff; padding-block: 44px 0; }
.ell-foot__grid { display: grid; gap: 30px; }
.ell-foot__logo { max-width: 170px; margin-bottom: 14px; }
.ell-foot__name { font-family: var(--ell-fd); font-size: 20px; font-weight: 800; margin-bottom: 12px; display: block; }
.ell-foot__txt { font-size: 13.5px; line-height: 1.7; color: rgba(255, 255, 255, .56); max-width: 34ch; }

.ell-social { display: flex; gap: 9px; margin-top: 18px; }

.ell-social a {
	display: grid;
	place-items: center;
	width: 38px; height: 38px;
	border-radius: 10px;
	background: rgba(255, 255, 255, .06);
	box-shadow: inset 0 0 0 1px var(--ell-line-d);
	color: rgba(255, 255, 255, .78);
	font-size: 14px;
	transition: background-color .16s ease, color .16s ease;
}

.ell-social a:hover { background: var(--ell-blue); color: #fff; }
.ell-social svg { width: 15px; height: 15px; fill: currentColor; }

.ell-foot__ttl {
	font-family: var(--ell-fd);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0 16px;
}

.ell-foot__links { display: grid; gap: 11px; }
.ell-foot__links a { font-size: 13.5px; color: rgba(255, 255, 255, .56); text-decoration: none; transition: color .16s ease; }
.ell-foot__links a:hover { color: var(--ell-blue-2); }

.ell-foot__ct { display: grid; gap: 14px; }
.ell-foot__ct li { display: grid; grid-template-columns: 22px 1fr; align-items: start; gap: 10px; font-size: 13.5px; color: rgba(255, 255, 255, .56); }
.ell-foot__ct a { color: inherit; text-decoration: none; }
.ell-foot__ct a:hover { color: var(--ell-blue-2); }
.ell-foot__ct i, .ell-foot__ct svg { color: var(--ell-blue-2); font-size: 14px; margin-top: 3px; }
.ell-foot__ct svg { width: 15px; height: 15px; fill: currentColor; }

.ell-foot__bar {
	margin-top: 36px;
	padding-block: 20px;
	border-top: 1px solid var(--ell-line-d);
	font-size: 12.5px;
	color: rgba(255, 255, 255, .42);
	text-align: center;
}

/* ==========================================================================
   SSS (opsiyonel)
   ========================================================================== */
.ell-acc { display: grid; gap: 10px; max-width: 780px; margin-inline: auto; }

.ell-acc__item { border: 1px solid var(--ell-line); border-radius: 12px; background: #fff; overflow: hidden; }

.ell-acc__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 56px;
	padding: 14px 18px;
	cursor: pointer;
	list-style: none;
	font-family: var(--ell-fd);
	font-size: 15px;
	font-weight: 700;
	color: var(--ell-ink);
}

.ell-acc__q::-webkit-details-marker { display: none; }

.ell-acc__ico { position: relative; width: 20px; height: 20px; flex: none; }

.ell-acc__ico::before, .ell-acc__ico::after {
	content: "";
	position: absolute;
	inset: 50% 2px auto 2px;
	height: 2px;
	background: var(--ell-blue);
	border-radius: 2px;
	transform: translateY(-50%);
	transition: transform .2s ease;
}

.ell-acc__ico::after { transform: translateY(-50%) rotate(90deg); }
.ell-acc__item[open] .ell-acc__ico::after { transform: translateY(-50%) rotate(0); }
.ell-acc__a { padding: 0 18px 18px; font-size: 14.5px; color: var(--ell-muted); }

/* ==========================================================================
   Mobil sabit çubuk + yüzen WhatsApp
   ========================================================================== */
.ell-bar {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 9990;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 1fr;
	gap: 8px;
	padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
	background: rgba(255, 255, 255, .97);
	backdrop-filter: blur(12px);
	box-shadow: 0 -4px 22px rgba(15, 29, 51, .14);
	transform: translateY(120%);
	transition: transform .28s ease;
}

.ell-bar.is-in { transform: translateY(0); }

.ell-bar__b {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	min-height: 50px;
	border-radius: 11px;
	background: var(--ell-bg-2);
	color: var(--ell-ink);
	font-size: 11.5px;
	font-weight: 600;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}

.ell-bar__b svg { width: 19px; height: 19px; }
.ell-bar__b--wa { background: var(--ell-wa); color: #fff; }

.ell-bar__b--cta {
	background: var(--ell-blue);
	color: #fff;
	font-family: var(--ell-fd);
	font-size: 14px;
	font-weight: 700;
}

.ell-bar__b:active { transform: scale(.97); }

.ell-float {
	position: fixed;
	right: 18px; bottom: 18px;
	z-index: 9989;
	display: none;
	place-items: center;
	width: 54px; height: 54px;
	border-radius: 50%;
	background: var(--ell-wa);
	color: #fff;
	box-shadow: 0 10px 26px rgba(37, 211, 102, .4);
	transition: transform .2s ease;
}

.ell-float svg { width: 27px; height: 27px; }
.ell-float:hover { transform: scale(1.07); }

.ell.has-bar { padding-bottom: 74px; }

/* ==========================================================================
   ≥ 600px
   ========================================================================== */
@media (min-width: 600px) {
	.ell-sec { padding-block: 68px; }
	.ell-btns .ell-btn { flex: 0 0 auto; }
	.ell-row { grid-template-columns: 1fr 1fr; }
	.ell-why__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.ell-proc__track { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
	.ell-stats__grid { grid-template-columns: repeat(4, 1fr); }
	.ell-works__track { grid-auto-columns: 46%; }
	.ell-testi, .ell-formcard { padding: 32px 28px; }
	.ell-feats { gap: 14px 18px; }
}

/* ==========================================================================
   ≥ 900px
   ========================================================================== */
@media (min-width: 900px) {
	.ell { --ell-pad: 32px; }
	.ell-sec { padding-block: 88px; }
	.ell-head { margin-bottom: 46px; }

	.ell-hero { padding-block: 72px 84px; }
	.ell-hero__grid { grid-template-columns: 1.02fr .98fr; gap: 50px; }
	.ell-feats { display: flex; flex-wrap: wrap; gap: 10px 22px; }
	.ell-feat { font-size: 12.5px; }

	.ell-score { position: absolute; top: 6%; left: 44%; margin: 0; }

	.ell-why__grid { grid-template-columns: repeat(3, 1fr); }
	.ell-proc__track { grid-template-columns: repeat(5, 1fr); gap: 22px; }

	/* adımlar arası noktalı çizgi */
	.ell-proc__track::before {
		content: "";
		position: absolute;
		top: 31px;
		left: 10%;
		right: 10%;
		height: 1px;
		background: repeating-linear-gradient(90deg, rgba(77,155,255,.45) 0 5px, transparent 5px 12px);
		z-index: 0;
	}

	.ell-step { z-index: 1; }
	.ell-step__i { background: var(--ell-navy); box-shadow: inset 0 0 0 1.5px rgba(77, 155, 255, .42), 0 0 0 8px var(--ell-navy); }

	.ell-works__track { grid-auto-columns: calc((100% - 42px) / 4); margin-inline: 0; padding-inline: 0; }
	.ell-nav { display: grid; }
	.ell-lead__grid { grid-template-columns: .88fr 1.12fr; gap: 22px; align-items: stretch; }
	.ell-testi { display: grid; align-content: center; }
	.ell-formcard__body { grid-template-columns: 1.5fr .85fr; gap: 20px; align-items: start; }

	.ell-foot__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; }
	.ell-foot__bar { text-align: left; }

	.ell-bar { display: none; }
	.ell-float { display: grid; }
	.ell.has-bar { padding-bottom: 0; }
}

@media (min-width: 1100px) {
	.ell-nav--prev { left: -22px; }
	.ell-nav--next { right: -22px; }
}

/* ==========================================================================
   Erişilebilirlik
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
	.ell *, .ell *::before, .ell *::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
}

.ell a:focus-visible,
.ell button:focus-visible,
.ell summary:focus-visible,
.ell input:focus-visible,
.ell select:focus-visible,
.ell textarea:focus-visible {
	outline: 3px solid var(--ell-blue-2);
	outline-offset: 2px;
}

.elementor-editor-active .ell-bar,
.elementor-editor-active .ell-float { position: absolute; }
