/* ============================================
   PUMA Landing Page - Premium Design
   ============================================ */

:root {
    /* Brand - Navy (from PUMA logo) */
    --navy-900: #0a1628;
    --navy-800: #0f1f3d;
    --navy-700: #162d54;
    --navy-600: #1e3a6b;
    --navy-500: #2a4d8f;

    /* Primary - Blue */
    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-100: #dbeafe;
    --blue-50: #eff6ff;

    /* Accent - Teal */
    --teal-600: #0891b2;
    --teal-500: #06b6d4;
    --teal-100: #cffafe;

    /* Accent - Emerald */
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-100: #d1fae5;

    /* Accent - Amber */
    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-100: #fef3c7;

    /* Accent - Rose */
    --rose-600: #e11d48;
    --rose-100: #ffe4e6;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Compat for forgot-password pages */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;

    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

/* ========================================
   Navbar
   ======================================== */
.lp-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.lp-nav.scrolled {
    background: rgba(255,255,255,0.97);
    border-bottom-color: var(--gray-200);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.lp-nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-brand { text-decoration: none; display: flex; align-items: center; }
.lp-brand-logo { height: 50px; width: auto; }

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lp-nav-link {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    letter-spacing: -0.1px;
}

.lp-nav-link i {
    font-size: 13px;
    opacity: 0.55;
    transition: opacity 0.2s;
}

.lp-nav-link:hover {
    color: var(--navy-800);
    background: var(--gray-100);
}

.lp-nav-link:hover i { opacity: 1; }

.lp-nav-cta {
    background: var(--navy-800) !important;
    color: var(--white) !important;
    font-weight: 600;
    gap: 6px;
    margin-left: 4px;
}

.lp-nav-cta i { opacity: 0.8 !important; }

.lp-nav-cta:hover { background: var(--navy-700) !important; }

.lp-nav-mobile {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--navy-800);
    cursor: pointer;
}

/* ========================================
   HERO
   ======================================== */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 32px 80px;
    background: linear-gradient(160deg, #f0f4ff 0%, #eef7fb 25%, #faf5ff 50%, #fff8f0 75%, #f0fdf4 100%);
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.lp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.lp-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,0.18), rgba(37,99,235,0.04));
    top: -200px; left: -150px;
    animation: orbDrift 20s ease-in-out infinite;
}

.lp-orb-2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(8,145,178,0.15), rgba(8,145,178,0.03));
    bottom: -100px; right: -80px;
    animation: orbDrift 25s ease-in-out infinite reverse;
}

.lp-orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(245,158,11,0.12), rgba(245,158,11,0.02));
    top: 35%; left: 45%;
    animation: orbDrift 18s ease-in-out infinite;
}

.lp-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37,99,235,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes orbDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -18px) scale(1.04); }
    66% { transform: translate(-18px, 22px) scale(0.96); }
}

.lp-hero-inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 72px;
    align-items: center;
}

/* Left Content */
.lp-hero-left { position: relative; z-index: 1; }

.lp-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-700);
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.lp-hero-pill i { color: var(--amber-500); }

.lp-hero-pill-logo {
    height: 22px;
    width: auto;
}

.lp-hero-left h1 {
    font-size: 45px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--navy-900);
    margin-bottom: 22px;
    letter-spacing: -1px;
}

.lp-text-gradient {
    background: linear-gradient(135deg, var(--blue-600), var(--teal-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-sub {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 36px;
}

.lp-hero-metrics {
    display: flex;
    gap: 14px;
    margin-bottom: 32px;
}

.lp-metric {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    transition: all 0.25s;
    flex: 1;
}

.lp-metric:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: var(--blue-400);
}

.lp-metric-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.lp-metric:nth-child(1) .lp-metric-icon { background: var(--blue-100); color: var(--blue-600); }
.lp-metric-icon-2 { background: var(--emerald-100) !important; color: var(--emerald-600) !important; }
.lp-metric-icon-3 { background: var(--amber-100) !important; color: var(--amber-600) !important; }

.lp-metric div strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-800);
}

.lp-metric div span {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
}

.lp-hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lp-trust-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-400);
}

.lp-trust-items {
    display: flex;
    gap: 16px;
}

.lp-trust-items span {
    font-size: 12px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 5px;
}

.lp-trust-items span i { color: var(--emerald-500); font-size: 13px; }

/* ========================================
   Login Card
   ======================================== */
.lp-hero-right { position: relative; z-index: 2; }

.lp-login-card {
    background: var(--white);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 20px 60px rgba(10,22,40,0.10), 0 1px 3px rgba(0,0,0,0.04);
    border: 1px solid rgba(226,232,240,0.6);
}

.lp-login-header { text-align: center; margin-bottom: 26px; }
.lp-login-header h2 { font-size: 22px; font-weight: 800; color: var(--navy-900); margin-bottom: 2px; }
.lp-login-header p { font-size: 14px; color: var(--gray-400); }

.lp-alert {
    padding: 11px 14px;
    border-radius: var(--radius-xs);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.lp-alert-danger  { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.lp-alert-success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

.lp-field { margin-bottom: 16px; }
.lp-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 5px;
}

.lp-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.lp-input-wrap > i:first-child {
    position: absolute;
    left: 13px;
    font-size: 14px;
    color: var(--gray-400);
    pointer-events: none;
}

.lp-input-wrap input {
    width: 100%;
    padding: 11px 14px 11px 40px;
    font-size: 14px;
    font-family: inherit;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xs);
    background: var(--gray-50);
    color: var(--gray-800);
    transition: all 0.2s;
}

.lp-input-wrap input:focus {
    outline: none;
    border-color: var(--blue-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}

.lp-input-wrap input::placeholder { color: var(--gray-400); }

.lp-pw-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
}
.lp-pw-toggle:hover { color: var(--gray-600); }

.lp-field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.lp-check {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-600);
    cursor: pointer;
}

.lp-check input { width: 15px; height: 15px; cursor: pointer; accent-color: var(--blue-600); }

.lp-forgot {
    font-size: 13px;
    color: var(--blue-600);
    text-decoration: none;
    font-weight: 500;
}
.lp-forgot:hover { text-decoration: underline; }

.lp-btn-login {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    border: none;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 14px rgba(10,22,40,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lp-btn-login:hover {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    box-shadow: 0 6px 20px rgba(10,22,40,0.28);
    transform: translateY(-1px);
}

.lp-btn-login:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.btn-arrow { font-size: 14px; transition: transform 0.2s; }
.lp-btn-login:hover .btn-arrow { transform: translateX(3px); }

.lp-or {
    display: flex;
    align-items: center;
    margin: 18px 0;
}
.lp-or::before, .lp-or::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.lp-or span { padding: 0 12px; font-size: 12px; color: var(--gray-400); font-weight: 500; }

.lp-btn-o365,
.lp-btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 11px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xs);
    color: var(--gray-700);
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.lp-btn-o365:hover { border-color: #0078d4; color: #0078d4; background: var(--blue-50); }

.lp-btn-google:hover {
    border-color: #4285F4;
    color: #1a73e8;
    background: #f8fbff;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.12);
}

.lp-btn-google svg { flex-shrink: 0; }

.lp-o365-section { text-align: center; }

.lp-o365-desc {
    font-size: 13px;
    color: var(--gray-500);
    margin: 0 0 14px;
    line-height: 1.5;
}

.lp-o365-help {
    margin-top: 12px;
    padding: 10px 14px;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    border-radius: var(--radius-xs);
    font-size: 11px;
    color: var(--gray-500);
    line-height: 1.6;
    text-align: left;
}

.lp-o365-help i {
    color: var(--blue-400);
    margin-right: 4px;
}

.lp-o365-help a {
    color: var(--blue-600);
    font-weight: 600;
    text-decoration: none;
}

.lp-o365-help a:hover { text-decoration: underline; }

.lp-btn-guest {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xs);
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
}

.lp-btn-guest:hover { border-color: var(--gray-300); color: var(--gray-700); background: var(--gray-100); }

.lp-btn-guest.active { border-color: var(--blue-200); color: var(--blue-600); background: var(--blue-50); }

.lp-guest-chevron {
    font-size: 10px;
    transition: transform 0.3s;
    margin-left: auto;
}

.lp-btn-guest.active .lp-guest-chevron { transform: rotate(180deg); }

.lp-guest-form {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    animation: lpGuestSlide 0.3s ease-out;
}

@keyframes lpGuestSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.lp-roles-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
}

.lp-role-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
}

.lp-rc-admin   { background: var(--amber-100); color: #92400e; }
.lp-rc-teacher { background: var(--blue-100); color: #1e40af; }
.lp-rc-student { background: var(--emerald-100); color: #065f46; }
.lp-rc-parent  { background: var(--rose-100); color: #9f1239; }

/* ========================================
   SECTIONS COMMON
   ======================================== */
.lp-section-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.lp-section-head {
    text-align: center;
    margin-bottom: 30px;
}

.lp-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--blue-600);
    background: var(--blue-100);
    border-radius: 100px;
    margin-bottom: 16px;
}

.lp-pill-ai { color: var(--navy-700); background: linear-gradient(135deg, var(--blue-100), var(--teal-100)); }
.lp-pill-lms { color: var(--emerald-600); background: var(--emerald-100); }

.lp-section-head h2 {
    font-size: 38px;
    font-weight: 900;
    color: var(--navy-900);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.lp-section-head p {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 500px;
    margin: 0 auto;
}

/* ========================================
   BAŞARILARIMIZ SHOWCASE
   ======================================== */
.lp-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 50%, #f0fdf4 100%);
    position: relative;
    overflow: hidden;
}

.lp-showcase::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lp-showcase-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lp-showcase-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy-900);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.lp-showcase-content p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
}

.lp-pill-showcase {
    background: rgba(37, 99, 235, 0.08) !important;
    color: var(--blue-600) !important;
}

.lp-showcase-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.lp-showcase-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-showcase-stat > i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: var(--white);
    color: var(--blue-600);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.lp-showcase-stat strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.1;
}

.lp-showcase-stat span {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 500;
}

.lp-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: var(--navy-800);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(15, 31, 61, 0.2);
}

.lp-showcase-btn:hover {
    background: var(--navy-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 31, 61, 0.25);
}

.lp-showcase-btn i {
    font-size: 12px;
    transition: transform 0.2s;
}

.lp-showcase-btn:hover i { transform: translateX(3px); }

.lp-showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp-showcase-card-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 340px;
}

.lp-showcase-card {
    padding: 24px 20px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.lp-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--gray-200);
}

.sc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 12px;
}

.sc-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-700);
    letter-spacing: -0.1px;
}

.sc-1 .sc-icon { background: #dbeafe; color: #2563eb; }
.sc-2 .sc-icon { background: #d1fae5; color: #059669; }
.sc-3 .sc-icon { background: #fef3c7; color: #d97706; }
.sc-4 .sc-icon { background: #fce7f3; color: #db2777; }

.sc-1 { animation: scFloat 3s ease-in-out infinite; }
.sc-2 { animation: scFloat 3s ease-in-out 0.5s infinite; }
.sc-3 { animation: scFloat 3s ease-in-out 1s infinite; }
.sc-4 { animation: scFloat 3s ease-in-out 1.5s infinite; }

@keyframes scFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ========================================
   FEATURES
   ======================================== */
.lp-features {
    padding: 110px 0;
    background: var(--white);
}

.lp-feat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lp-feat-card {
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    background: var(--white);
    transition: all 0.3s;
}

.lp-feat-card:hover {
    border-color: var(--gray-200);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

.lp-feat-ic {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.lp-ic-1 { background: var(--blue-100); color: var(--blue-600); }
.lp-ic-2 { background: var(--teal-100); color: var(--teal-600); }
.lp-ic-3 { background: var(--amber-100); color: var(--amber-600); }
.lp-ic-4 { background: var(--emerald-100); color: var(--emerald-600); }
.lp-ic-5 { background: var(--rose-100); color: var(--rose-600); }
.lp-ic-6 { background: #e0e7ff; color: #4f46e5; }
.lp-ic-7 { background: #cffafe; color: #0e7490; }
.lp-ic-8 { background: #fef3c7; color: #b45309; }

.lp-feat-card h3 { font-size: 17px; font-weight: 700; color: var(--navy-800); margin-bottom: 8px; }
.lp-feat-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ========================================
   AI SECTION
   ======================================== */
.lp-ai {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.lp-ai-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.lp-ai-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy-900);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.lp-ai-desc {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 32px;
}

.lp-ai-items { display: flex; flex-direction: column; gap: 18px; }

.lp-ai-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 14px;
    transition: all 0.2s;
}

.lp-ai-item:hover { background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.04); }

.lp-ai-item-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.lp-ai-item div strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 2px;
}

.lp-ai-item div span {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* AI Visual - 2x2 grid */
.lp-ai-visual { position: relative; }

.lp-ai-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lp-ai-demo {
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s;
}

.lp-ai-demo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    border-color: var(--blue-400);
}

.lp-ai-demo-head {
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy-800);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gray-50);
}

.lp-ai-demo-head i { color: var(--blue-500); font-size: 13px; }

.lp-ai-demo-body { padding: 14px; }

.lp-ai-demo-body p {
    font-size: 11px;
    color: var(--gray-500);
    margin-top: 8px;
    font-style: italic;
    line-height: 1.5;
}

/* Wave animation */
.lp-wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 32px;
}

.lp-wave span {
    display: block;
    width: 4px;
    background: linear-gradient(180deg, var(--blue-500), var(--teal-500));
    border-radius: 2px;
    animation: waveAnim 1.2s ease-in-out infinite;
}

.lp-wave span:nth-child(1) { height: 10px; animation-delay: 0s; }
.lp-wave span:nth-child(2) { height: 20px; animation-delay: 0.1s; }
.lp-wave span:nth-child(3) { height: 28px; animation-delay: 0.2s; }
.lp-wave span:nth-child(4) { height: 16px; animation-delay: 0.3s; }
.lp-wave span:nth-child(5) { height: 24px; animation-delay: 0.4s; }
.lp-wave span:nth-child(6) { height: 12px; animation-delay: 0.5s; }
.lp-wave span:nth-child(7) { height: 20px; animation-delay: 0.6s; }
.lp-wave span:nth-child(8) { height: 8px; animation-delay: 0.7s; }

@keyframes waveAnim {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.4); }
}

/* Slide mock */
.lp-slide-mock { display: flex; flex-direction: column; gap: 8px; }
.lp-slide-title { height: 10px; width: 70%; background: var(--navy-800); border-radius: 4px; opacity: 0.15; }
.lp-slide-rows { display: flex; flex-direction: column; gap: 5px; }
.lp-slide-rows span { display: block; height: 6px; border-radius: 3px; background: var(--gray-100); }
.lp-slide-rows span:nth-child(1) { width: 100%; }
.lp-slide-rows span:nth-child(2) { width: 85%; }
.lp-slide-rows span:nth-child(3) { width: 60%; }
.lp-slide-img { height: 28px; border-radius: 4px; background: linear-gradient(135deg, var(--blue-100), var(--teal-100)); margin-top: 2px; }

/* Video mock */
.lp-ai-video-body { display: flex; flex-direction: column; gap: 10px; }
.lp-video-thumb {
    height: 52px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    display: flex;
    align-items: center;
    justify-content: center;
}
.lp-video-thumb i { color: rgba(255,255,255,0.9); font-size: 20px; }
.lp-video-info { display: flex; align-items: center; gap: 8px; }
.lp-video-dur { font-size: 11px; font-weight: 700; color: var(--blue-600); background: var(--blue-100); padding: 2px 8px; border-radius: 4px; }
.lp-video-label { font-size: 12px; color: var(--gray-600); font-weight: 500; }

/* Question mock */
.lp-q-mock { display: flex; flex-direction: column; gap: 6px; }
.lp-q-line { height: 7px; border-radius: 4px; }
.lp-q-q { background: var(--gray-200); width: 100%; }
.lp-q-a { background: var(--gray-100); width: 85%; }
.lp-q-correct { background: var(--emerald-100); width: 85%; position: relative; }
.lp-q-correct::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 8px; color: var(--emerald-600); position: absolute; right: 6px; top: -1px; }

/* ========================================
   LMS SECTION
   ======================================== */
.lp-lms {
    padding: 50px 0;
    background: var(--white);
}

.lp-lms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lp-lms-card {
    position: relative;
    padding: 32px 24px;
    border-radius: var(--radius);
    background: linear-gradient(160deg, var(--gray-50), var(--white));
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.3s;
}

.lp-lms-card:hover {
    border-color: var(--blue-400);
    box-shadow: 0 12px 32px rgba(37,99,235,0.08);
    transform: translateY(-4px);
}

.lp-lms-num {
    font-size: 40px;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    margin-bottom: 16px;
}

.lp-lms-card:hover .lp-lms-num { color: var(--blue-100); }

.lp-lms-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 8px;
}

.lp-lms-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.lp-lms-bg-icon {
    position: absolute;
    bottom: -8px; right: -4px;
    font-size: 72px;
    color: var(--gray-50);
    transition: color 0.3s;
}

.lp-lms-card:hover .lp-lms-bg-icon { color: var(--blue-50); }

/* ========================================
   ROLES SECTION
   ======================================== */
.lp-roles-sec {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.lp-role-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lp-role-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.lp-role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.lp-role-ic {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
}

.lp-role-a .lp-role-ic { background: var(--amber-100); color: var(--amber-600); }
.lp-role-t .lp-role-ic { background: var(--blue-100); color: var(--blue-600); }
.lp-role-s .lp-role-ic { background: var(--emerald-100); color: var(--emerald-600); }
.lp-role-p .lp-role-ic { background: var(--rose-100); color: var(--rose-600); }

.lp-role-card h3 { font-size: 17px; font-weight: 700; color: var(--navy-800); margin-bottom: 8px; }
.lp-role-card p  { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

/* ========================================
   E-PORTFOLIO INFOGRAPHIC
   ======================================== */
.lp-portfolio {
    padding: 110px 0;
    background: var(--white);
    overflow: hidden;
}

.lp-pill-pf { color: var(--teal-600); background: var(--teal-100); }

.lp-pf-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* Visual side */
.lp-pf-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 32px 0;
}

.lp-pf-card-main {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 24px;
    padding: 36px 32px 28px;
    box-shadow: 0 16px 48px rgba(10,22,40,0.10);
    border: 1px solid var(--gray-200);
    text-align: center;
    width: 320px;
}

.lp-pf-avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 14px;
    box-shadow: 0 4px 14px rgba(10,22,40,0.2);
}

.lp-pf-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 2px;
}

.lp-pf-subtitle {
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 24px;
}

.lp-pf-ring-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 22px;
}

.lp-pf-ring {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.lp-pf-ring svg {
    width: 56px; height: 56px;
}

.lp-pf-ring span {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy-800);
    margin-top: -2px;
}

.lp-pf-ring small {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.lp-pf-badges-row {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.lp-pf-mini-badge {
    width: 32px; height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.2s;
}

.lp-pf-mini-badge:hover { transform: scale(1.15); }

/* Floating cards */
.lp-pf-float {
    position: absolute;
    z-index: 3;
    background: var(--white);
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-800);
    animation: pfFloat 4s ease-in-out infinite;
}

.lp-pf-float i { font-size: 16px; }

.lp-pf-fl-1 {
    top: 10px; right: 0;
    animation-delay: 0s;
}
.lp-pf-fl-1 i { color: var(--teal-600); }

.lp-pf-fl-2 {
    bottom: 40px; right: 10px;
    animation-delay: 1.3s;
}
.lp-pf-fl-2 i { color: var(--amber-600); }

.lp-pf-fl-3 {
    top: 50%; left: -10px;
    transform: translateY(-50%);
    animation-delay: 2.6s;
}
.lp-pf-fl-3 i { color: var(--blue-600); }

@keyframes pfFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.lp-pf-fl-3 {
    animation: pfFloat3 4s ease-in-out 2.6s infinite;
}

@keyframes pfFloat3 {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 6px)); }
}

/* Content side */
.lp-pf-content h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy-900);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.lp-pf-desc {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 32px;
}

.lp-pf-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lp-pf-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.lp-pf-feat-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.lp-pf-feat div strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: 2px;
}

.lp-pf-feat div span {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.55;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */
.lp-benefits {
    padding: 110px 0;
    background: linear-gradient(180deg, var(--white), var(--gray-50));
}

.lp-pill-benefit { color: var(--navy-700); background: linear-gradient(135deg, var(--amber-100), #fef3c7); }

.lp-ben-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lp-ben-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.lp-ben-card:hover {
    border-color: var(--blue-400);
    box-shadow: 0 8px 28px rgba(37,99,235,0.07);
    transform: translateY(-3px);
}

.lp-ben-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    flex-shrink: 0;
    min-width: 40px;
    transition: color 0.3s;
}

.lp-ben-card:hover .lp-ben-num { color: var(--blue-100); }

.lp-ben-body { flex: 1; }
.lp-ben-body h3 { font-size: 16px; font-weight: 700; color: var(--navy-800); margin-bottom: 6px; }
.lp-ben-body p  { font-size: 13px; color: var(--gray-500); line-height: 1.7; }

.lp-ben-icon {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gray-300);
    transition: all 0.3s;
}

.lp-ben-card:hover .lp-ben-icon {
    background: var(--blue-100);
    color: var(--blue-600);
}

/* ========================================
   FOOTER
   ======================================== */
.lp-footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.7);
}

.lp-footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.lp-footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding: 56px 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lp-ft-brand { display: flex; flex-direction: column; gap: 14px; }
.lp-ft-logo { height: 55px; width: 145px; filter: brightness(0) invert(1); }
.lp-ft-brand p { font-size: 13px; line-height: 1.6; opacity: 0.5; }

.lp-ft-links { display: flex; flex-direction: column; gap: 10px; }
.lp-ft-links h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.lp-ft-links a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.lp-ft-links a:hover { color: rgba(255,255,255,0.9); }

.lp-ft-kultur { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.lp-ft-kultur-logo { height: 44px; width: auto; opacity: 0.85; }
.lp-ft-kultur p { font-size: 12px; opacity: 0.5; }

.lp-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 13px;
}

.lp-footer-bottom span { opacity: 0.4; }
.lp-ft-sep { opacity: 0.3 !important; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
    .lp-hero-inner { grid-template-columns: 1fr 380px; gap: 40px; }
    .lp-hero-left h1 { font-size: 42px; }
    .lp-hero-metrics { flex-direction: column; }
    .lp-feat-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-lms-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .lp-showcase-inner { gap: 40px; }
    .lp-showcase-content h2 { font-size: 30px; }
}

@media (max-width: 900px) {
    .lp-nav-links { display: none; }
    .lp-nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: var(--white);
        padding: 12px 16px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        gap: 2px;
        z-index: 100;
    }
    .lp-nav-links.open .lp-nav-link {
        padding: 12px 16px;
        border-radius: 10px;
        font-size: 14px;
        color: var(--gray-600);
    }
    .lp-nav-links.open .lp-nav-link i { opacity: 0.7; }
    .lp-nav-links.open .lp-nav-link:hover {
        background: var(--gray-100);
    }
    .lp-nav-mobile { display: block; }

    .lp-hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .lp-hero-left { order: 2; }
    .lp-hero-right { order: 1; }
    .lp-login-card { max-width: 420px; margin: 0 auto; }
    .lp-hero-sub { margin-left: auto; margin-right: auto; }
    .lp-hero-metrics { align-items: center; }
    .lp-metric { max-width: 320px; width: 100%; }
    .lp-hero-trust { justify-content: center; flex-wrap: wrap; }

    .lp-showcase-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
    .lp-showcase-content p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .lp-showcase-stats { justify-content: center; }
    .lp-showcase-btn { margin: 0 auto; }
    .lp-showcase-card-stack { max-width: 300px; margin: 0 auto; }

    .lp-feat-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-ai-layout { grid-template-columns: 1fr; gap: 40px; }
    .lp-role-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-ben-grid { grid-template-columns: 1fr; }
    .lp-pf-layout { grid-template-columns: 1fr; gap: 40px; }
    .lp-pf-visual { order: 1; }
    .lp-pf-content { order: 2; text-align: center; }
    .lp-pf-features { align-items: center; }

    .lp-footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
    .lp-footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 640px) {
    .lp-nav-inner { padding: 0 16px; }
    .lp-hero { padding: 88px 16px 48px; }
    .lp-hero-left h1 { font-size: 32px; }
    .lp-hero-sub { font-size: 15px; }
    .lp-section-head h2 { font-size: 28px; }
    .lp-ai-content h2 { font-size: 28px; }

    .lp-feat-grid { grid-template-columns: 1fr; }
    .lp-lms-grid { grid-template-columns: 1fr; }
    .lp-role-grid { grid-template-columns: 1fr; }
    .lp-ai-grid { grid-template-columns: 1fr; }

    .lp-login-card { padding: 28px 20px; border-radius: 20px; }

    .lp-showcase { padding: 48px 0; }
    .lp-showcase-content h2 { font-size: 26px; }
    .lp-showcase-stats { flex-wrap: wrap; gap: 16px; }
    .lp-showcase-card-stack { grid-template-columns: 1fr 1fr; gap: 10px; max-width: 260px; }
    .lp-showcase-card { padding: 16px 12px; }
    .sc-icon { width: 40px; height: 40px; font-size: 16px; }

    .lp-features, .lp-ai, .lp-lms, .lp-roles-sec, .lp-benefits, .lp-portfolio { padding: 64px 0; }
    .lp-pf-card-main { width: 280px; padding: 28px 20px 22px; }
    .lp-pf-float { display: none; }
    .lp-section-wrap { padding: 0 16px; }

    .lp-footer-top { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .lp-ft-kultur { align-items: center; }
}

/* ========================================
   Forgot Password / Reset Password pages
   (standalone - uses .auth-page layout)
   ======================================== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(160deg, #f0f4ff 0%, #eef7fb 25%, #faf5ff 50%, #fff8f0 75%, #f0fdf4 100%);
}

.auth-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    min-height: 600px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(10,22,40,0.10);
    overflow: hidden;
}

.auth-branding {
    flex: 1;
    background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%);
    color: var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.branding-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-logo {
    width: 80px; height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.brand-logo i { font-size: 36px; }

.auth-branding h1 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.auth-branding > .branding-content > p { font-size: 16px; opacity: 0.9; margin-bottom: 40px; }

.brand-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
}
.feature i { font-size: 18px; }
.feature span { font-size: 14px; font-weight: 500; }

.branding-footer { text-align: center; opacity: 0.7; font-size: 13px; }

.auth-form-container {
    flex: 1;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-form-wrapper { width: 100%; max-width: 400px; }

.auth-header { text-align: center; margin-bottom: 32px; }
.auth-header h2 { font-size: 24px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.auth-header p { font-size: 15px; color: var(--gray-500); }

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.alert-danger  { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.alert-success { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }

.input-group { position: relative; display: flex; align-items: center; }
.input-icon { position: absolute; left: 14px; color: var(--gray-400); font-size: 16px; z-index: 1; }

.form-control {
    width: 100%;
    padding: 12px 14px 12px 44px;
    font-size: 15px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-xs);
    background: var(--gray-50);
    color: var(--gray-800);
    transition: all 0.2s;
    font-family: inherit;
}
.form-control:focus {
    outline: none;
    border-color: var(--blue-500);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.form-control::placeholder { color: var(--gray-400); }

.toggle-password {
    position: absolute; right: 14px; background: none; border: none;
    color: var(--gray-400); cursor: pointer; padding: 4px; font-size: 16px;
}
.toggle-password:hover { color: var(--gray-600); }

.form-options { display: flex; align-items: center; justify-content: space-between; }

.checkbox-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; color: var(--gray-600); cursor: pointer;
}
.checkbox-label input[type="checkbox"] { width: 16px; height: 16px; cursor: pointer; accent-color: var(--blue-600); }

.forgot-link { font-size: 14px; color: var(--blue-600); text-decoration: none; }
.forgot-link:hover { text-decoration: underline; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; font-size: 15px; font-weight: 500;
    border: none; border-radius: var(--radius-xs); cursor: pointer;
    transition: all 0.2s; font-family: inherit;
}
.btn-primary { background: var(--navy-800); color: var(--white); }
.btn-primary:hover { background: var(--navy-700); }
.btn-primary:disabled { opacity: 0.7; cursor: not-allowed; }
.btn-block { width: 100%; }

.auth-divider { display: flex; align-items: center; margin: 24px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.auth-divider span { padding: 0 16px; font-size: 13px; color: var(--gray-400); }

.btn-o365 {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    width: 100%; padding: 13px 24px; background: var(--white);
    border: 1.5px solid var(--gray-200); border-radius: var(--radius-xs);
    color: var(--gray-700); font-size: 15px; font-weight: 500;
    font-family: inherit; cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.btn-o365:hover { background: var(--blue-50); border-color: #0078d4; color: #0078d4; }
.btn-o365 .ms-logo { flex-shrink: 0; }

.role-info { text-align: center; }
.role-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 12px; }
.role-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; font-size: 12px; font-weight: 500; border-radius: 20px;
}
.role-badge.admin   { background: var(--amber-100); color: #92400e; }
.role-badge.teacher { background: var(--blue-100); color: #1e40af; }
.role-badge.student { background: var(--emerald-100); color: #065f46; }
.role-badge.parent  { background: var(--rose-100); color: #9f1239; }

.text-muted { color: var(--gray-500); }
.text-sm { font-size: 13px; }
.text-center { text-align: center; }

.back-to-login {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gray-600); font-size: 14px; text-decoration: none; margin-bottom: 24px;
}
.back-to-login:hover { color: var(--blue-600); }

.password-requirements {
    margin-top: 8px; padding: 12px; background: var(--gray-50);
    border-radius: 8px; font-size: 13px; color: var(--gray-600);
}
.password-requirements ul { margin: 0; padding-left: 20px; }
.password-requirements li { margin-bottom: 4px; }

@media (max-width: 900px) {
    .auth-container { flex-direction: column; max-width: 500px; }
    .auth-branding { padding: 30px; min-height: auto; }
    .brand-features { grid-template-columns: 1fr 1fr; gap: 10px; }
    .feature { padding: 10px 12px; }
    .feature span { font-size: 12px; }
    .branding-footer { display: none; }
}

@media (max-width: 500px) {
    .auth-page { padding: 0; }
    .auth-container { border-radius: 0; min-height: 100vh; }
    .auth-branding { display: none; }
    .auth-form-container { padding: 30px 20px; }
}

/* =============================================
   LINK ACCOUNT PAGE
   ============================================= */
.link-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    padding: 24px;
    font-family: 'Inter', sans-serif;
}

.link-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.04);
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 440px;
    padding: 40px;
    position: relative;
}

.link-header {
    text-align: center;
    margin-bottom: 28px;
}

.link-back {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.link-back:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.link-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #fff;
    font-size: 22px;
}

.link-header h1 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
}
.link-header p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

.link-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.84rem;
    line-height: 1.45;
    margin-bottom: 16px;
}
.link-alert i {
    margin-top: 2px;
    flex-shrink: 0;
}
.link-alert-info {
    background: #f0f9ff;
    color: #0c4a6e;
    border: 1px solid #bae6fd;
}
.link-alert-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.link-alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.link-email-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 24px;
}
.link-email-box > i {
    font-size: 20px;
    color: #ea4335;
}
.link-email-box small {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
}
.link-email-box strong {
    font-size: 0.88rem;
    color: #0f172a;
}

.link-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}
.link-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', monospace;
    letter-spacing: 1px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    background: #fff;
}
.link-field input:focus {
    border-color: #1e293b;
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.06);
}
.link-field small {
    display: block;
    margin-top: 6px;
    font-size: 0.76rem;
    color: #94a3b8;
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    border: none;
    border-radius: 10px;
    background: #0f172a;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}
.link-btn:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}
.link-btn:active {
    transform: translateY(0);
    background: #0f172a;
}

.link-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}
.link-footer p {
    font-size: 0.76rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .link-page { padding: 12px; }
    .link-card { padding: 28px 20px; border-radius: 14px; }
    .link-header h1 { font-size: 1.2rem; }
}

/* ========================================
   Login — çift rol seçimi (öğretmen / BTK)
   ======================================== */
.cr-choose-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cr-choose-card {
    max-width: 440px;
    width: 100%;
}
.cr-choose-icon {
    background: linear-gradient(135deg, #dbeafe, #e0f2fe) !important;
    color: #1d4ed8 !important;
}
.cr-choose-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 20px;
    font-weight: 500;
}
.cr-choose-user i { color: #94a3b8; }
.cr-choose-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.cr-choose-form {
    margin: 0;
}
.cr-choose-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    text-align: left;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
    font-family: inherit;
}
.cr-choose-btn:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}
.cr-choose-btn:active {
    transform: translateY(0);
}
.cr-choose-btn-ic {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.cr-choose-btn-teacher .cr-choose-btn-ic {
    background: #dbeafe;
    color: #1d4ed8;
}
.cr-choose-btn-personnel .cr-choose-btn-ic {
    background: #fef3c7;
    color: #b45309;
}
.cr-choose-btn-body {
    flex: 1;
    min-width: 0;
}
.cr-choose-btn-body strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}
.cr-choose-btn-body small {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}
.cr-choose-btn-arrow {
    flex-shrink: 0;
    color: #94a3b8;
    font-size: 0.85rem;
}
.cr-choose-btn-teacher:hover {
    border-color: #93c5fd;
}
.cr-choose-btn-personnel:hover {
    border-color: #fcd34d;
}
.cr-choose-footer a {
    color: #64748b;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}
.cr-choose-footer a:hover {
    color: #0f172a;
    text-decoration: underline;
}
@media (max-width: 480px) {
    .cr-choose-btn {
        padding: 14px 14px;
        gap: 12px;
    }
    .cr-choose-btn-ic {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
