/* LinguMonster public landing — mevcut site spec'ine (marka renkleri/gradientler) sadık. */
.lm-landing {
    --lm-primary: #667EEA;
    --lm-primary-dark: #764BA2;
    --lm-gold: #FFD700;
    --lm-gold-light: #FFED4E;
    --lm-coral: #FF6B6B;
    --lm-coral-dark: #EE5A52;
    --lm-teal: #4ECDC4;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #212529;
    background: #fff;
    overflow-x: hidden;
}
.lm-landing * { box-sizing: border-box; }

/* ---------- Header ---------- */
.lm-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.95); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.2); transition: .3s;
    animation: lm-slideDown .5s ease-out;
}
.lm-header.scrolled { background: rgba(255,255,255,.98); box-shadow: rgba(0,0,0,.10) 0 4px 20px; }
.lm-nav { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; padding: .5rem 16px; }
.lm-brand { display: flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 800; font-size: 1.2rem; color: #2D3748; transition: .3s; }
.lm-brand:hover { color: var(--lm-primary); transform: translateY(-1px); }
.lm-brand img { height: 36px; width: 36px; border-radius: 10px; box-shadow: rgba(102,126,234,.2) 0 4px 12px; transition: .3s; }
.lm-brand:hover img { transform: scale(1.05); }
.lm-menu { margin-left: auto; display: flex; align-items: center; gap: .2rem; flex-wrap: nowrap; }
.lm-menu a { color: #4A5568; text-decoration: none; font-weight: 600; font-size: .85rem; padding: .5rem .8rem; border-radius: 12px; transition: .3s; white-space: nowrap; }
.lm-menu a:hover { background: rgba(102,126,234,.1); color: var(--lm-primary); transform: translateY(-2px); }
.lm-menu a.cta { background: linear-gradient(135deg, var(--lm-coral), var(--lm-coral-dark)); color: #fff; padding: .6rem 1.2rem; border-radius: 25px; margin-left: .5rem; box-shadow: rgba(255,107,107,.3) 0 4px 12px; }
.lm-menu a.cta:hover { box-shadow: rgba(255,107,107,.4) 0 6px 16px; transform: translateY(-2px); }
.lm-burger { display: none; margin-left: auto; background: none; border: 0; border-radius: 12px; padding: 8px; font-size: 1.4rem; color: #4A5568; cursor: pointer; }

/* ---------- Hero slider ---------- */
.lm-hero { position: relative; height: 100vh; overflow: hidden; }
.lm-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s linear; display: flex; align-items: center; justify-content: center; }
.lm-slide.active { opacity: 1; z-index: 2; }
.lm-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; animation: lm-zoom 20s ease-in-out infinite; }
.lm-slide::before { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(135deg, rgba(102,126,234,.8), rgba(118,75,162,.8)); }
.lm-slide::after { content: ""; position: absolute; inset: 0; z-index: 3; animation: lm-float 6s ease-in-out infinite;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,.10) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,.10) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255,255,255,.05) 0%, transparent 50%); }
.lm-slide-content { position: relative; z-index: 4; text-align: center; color: #fff; max-width: 800px; padding: 0 40px; animation: lm-fadeIn .8s ease-out; }
.lm-slide-content h2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.2; letter-spacing: -.02em; text-shadow: rgba(0,0,0,.3) 0 4px 8px; margin: 0 0 1rem; }
.lm-slide-content h2 span { font-weight: 900; background: linear-gradient(135deg, var(--lm-gold), var(--lm-gold-light)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lm-slide-content p { font-size: clamp(1.1rem, 2.5vw, 1.3rem); line-height: 1.6; max-width: 600px; margin: 0 auto 2rem; text-shadow: rgba(0,0,0,.2) 0 2px 4px; }

.lm-cta { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 12px; font-weight: 600; font-size: 1.1rem; text-decoration: none; cursor: pointer; border: 2px solid transparent; position: relative; overflow: hidden; transition: .3s; background: linear-gradient(135deg, var(--lm-gold), var(--lm-gold-light)); color: #2D3748; box-shadow: rgba(0,0,0,.1) 0 4px 15px; }
.lm-cta::before { content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent); transition: left .5s; }
.lm-cta:hover::before { left: 100%; }
.lm-cta:hover { transform: translateY(-3px); box-shadow: rgba(255,215,0,.4) 0 12px 32px; }

.lm-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border: 2px solid rgba(255,255,255,.2); color: #fff; font-size: 24px; cursor: pointer; transition: .3s; }
.lm-arrow:hover { background: rgba(255,255,255,.2); transform: translateY(-50%) scale(1.1); }
.lm-arrow.prev { left: 24px; } .lm-arrow.next { right: 24px; }
.lm-dots { position: absolute; bottom: 40px; left: 0; right: 0; z-index: 10; display: flex; justify-content: center; gap: 12px; }
.lm-dots button { width: 12px; height: 12px; border-radius: 50%; border: 0; background: rgba(255,255,255,.5); cursor: pointer; transition: .3s; }
.lm-dots button.active { background: var(--lm-gold); transform: scale(1.2); }

/* ---------- Teachers ---------- */
.lm-teachers { background: linear-gradient(135deg, var(--lm-primary), var(--lm-primary-dark)); padding: 120px 20px 60px; }
.lm-container { max-width: 1200px; margin: 0 auto; }
.lm-glass { background: rgba(255,255,255,.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); box-shadow: rgba(0,0,0,.1) 0 8px 32px; }
.lm-section-head { border-radius: 20px; padding: 30px; margin-bottom: 50px; text-align: center; color: #fff; }
.lm-section-head h2 { font-size: 2.5rem; font-weight: 700; margin: 0 0 8px; text-shadow: rgba(0,0,0,.2) 0 2px 4px; }
.lm-section-head p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; opacity: .95; }
.lm-teacher-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(380px, 1fr)); gap: 25px; margin-bottom: 40px; }
.lm-teacher-card { border-radius: 20px; overflow: hidden; transition: .3s; position: relative; }
.lm-teacher-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 2; background: linear-gradient(90deg, var(--lm-coral), var(--lm-teal)); background-size: 200% 100%; animation: lm-gshift 3s ease infinite; }
.lm-teacher-card:hover { transform: translateY(-5px); box-shadow: rgba(0,0,0,.15) 0 12px 40px; }
.lm-video { position: relative; cursor: pointer; height: 180px; overflow: hidden; }
.lm-video img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.lm-video:hover img { transform: scale(1.05); }
.lm-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: rgba(0,0,0,.7); border-radius: 8px; padding: 8px 16px; display: flex; gap: 6px; align-items: center; color: #fff; font-size: 14px; font-weight: 500; }
.lm-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lm-tinfo { padding: 15px; }
.lm-tinfo h3 { font-size: 1.5rem; font-weight: 600; color: #fff; margin: 0 0 10px; }
.lm-subject { display: inline-block; background: rgba(255,255,255,.2); border-radius: 20px; padding: 4px 12px; font-size: .9rem; font-weight: 600; color: #fff; }
.lm-expertise { font-size: .8rem; color: rgba(255,255,255,.85); margin: 8px 0 0; }
.lm-reviews { padding: 15px; background: rgba(255,255,255,.05); border-top: 1px solid rgba(255,255,255,.1); }
.lm-reviews h4 { font-size: 1rem; font-weight: 600; color: #fff; margin: 0 0 12px; }
.lm-review { display: flex; align-items: center; gap: 10px; padding: 8px; border-radius: 6px; cursor: pointer; }
.lm-review:hover { background: rgba(255,255,255,.06); }
.lm-review-thumb { position: relative; }
.lm-review-thumb img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.3); }
.lm-review-thumb .p { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 16px; height: 16px; background: rgba(0,0,0,.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 7px; }
.lm-review .name { font-size: 14px; font-weight: 600; color: #1F2937; }
.lm-review .text { font-size: 12px; color: rgba(255,255,255,.8); font-style: italic; }
.lm-teachers-foot { border-radius: 20px; padding: 30px 20px; margin-top: 20px; text-align: center; color: #fff; }

/* ---------- Pricing (Velok kart tarzı) ---------- */
.lm-pricing { padding: 80px 20px; background: #fff; }
.lm-pricing .head { text-align: center; margin-bottom: 40px; }
.lm-pricing .head h2 { font-size: 2.2rem; font-weight: 800; color: #1E293B; }
.lm-pricing .head p { color: #64748B; font-size: 1.05rem; }
.lm-price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.lm-price-card { border: 2px solid #E2E8F0; border-radius: 18px; padding: 32px 28px; text-align: center; transition: .3s; background: #fff; position: relative; }
.lm-price-card:hover { transform: translateY(-6px); border-color: var(--lm-primary); box-shadow: rgba(102,126,234,.18) 0 16px 40px; }
.lm-price-card.featured { border-color: var(--lm-primary); box-shadow: rgba(102,126,234,.15) 0 12px 32px; }
.lm-price-card .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--lm-coral), var(--lm-coral-dark)); color: #fff; font-size: .7rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; }
.lm-price-card h3 { font-size: 1.3rem; font-weight: 700; color: #1E293B; margin: 0 0 6px; }
.lm-price-card .meta { color: #64748B; font-size: .9rem; margin-bottom: 16px; }
.lm-price-card .price { font-size: 2.6rem; font-weight: 800; background: linear-gradient(135deg, var(--lm-primary), var(--lm-primary-dark)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lm-price-card .price small { font-size: 1rem; color: #94A3B8; -webkit-text-fill-color: #94A3B8; }
.lm-price-card ul { list-style: none; padding: 0; margin: 18px 0; text-align: left; }
.lm-price-card li { padding: 6px 0; color: #475569; font-size: .92rem; }
.lm-price-card li i { color: var(--lm-teal); margin-right: 8px; }
.lm-price-btn { display: inline-block; width: 100%; padding: 12px; border-radius: 12px; font-weight: 700; text-decoration: none; background: linear-gradient(135deg, var(--lm-primary), var(--lm-primary-dark)); color: #fff; transition: .3s; box-shadow: rgba(102,126,234,.3) 0 6px 16px; }
.lm-price-btn:hover { transform: translateY(-2px); color: #fff; box-shadow: rgba(102,126,234,.45) 0 10px 24px; }

/* ---------- Stats + Payment ---------- */
.lm-stats { background: linear-gradient(135deg, #F8FAFC, #E2E8F0); padding: 80px 20px; border-top: 1px solid rgba(0,0,0,.1); }
.lm-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
.lm-stat { display: flex; align-items: center; gap: 20px; border-radius: 12px; padding: 22px; position: relative; overflow: hidden; background: rgba(255,255,255,.7); box-shadow: rgba(0,0,0,.06) 0 8px 32px; border: 1px solid rgba(0,0,0,.05); }
.lm-stat::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--lm-coral), var(--lm-teal), #45B7D1, #96CEB4); background-size: 200% 100%; animation: lm-gshift 3s ease infinite; }
.lm-stat-icon { width: 56px; height: 56px; flex: none; border-radius: 12px; background: linear-gradient(45deg, var(--lm-coral), var(--lm-teal)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; box-shadow: rgba(0,0,0,.2) 0 4px 15px; }
.lm-stat-num { font-size: 2.3rem; font-weight: 800; line-height: 1; background: linear-gradient(135deg, #1E293B, #475569); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lm-stat-label { font-size: .85rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: #64748B; margin-top: 6px; }
.lm-divider { display: flex; align-items: center; gap: 20px; margin: 50px 0; }
.lm-divider .line { flex: 1; height: 2px; background: linear-gradient(90deg, transparent, #CBD5E1, transparent); }
.lm-divider .txt { background: linear-gradient(135deg, #6366F1, #8B5CF6); color: #fff; padding: 12px 30px; border-radius: 25px; font-weight: 600; white-space: nowrap; box-shadow: rgba(99,102,241,.3) 0 4px 15px; }
.lm-pay { text-align: center; }
.lm-pay h3 { font-size: 2rem; font-weight: 700; color: #1E293B; margin-bottom: 25px; }
.lm-pay-logos { display: flex; justify-content: center; align-items: center; gap: 15px; flex-wrap: wrap; margin-bottom: 25px; }
.lm-pay-item { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 25px; border-radius: 12px; font-size: .95rem; font-weight: 600; background: rgba(255,255,255,.9); backdrop-filter: blur(10px); min-width: 140px; box-shadow: rgba(0,0,0,.1) 0 4px 15px; border: 2px solid; }
.lm-pay-item img { max-height: 34px; max-width: 90px; object-fit: contain; }
.lm-pay-item.visa { border-color: #1A1F71; color: #1A1F71; }
.lm-pay-item.mc { border-color: #EB001B; }
.lm-pay-item.paytr { border-color: var(--lm-primary); }
.lm-pay-item.ssl { border-color: #059669; color: #059669; }
.lm-pay-sec { color: #64748B; font-size: .9rem; }

/* ---------- Footer ---------- */
.lm-footer { background: linear-gradient(135deg, #1E293B, #334155); color: #F8FAFC; }
.lm-footer-main { max-width: 1200px; margin: 0 auto; padding: 50px 20px 30px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.lm-footer h3 { font-size: 1.8rem; font-weight: 700; background: linear-gradient(135deg, #FBBF24, #F59E0B); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin: 0 0 8px; }
.lm-footer .slogan { color: #CBD5E1; font-size: .9rem; margin-bottom: 16px; }
.lm-contact div { color: #E2E8F0; font-size: .9rem; margin: 6px 0; display: flex; align-items: center; gap: 10px; }
.lm-contact a { color: #E2E8F0; text-decoration: none; }
.lm-footer h4 { font-size: 1rem; font-weight: 600; color: #F1F5F9; border-bottom: 2px solid #FBBF24; padding-bottom: 5px; display: inline-block; margin: 0 0 14px; }
.lm-flink-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lm-flinks a { display: block; position: relative; color: #CBD5E1; text-decoration: none; font-size: .9rem; padding: 5px 0 5px 15px; }
.lm-flinks a::before { content: "→"; position: absolute; left: 0; color: #64748B; }
.lm-flinks a:hover { color: #fff; }
.lm-social { display: flex; gap: 12px; margin-bottom: 18px; }
.lm-social a { width: 45px; height: 45px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.3rem; text-decoration: none; transition: .3s; }
.lm-social a:hover { transform: translateY(-3px); }
.lm-social .ig { background: linear-gradient(135deg, #E1306C, #FD1D1D, #FCB045); }
.lm-social .yt { background: linear-gradient(135deg, #FF0000, #CC0000); }
.lm-social .wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.lm-footer-pay { display: flex; gap: 8px; flex-wrap: wrap; }
.lm-footer-pay span { background: rgba(255,255,255,.1); border-radius: 8px; padding: 8px 12px; display: flex; align-items: center; }
.lm-footer-pay img { max-height: 20px; }
.lm-footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.lm-footer-bottom .cr { color: #94A3B8; font-size: .85rem; }
.lm-comp { display: flex; gap: 10px; }
.lm-comp span { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 20px; padding: 4px 12px; font-size: .75rem; color: #CBD5E1; }

/* ---------- WhatsApp FAB ---------- */
.lm-fab { position: fixed; bottom: 32px; right: 32px; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 2.3rem; text-decoration: none; box-shadow: rgba(37,211,102,.25) 0 8px 24px; z-index: 10000; transition: .2s; }
.lm-fab:hover { background: linear-gradient(135deg, #128C7E, #25D366); box-shadow: rgba(37,211,102,.35) 0 12px 32px; transform: scale(1.08); color: #fff; }

/* ---------- Animations ---------- */
@keyframes lm-slideDown { 0% { transform: translateY(-100%); opacity: 0; } 100% { transform: translateY(0); opacity: 1; } }
@keyframes lm-zoom { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes lm-float { 0%,100% { transform: translateY(0) rotate(0); opacity: .3; } 50% { transform: translateY(-20px) rotate(180deg); opacity: .8; } }
@keyframes lm-fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lm-gshift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .lm-burger { display: block; }
    .lm-menu { display: none; position: absolute; top: 64px; left: 12px; right: 12px; flex-direction: column; align-items: stretch; background: rgba(255,255,255,.97); backdrop-filter: blur(20px); border-radius: 16px; padding: 1rem; box-shadow: rgba(0,0,0,.1) 0 8px 24px; }
    .lm-menu.open { display: flex; }
    .lm-menu a { text-align: center; margin: .25rem 0; }
    .lm-footer-main { grid-template-columns: 1fr; gap: 25px; }
}
@media (max-width: 768px) {
    .lm-teacher-grid { grid-template-columns: 1fr; }
    .lm-slide-content h2 { font-size: 2rem; } .lm-slide-content p { font-size: 1rem; }
    .lm-cta { width: 100%; max-width: 300px; justify-content: center; }
    .lm-footer-bottom { flex-direction: column; text-align: center; }
    .lm-arrow { width: 46px; height: 46px; font-size: 18px; }
}

/* ==================== Alt sayfalar (about/contact/legal/quiz/demo) ==================== */
.lm-page-hero {
    background: linear-gradient(135deg, #667EEA, #764BA2);
    color: #fff; text-align: center; padding: 130px 20px 60px;
}
.lm-page-hero-icon { font-size: 3rem; margin-bottom: .75rem; opacity: .95; }
.lm-page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; margin: 0 0 .5rem; }
.lm-page-hero p { font-size: 1.1rem; opacity: .92; max-width: 640px; margin: 0 auto; line-height: 1.6; }
.lm-page-body { background: #f6f7fb; padding: 50px 20px 70px; min-height: 40vh; }
.lm-page-body .lm-container { max-width: 960px; }

/* İçerik kartları */
.lm-card {
    background: #fff; border-radius: 16px; padding: 28px 30px; margin-bottom: 22px;
    box-shadow: 0 6px 26px rgba(102,126,234,.08); border: 1px solid #eef0f7;
}
.lm-card h2 { font-size: 1.35rem; font-weight: 800; color: #2d2f45; margin: 0 0 14px; display: flex; align-items: center; gap: 10px; }
.lm-card h2 i { color: #667EEA; }
.lm-card h3 { font-size: 1.08rem; font-weight: 700; color: #3a3c52; margin: 18px 0 8px; }
.lm-card p { color: #4a4d63; line-height: 1.75; margin: 0 0 12px; }
.lm-card ul { margin: 0 0 12px; padding-left: 4px; list-style: none; }
.lm-card ul li { position: relative; padding: 6px 0 6px 28px; color: #4a4d63; line-height: 1.6; }
.lm-card ul li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: #4ECDC4; position: absolute; left: 0; top: 6px; }
.lm-card ul.plain li::before { content: "\f105"; color: #667EEA; }
.lm-lead { font-size: 1.12rem; color: #3a3c52; font-weight: 500; }

/* Vurgu/uyarı (yasal TODO) */
.lm-note { background: #fff8e6; border: 1px solid #ffe08a; border-left: 4px solid #f5a623; border-radius: 12px; padding: 14px 18px; color: #7a5b00; margin-bottom: 20px; }
.lm-note i { color: #f5a623; margin-right: 8px; }
.lm-updated { color: #8a8da3; font-size: .9rem; margin-top: 6px; }

/* Bilgi ızgarası (about/mesafeli satış künyesi) */
.lm-kv { display: grid; grid-template-columns: 200px 1fr; gap: 8px 16px; }
.lm-kv dt { font-weight: 700; color: #3a3c52; }
.lm-kv dd { margin: 0; color: #4a4d63; }

/* İletişim kartları */
.lm-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-bottom: 24px; }
.lm-contact-card { background: #fff; border-radius: 16px; padding: 26px; text-align: center; box-shadow: 0 6px 26px rgba(102,126,234,.08); border: 1px solid #eef0f7; transition: transform .2s, box-shadow .2s; }
.lm-contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 34px rgba(102,126,234,.16); }
.lm-contact-card .ico { width: 62px; height: 62px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.5rem; color: #fff; background: linear-gradient(135deg,#667EEA,#764BA2); }
.lm-contact-card.wa .ico { background: linear-gradient(135deg,#25D366,#128C7E); }
.lm-contact-card h3 { margin: 0 0 6px; font-size: 1.12rem; color: #2d2f45; }
.lm-contact-card p { color: #6a6d83; font-size: .95rem; margin: 0 0 14px; }
.lm-contact-card a.btn { display: inline-block; padding: 10px 20px; border-radius: 30px; font-weight: 700; text-decoration: none; color: #fff; background: linear-gradient(135deg,#667EEA,#764BA2); }
.lm-contact-card.wa a.btn { background: linear-gradient(135deg,#25D366,#128C7E); }

/* Quiz */
.lm-quiz { max-width: 720px; margin: 0 auto; }
.lm-quiz-progress { height: 8px; background: #e6e8f5; border-radius: 8px; overflow: hidden; margin-bottom: 20px; }
.lm-quiz-progress > span { display: block; height: 100%; background: linear-gradient(90deg,#667EEA,#764BA2); transition: width .3s; }
.lm-quiz-q { font-size: 1.35rem; font-weight: 700; color: #2d2f45; margin: 0 0 22px; text-align: center; }
.lm-quiz-opts { display: grid; gap: 12px; }
.lm-quiz-opt { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border: 2px solid #e6e8f5; border-radius: 14px; background: #fff; cursor: pointer; font-size: 1.05rem; color: #3a3c52; transition: all .15s; text-align: left; }
.lm-quiz-opt:hover { border-color: #667EEA; background: #f4f6ff; }
.lm-quiz-opt.sel { border-color: #667EEA; background: #eef1ff; font-weight: 700; }
.lm-quiz-opt .k { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 8px; background: #eef1ff; color: #667EEA; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.lm-quiz-opt.sel .k { background: #667EEA; color: #fff; }
.lm-quiz-nav { display: flex; justify-content: space-between; margin-top: 24px; gap: 12px; }
.lm-quiz-result { text-align: center; }
.lm-score-circle { width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: linear-gradient(135deg,#667EEA,#764BA2); box-shadow: 0 10px 30px rgba(102,126,234,.35); }
.lm-score-circle .num { font-size: 2.6rem; font-weight: 800; line-height: 1; }
.lm-score-circle .tot { opacity: .85; }
.lm-level-badge { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg,#FFD700,#FF6B6B); color: #fff; font-weight: 800; font-size: 1.2rem; padding: 10px 24px; border-radius: 30px; margin: 8px 0 20px; }

/* Form */
.lm-form { max-width: 620px; margin: 0 auto; }
.lm-field { margin-bottom: 18px; }
.lm-field label { display: block; font-weight: 700; color: #3a3c52; margin-bottom: 6px; font-size: .95rem; }
.lm-field input, .lm-field select { width: 100%; padding: 13px 15px; border: 2px solid #e6e8f5; border-radius: 12px; font-size: 1rem; color: #2d2f45; background: #fff; transition: border-color .15s; }
.lm-field input:focus, .lm-field select:focus { outline: none; border-color: #667EEA; }
.lm-field .err { color: #FF6B6B; font-size: .85rem; margin-top: 5px; }
.lm-form-btn { width: 100%; padding: 15px; border: none; border-radius: 30px; background: linear-gradient(135deg,#667EEA,#764BA2); color: #fff; font-weight: 800; font-size: 1.05rem; cursor: pointer; transition: opacity .15s; }
.lm-form-btn:disabled { opacity: .6; cursor: not-allowed; }
.lm-alert { border-radius: 12px; padding: 14px 18px; margin-bottom: 18px; font-weight: 600; }
.lm-alert.ok { background: #e8f8f0; color: #1a7f4b; border: 1px solid #b6e6cd; }
.lm-alert.bad { background: #fdecec; color: #b02a2a; border: 1px solid #f5c2c2; }

/* Ödeme logo bandı */
.lm-pay-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }
.lm-pay-band i.fa-cc-visa { color: #1a1f71; }
.lm-pay-band i.fa-cc-mastercard { color: #eb001b; }
.lm-pay-band .brand { font-size: 2rem; }
.lm-paytr-badge { display: inline-flex; align-items: center; gap: 8px; background: #0b2a4a; color: #fff; font-weight: 800; padding: 8px 16px; border-radius: 10px; font-size: 1rem; letter-spacing: .3px; }
.lm-paytr-badge i { color: #24d17e; }

@media (max-width: 640px) {
    .lm-kv { grid-template-columns: 1fr; gap: 2px 0; }
    .lm-kv dt { margin-top: 10px; }
    .lm-card { padding: 22px 20px; }
    .lm-page-hero { padding: 110px 16px 46px; }
}
