:root {
	--ig-pink: #ff1b6b;
	--ig-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
	--luxury-black: #0f0f0f;
	--soft-white: #fafafa;
	--glass: rgba(255, 255, 255, 0.8);
	--line: rgba(0,0,0,0.08);
	--muted: #888;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background-color: var(--soft-white); color: var(--luxury-black); overflow-x: hidden; scroll-behavior: smooth; }

/* --- Navbar --- */
nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 5%;
	background: rgba(250, 250, 250, 0.9);
	backdrop-filter: blur(10px);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(0,0,0,0.05);
}
.brand-container { text-align: center; }
.logo-img { height: 45px; width: auto; display: block; margin: 0 auto; }
.logo-subtitle {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 5px;
	font-weight: 700;
	color: #833ab4;
	margin-top: 8px;
	text-transform: uppercase;
}

/* --- Hero Section --- */
.hero {
	display: flex;
	flex-direction: column;
	padding: 80px 8%;
	gap: 60px;
	max-width: 1400px;
	margin: 0 auto;
}

@media (min-width: 992px) {
	.hero { flex-direction: row; align-items: center; min-height: 80vh; }
}

.hero-content { flex: 1.2; }
.hero-label {
	display: inline-block;
	background: var(--ig-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 800;
	font-size: 0.9rem;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.hero-content h1 {
	font-size: clamp(3rem, 7vw, 5rem);
	font-weight: 800;
	line-height: 0.95;
	margin-bottom: 30px;
	letter-spacing: -2px;
}
.hero-content h1 i { font-family: 'Playfair Display', serif; font-weight: 400; color: var(--ig-pink); }

.hero-content p {
	color: #555;
	font-size: 1.1rem;
	margin-bottom: 40px;
	max-width: 550px;
	line-height: 1.7;
}

.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }
.btn-luxury {
	background: var(--luxury-black);
	color: white;
	padding: 20px 45px;
	border-radius: 100px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.9rem;
	transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
}
.btn-luxury:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 30px 50px rgba(0,0,0,0.2); }

/* Polaroid Enhanced */
.hero-visual { flex: 1; position: relative; }
.main-frame {
	position: relative;
	background: white;
	padding: 20px 20px 80px 20px;
	box-shadow: 0 40px 100px rgba(0,0,0,0.1);
	border-radius: 4px;
	transform: rotate(2deg);
	z-index: 2;
}
.main-frame img { width: 100%; height: 500px; object-fit: cover; border-radius: 2px; }
.frame-footer {
	position: absolute;
	bottom: 30px;
	left: 30px;
	right: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.frame-icons { display: flex; gap: 20px; font-size: 1.3rem; opacity: 0.7; }

.uyari { color: #fff; background: #ff1b6b54; padding: 10px; margin-top: 5px; font-size: 13px; transition: 0.8s; }
.uyari:hover { color: #fff; background: #64565b54; padding: 10px; margin-top: 5px; font-size: 13px; transition: 0.8s; }
.uyari p { background: var(--ig-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 800;}

/* Floating Stickers */
.sticker { position: absolute; padding: 12px 20px; border-radius: 50px; background: white; box-shadow: 0 10px 30px rgba(0,0,0,0.1); font-weight: 700; font-size: 0.8rem; z-index: 3; display: flex; align-items: center; gap: 8px; }
.s-1 { top: 10%; left: -20px; transform: rotate(-10deg); color: #bc1888; }
.s-2 { bottom: 20%; right: -13px; transform: rotate(15deg); color: #00D2FF; }

/* --- Stats Bento Grid --- */
.stats-section { padding: 40px 8%; max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.stat-card { background: #000; padding: 40px; border-radius: 30px; text-align: center; border: 1px solid rgba(0,0,0,0.03); transition: 0.3s; box-shadow: -11px 10px 0px rgba(255, 27, 107, 0.35);}
.stat-card:hover { background: #fdfdfd; box-shadow: 11px -10px 0px rgba(255, 27, 107, 0.35); }
.stat-card h3 { font-size: 2.5rem; font-weight: 800; margin-bottom: 5px; letter-spacing: -1px; color:#ff1b6b; transition: 1s;}
.stat-card:hover h3 { color:#000; transition: 0.8s;}
.stat-card p { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: #888; letter-spacing: 2px; }

/* --- Steps Editorial --- */
.section-header { text-align: center; margin-bottom: 80px; padding: 0 8%; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; margin-bottom: 15px; }
.section-header p { color: #888; font-weight: 500; }

.steps-container { padding: 0 8% 100px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; max-width: 90%; margin: 0 auto; }
.step-item { position: relative; }
.step-count { font-size: 5rem; font-weight: 900; color: rgba(0,0,0,0.03); position: absolute; top: -40px; left: -10px; z-index: -1; }
.step-content i { font-size: 2rem; margin-bottom: 25px; color: #ff1b6b; }
.step-content h4 { font-size: 1.4rem; margin-bottom: 15px; color:#ff1b6b; }
.step-content p { color: #666; font-size: 0.95rem; line-height: 1.6; }

/* --- Criteria List --- */
.criteria-wrapper { background: #000; color: white; padding: 120px 8%; border-radius: 60px 60px 0 0; }
.criteria-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 60px; }
.c-box { border: 1px solid rgba(255,255,255,0.1); padding: 40px; border-radius: 24px; transition: 0.3s; }
.c-box:hover { background: rgba(255,255,255,0.05); border-color: var(--ig-pink); }
.c-box i { font-size: 1.5rem; color: var(--ig-pink); margin-bottom: 20px; display: block; }
.c-box h5 { font-size: 1.1rem; margin-bottom: 10px; }
.c-box p { font-size: 0.85rem; color: #888; line-height: 1.5; }

/* --- Final CTA Gradient --- */
.final-cta {
	background: var(--ig-gradient);
	padding: 120px 8%;
	text-align: center;
	color: white;
}
.final-cta h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; margin-bottom: 30px; line-height: 1; }
.btn-white {
	background: white;
	color: black;
	padding: 22px 60px;
	border-radius: 100px;
	text-decoration: none;
	font-weight: 800;
	display: inline-block;
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	transition: 0.3s;
	border: none;
	cursor: pointer;
	font-size: 1rem;
}
.btn-white:hover { transform: scale(1.05); }

footer { padding: 60px 8%; text-align: center; background: #000; color: #555; font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.05); }

@media (max-width: 768px) {
	.hero { padding: 40px 5%; }
	.hero-btns { flex-direction: column; }
	.main-frame img { height: 350px; }
	.criteria-wrapper { border-radius: 0; }
}

/* ==================== POPUP BAŞVURU FORMU ==================== */
.overlay {
	position: fixed; inset: 0; z-index: 2000;
	background: rgba(15,15,15,0.6);
	backdrop-filter: blur(8px);
	display: none; align-items: center; justify-content: center;
	padding: 20px;
}
.overlay.open { display: flex; }

.modal {
	background: var(--soft-white);
	width: 100%; max-width: 620px;
	border-radius: 32px;
	max-height: 90vh; overflow-y: auto;
	box-shadow: 0 40px 100px rgba(0,0,0,0.35);
	animation: modalUp .4s cubic-bezier(.16,1,.3,1);
	position: relative;
}
@keyframes modalUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.modal-hd {
	padding: 34px 40px 22px;
	border-bottom: 1px solid var(--line);
	position: sticky; top: 0; background: var(--soft-white); z-index: 2;
	border-radius: 32px 32px 0 0;
}
.modal-hd span.hero-label { margin-bottom: 10px; }
.modal-t { font-size: 1.7rem; font-weight: 800; letter-spacing: -1px; }
.modal-s { font-size: 0.9rem; color: #777; margin-top: 6px; font-weight: 500; }
.modal-x {
	position: absolute; right: 26px; top: 26px;
	width: 38px; height: 38px; border-radius: 50%;
	background: #000; color: #fff; border: none; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	font-size: 14px; transition: 0.3s;
}
.modal-x:hover { background: var(--ig-pink); transform: rotate(90deg); }

.modal-bd { padding: 30px 40px 40px; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 18px; }
.fg label {
	display: block; font-size: 0.72rem; font-weight: 800;
	letter-spacing: 1.5px; text-transform: uppercase; color: #999; margin-bottom: 8px;
}
.fw { position: relative; }
.fi-ic { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #bbb; font-size: 0.9rem; pointer-events: none; }
.fi {
	width: 100%; background: #fff; border: 1.5px solid var(--line);
	border-radius: 14px; padding: 14px 16px 8px 44px;
	font-family: 'Poppins', sans-serif; font-size: 0.95rem; font-weight: 500;
	color: var(--luxury-black); outline: none; transition: 0.25s;
}
.fi:focus { border-color: var(--ig-pink); box-shadow: 0 0 0 4px rgba(255,27,107,0.1); }
.fi::placeholder { color: #bbb; font-weight: 400; }

.sig { display: flex; }
.sico {
	flex-shrink: 0; width: 46px; height: 47px;
	display: flex; align-items: center; justify-content: center;
	background: #f1f1f1; border: 1.5px solid var(--line); border-right: none;
	border-radius: 14px 0 0 14px; color: #bbb; text-decoration: none;
	transition: 0.25s; cursor: default; font-size: 1rem;
}
.sico.live { background: var(--ig-gradient); border-color: transparent; color: #fff; cursor: pointer; }
.sig .fi { border-radius: 0 14px 14px 0; padding-left: 16px; }

.contract {
	background: #fff; border: 1.5px solid var(--line); border-radius: 16px;
	padding: 18px 20px; max-height: 160px; overflow-y: auto;
	font-size: 0.78rem; color: #777; line-height: 1.8; margin-bottom: 12px;
}
.contract::-webkit-scrollbar { width: 4px; }
.contract::-webkit-scrollbar-thumb { background: var(--ig-gradient); border-radius: 2px; }
.contract h4 { font-size: 0.78rem; font-weight: 800; color: var(--luxury-black); margin: 12px 0 4px; }
.contract h4:first-child { margin-top: 0; }

.stip { text-align: center; font-size: 0.72rem; font-weight: 700; color: var(--ig-pink); margin-bottom: 10px; transition: opacity .3s; }
.stip.gone { opacity: 0; pointer-events: none; height: 0; margin: 0; overflow: hidden; }

.chk-row {
	display: flex; align-items: flex-start; gap: 12px;
	padding: 16px; background: #fff; border: 1.5px solid var(--line);
	border-radius: 16px; cursor: pointer; transition: 0.25s; user-select: none;
}
.chk-row.on { background: #fff5f9; border-color: var(--ig-pink); }
.chk-row input { width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; cursor: pointer; accent-color: var(--ig-pink); }
.chk-txt { font-size: 0.85rem; color: #666; font-weight: 500; line-height: 1.5; }
.chk-txt span { color: var(--ig-pink); font-weight: 800; }

.sbtn {
	width: 100%; padding: 18px; border-radius: 100px; border: none; cursor: pointer;
	background: var(--luxury-black); color: white; font-family: 'Poppins', sans-serif;
	font-size: 0.95rem; font-weight: 700; margin-top: 20px; transition: 0.35s;
	display: flex; align-items: center; justify-content: center; gap: 10px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.sbtn:hover:not(:disabled) { transform: translateY(-3px); background: #222; }
.sbtn:disabled { opacity: 0.3; cursor: not-allowed; transform: none; }

.ferr {
	background: #fff0f4; border: 1.5px solid #ffc2d6; border-radius: 14px;
	padding: 14px 16px; color: #c2185b; font-size: 0.85rem; font-weight: 600;
	margin-bottom: 18px; display: flex; gap: 10px; align-items: flex-start;
}

.success { text-align: center; padding: 60px 40px; }
.s-ico {
	width: 84px; height: 84px; border-radius: 50%; background: var(--ig-gradient);
	display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
	font-size: 2rem; color: white; box-shadow: 0 0 0 16px rgba(255,27,107,0.08);
}
.s-t { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 12px; }
.s-d { font-size: 0.95rem; color: #777; line-height: 1.8; }
.s-close {
	margin-top: 28px; padding: 16px 36px; border-radius: 100px;
	background: var(--luxury-black); color: white; border: none; cursor: pointer;
	font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 700;
}

@media (max-width: 600px) {
	.frow { grid-template-columns: 1fr; }
	.modal-hd, .modal-bd { padding-left: 24px; padding-right: 24px; }
	.modal-x { right: 18px; top: 20px; }
}

/* ==================== SSS (FAQ) ==================== */
.faq-section {
	padding: 100px 8%;
	max-width: 900px;
	margin: 0 auto;
}

.faq-list { display: flex; flex-direction: column; gap: 16px; }

.faq-item {
	background: #fff;
	border: 1.5px solid var(--line);
	border-radius: 20px;
	overflow: hidden;
	transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item.open {
	border-color: var(--ig-pink);
	box-shadow: 0 20px 40px rgba(255, 27, 107, 0.08);
}

.faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 28px;
	cursor: pointer;
	user-select: none;
}
.faq-q h4 {
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--luxury-black);
	letter-spacing: -0.2px;
}

.faq-icon {
	flex-shrink: 0;
	width: 34px; height: 34px;
	border-radius: 50%;
	background: #f2f2f2;
	display: flex; align-items: center; justify-content: center;
	position: relative;
	transition: 0.35s cubic-bezier(.16,1,.3,1);
}
.faq-item.open .faq-icon {
	background: var(--ig-gradient);
	transform: rotate(135deg);
}
.faq-icon::before, .faq-icon::after {
	content: '';
	position: absolute;
	background: var(--luxury-black);
	transition: background 0.3s;
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after   { width: 2px; height: 12px; }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: #fff; }

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(.16,1,.3,1);
}
.faq-a-inner {
	padding: 0 28px 26px;
	font-size: 0.92rem;
	color: #666;
	line-height: 1.8;
}

@media (max-width: 600px) {
	.faq-section {

