/* ═══════════════════════════════════════════════════
   Dokuzgen - Public Pages Shared CSS
   Kullanım: default.aspx, register.aspx, login.aspx
════════════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
    --primary: #4f46e5;
    --primary-light: #6366f1;
    --primary-soft: #eef2ff;
    --secondary: #0ea5e9;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --text: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --bg-soft: #f1f5f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

/* ── NAVBAR ── */
.navbar-custom {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: all 0.3s;
}
.navbar-custom.scrolled { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.navbar-brand-pub img { height: 36px; }
.nav-link-item { color: var(--text-muted); text-decoration: none; font-size: 0.82rem; font-weight: 500; padding: 0.42rem 0.75rem; border-radius: 8px; transition: all 0.2s; }
.nav-link-item:hover, .nav-link-item.active { color: var(--primary); background: var(--primary-soft); font-weight: 600; }
.btn-nav-login { color: var(--primary); background: var(--primary-soft); border: 1.5px solid #c7d2fe; padding: 0.42rem 1rem; border-radius: 10px; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.btn-nav-login:hover { background: #e0e7ff; color: var(--primary); }
.btn-nav-register { color: #fff; background: var(--primary); padding: 0.42rem 1.1rem; border-radius: 10px; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: all 0.2s; box-shadow: 0 4px 12px rgba(79,70,229,0.3); }
.btn-nav-register:hover { background: #4338ca; color: #fff; transform: translateY(-1px); }

/* Hamburger */
.pub-hamburger { background:none; border:none; cursor:pointer; padding:6px; display:flex; flex-direction:column; gap:5px; }
.pub-hamburger span { display:block; width:22px; height:2px; background:var(--text); border-radius:2px; transition:all .25s; }
.pub-hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.pub-hamburger.open span:nth-child(2) { opacity:0; }
.pub-hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.pub-mobile-menu { display:none; border-top:1px solid var(--border); background:#fff; padding:1rem 0 0.5rem; }
.pub-mobile-menu.open { display:block; }
.pub-mobile-link { display:flex; align-items:center; gap:10px; padding:0.65rem 0.5rem; color:var(--text-muted); font-size:0.875rem; font-weight:500; text-decoration:none; border-radius:8px; transition:all .2s; }
.pub-mobile-link i { width:18px; text-align:center; color:var(--text-light); font-size:0.85rem; }
.pub-mobile-link:hover, .pub-mobile-link.active { color:var(--primary); background:var(--primary-soft); }
.pub-mobile-link.active i { color:var(--primary); }
.pub-mobile-actions { padding:1rem 0.5rem 0.5rem; border-top:1px solid var(--border); margin-top:0.5rem; }

/* Page hero (for interior pages like yardim, iletisim, hakkimizda) */
.page-hero { background:linear-gradient(160deg, #f8fafc 0%, #eef2ff 60%, #f0f9ff 100%); padding:6rem 0 3.5rem; text-align:center; position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; top:-100px; right:-100px; width:400px; height:400px; background:radial-gradient(circle,rgba(99,102,241,.09) 0%,transparent 70%); pointer-events:none; }
.page-hero-label { display:inline-flex; align-items:center; gap:6px; background:var(--primary-soft); color:var(--primary); border:1px solid #c7d2fe; padding:4px 12px; border-radius:100px; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; margin-bottom:.9rem; }
.page-hero h1 { font-size:clamp(1.8rem,4vw,2.8rem); font-weight:900; color:var(--text); line-height:1.2; margin-bottom:.75rem; }
.page-hero p { font-size:1rem; color:var(--text-muted); max-width:540px; margin:0 auto; line-height:1.7; }
.page-hero-badges { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; margin-top:1.25rem; }
.page-hero-badge { display:inline-flex; align-items:center; gap:6px; font-size:0.8rem; color:var(--primary); font-weight:600; }

/* Breadcrumb */
.pub-breadcrumb { background:#fff; border-bottom:1px solid var(--border); padding:0.6rem 0; font-size:0.8rem; color:var(--text-light); }
.pub-breadcrumb a { color:var(--text-light); text-decoration:none; transition:color .2s; }
.pub-breadcrumb a:hover { color:var(--primary); }
.pub-breadcrumb .sep { margin:0 6px; }

/* ── FAQ PAGE ── */
.faq-search-wrap { max-width:500px; margin:0 auto 1rem; position:relative; }
.faq-search-wrap i { position:absolute; left:14px; top:50%; transform:translateY(-50%); color:var(--text-light); }
.faq-search { width:100%; padding:0.75rem 1rem 0.75rem 2.75rem; border:1.5px solid var(--border); border-radius:12px; font-size:0.9rem; font-family:inherit; outline:none; transition:all .2s; background:#fff; }
.faq-search:focus { border-color:var(--primary); box-shadow:0 0 0 4px rgba(79,70,229,.08); }
.faq-cats { display:flex; justify-content:center; gap:8px; flex-wrap:wrap; margin-top:1rem; }
.faq-cat { display:inline-flex; align-items:center; gap:6px; padding:5px 14px; border-radius:100px; border:1.5px solid var(--border); font-size:0.78rem; font-weight:600; color:var(--text-muted); background:#fff; cursor:pointer; transition:all .2s; text-decoration:none; }
.faq-cat:hover, .faq-cat.active { border-color:var(--primary); color:var(--primary); background:var(--primary-soft); }
.faq-accordion .faq-item { background:#fff; border:1px solid var(--border); border-radius:14px; margin-bottom:10px; overflow:hidden; transition:box-shadow .2s; }
.faq-accordion .faq-item:hover { box-shadow:0 4px 16px rgba(0,0,0,.06); }
.faq-q { width:100%; background:none; border:none; padding:1.1rem 1.25rem; display:flex; justify-content:space-between; align-items:center; cursor:pointer; font-size:0.925rem; font-weight:600; color:var(--text); text-align:left; font-family:inherit; transition:all .2s; }
.faq-q:hover { color:var(--primary); }
.faq-q i { color:var(--text-light); transition:transform .3s; flex-shrink:0; margin-left:12px; }
.faq-item.open .faq-q i { transform:rotate(180deg); color:var(--primary); }
.faq-item.open .faq-q { color:var(--primary); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-a-inner { padding:0 1.25rem 1.1rem; font-size:0.875rem; color:var(--text-muted); line-height:1.7; border-top:1px solid var(--bg-soft); padding-top:0.9rem; }

/* ── CONTACT PAGE ── */
.contact-card { background:#fff; border:1px solid var(--border); border-radius:16px; padding:1.25rem 1.4rem; display:flex; align-items:center; gap:14px; transition:all .2s; margin-bottom:10px; }
.contact-card:hover { border-color:#c7d2fe; box-shadow:0 4px 16px rgba(79,70,229,.08); }
.contact-icon { width:44px; height:44px; min-width:44px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.contact-info .ci-label { font-size:0.8rem; color:var(--text-light); font-weight:500; margin-bottom:2px; }
.contact-info .ci-val { font-size:0.95rem; font-weight:700; color:var(--text); }
.contact-form-card { background:#fff; border:1px solid var(--border); border-radius:20px; padding:1.75rem; }
.contact-form-card h3 { font-size:1.1rem; font-weight:800; color:var(--text); margin-bottom:0.4rem; }
.contact-form-card p { font-size:0.85rem; color:var(--text-muted); margin-bottom:1.4rem; }
.cf-label { display:block; font-size:0.8rem; font-weight:600; color:var(--text); margin-bottom:5px; }
.cf-input { width:100%; padding:0.7rem 0.9rem; border:1.5px solid var(--border); border-radius:10px; font-size:0.875rem; font-family:inherit; outline:none; color:var(--text); background:var(--bg); transition:all .2s; }
.cf-input:focus { border-color:var(--primary); background:#fff; box-shadow:0 0 0 4px rgba(79,70,229,.07); }
.cf-input::placeholder { color:var(--text-light); }
.cf-group { margin-bottom:1rem; }
.btn-cf-submit { width:100%; padding:0.8rem; background:var(--primary); color:#fff; border:none; border-radius:11px; font-size:0.95rem; font-weight:700; font-family:inherit; cursor:pointer; transition:all .25s; box-shadow:0 6px 20px rgba(79,70,229,.28); }
.btn-cf-submit:hover { background:#4338ca; transform:translateY(-2px); }
.company-table { width:100%; border-collapse:collapse; font-size:0.875rem; }
.company-table td { padding:0.75rem 1rem; border-bottom:1px solid var(--border); }
.company-table td:first-child { font-weight:600; color:var(--text); width:180px; }
.company-table td:last-child { color:var(--text-muted); }
.company-table tr:last-child td { border-bottom:none; }
.map-embed { border-radius:14px; overflow:hidden; border:1px solid var(--border); }

/* ── ABOUT PAGE ── */
.about-feature { background:#fff; border:1px solid var(--border); border-radius:14px; padding:1.25rem; }
.about-feature-icon { width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1rem; margin-bottom:0.75rem; }
.about-feature h5 { font-size:0.9rem; font-weight:700; color:var(--text); margin-bottom:.3rem; }
.about-feature p { font-size:0.8rem; color:var(--text-muted); margin:0; line-height:1.6; }
.mission-card { background:var(--primary-soft); border:1px solid #c7d2fe; border-radius:16px; padding:1.5rem; height:100%; }
.vision-card { background:#f0fdf4; border:1px solid #bbf7d0; border-radius:16px; padding:1.5rem; height:100%; }
.mv-icon { width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; margin-bottom:1rem; }
.mv-card h4 { font-size:1rem; font-weight:800; color:var(--text); margin-bottom:.5rem; }
.mv-card p { font-size:0.875rem; color:var(--text-muted); line-height:1.7; margin:0; }
.stats-bar { background:linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%); padding:3.5rem 0; }
.stat-item { text-align:center; }
.stat-item .snum { font-size:2.4rem; font-weight:900; color:#fff; display:block; line-height:1; }
.stat-item .slbl { font-size:0.82rem; color:rgba(255,255,255,.7); font-weight:600; text-transform:uppercase; letter-spacing:.06em; margin-top:6px; display:block; }
.team-card { background:#fff; border:1px solid var(--border); border-radius:16px; padding:1.5rem; text-align:center; }
.team-avatar { width:70px; height:70px; border-radius:50%; background:linear-gradient(135deg,#4f46e5,#7c3aed); display:flex; align-items:center; justify-content:center; font-size:1.5rem; font-weight:800; color:#fff; margin:0 auto 0.9rem; }
.team-card h5 { font-size:0.95rem; font-weight:700; color:var(--text); margin-bottom:3px; }
.team-card .team-role { font-size:0.78rem; color:var(--primary); font-weight:600; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: #fff; }
.section-label { display:inline-flex; align-items:center; gap:6px; background:var(--primary-soft); color:var(--primary); border:1px solid #c7d2fe; padding:5px 12px; border-radius:100px; font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:1rem; }
.section-title { font-size:clamp(1.65rem, 3.5vw, 2.4rem); font-weight:800; color:var(--text); line-height:1.2; margin-bottom:0.75rem; }
.section-sub { font-size:1rem; color:var(--text-muted); line-height:1.7; max-width:540px; }

/* ── CTA SECTION ── */
.cta-section { background:linear-gradient(135deg,#4f46e5 0%,#7c3aed 100%); padding:80px 0; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; top:-100px; right:-100px; width:400px; height:400px; background:rgba(255,255,255,0.05); border-radius:50%; }
.cta-section h2 { font-size:clamp(1.7rem,3.5vw,2.6rem); font-weight:800; color:#fff; }
.cta-section p { color:rgba(255,255,255,0.78); font-size:1rem; }
.btn-cta-white { background:#fff; color:var(--primary); padding:0.88rem 2rem; border-radius:12px; font-weight:700; font-size:1rem; text-decoration:none; transition:all 0.25s; display:inline-block; box-shadow:0 6px 20px rgba(0,0,0,0.15); }
.btn-cta-white:hover { transform:translateY(-2px); color:var(--primary); }
.btn-cta-outline { background:transparent; color:#fff; padding:0.88rem 2rem; border-radius:12px; font-weight:600; font-size:1rem; text-decoration:none; border:2px solid rgba(255,255,255,0.4); transition:all 0.25s; display:inline-block; }
.btn-cta-outline:hover { border-color:#fff; color:#fff; background:rgba(255,255,255,0.1); }

/* ── FOOTER ── */
.footer { background:#0f172a; color:rgba(255,255,255,0.55); padding:3rem 0 1.75rem; }
.footer-brand img { height:34px; filter:brightness(0) invert(1); margin-bottom:0.7rem; }
.footer-brand p { font-size:0.82rem; line-height:1.65; max-width:250px; }
.footer-heading { font-size:0.75rem; font-weight:700; color:#fff; text-transform:uppercase; letter-spacing:0.08em; margin-bottom:0.9rem; }
.footer-link { display:block; color:rgba(255,255,255,0.48); text-decoration:none; font-size:0.83rem; padding:0.18rem 0; transition:color 0.2s; }
.footer-link:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.07); margin-top:2rem; padding-top:1.4rem; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:0.5rem; font-size:0.78rem; }

/* ── AUTH PAGES (register / login) ── */
.auth-page {
    min-height: 100vh;
    background: linear-gradient(160deg, #f8fafc 0%, #eef2ff 50%, #f0f9ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem 2rem; /* top: navbar yüksekliği için */
    position: relative;
}
.auth-page::before {
    content: '';
    position: fixed;
    top: -150px; right: -150px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.10) 0%, transparent 70%);
    pointer-events: none;
}
.auth-page::after {
    content: '';
    position: fixed;
    bottom: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.auth-wrap {
    width: 100%;
    max-width: 460px;
    animation: fadeUp 0.5s ease-out;
}
.auth-wrap-wide { max-width: 520px; }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.auth-logo { text-align: center; margin-bottom: 1.75rem; }
.auth-logo img { height: 44px; }

.auth-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.25rem 2rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.auth-title { font-size: 1.55rem; font-weight: 800; color: var(--text); text-align: center; margin-bottom: 0.35rem; }
.auth-subtitle { font-size: 0.9rem; color: var(--text-muted); text-align: center; margin-bottom: 1.75rem; }

/* Auth form inputs */
.auth-label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.auth-input-wrap { position: relative; }
.auth-input-wrap i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-light); font-size: 0.9rem; transition: color 0.2s; pointer-events: none; }
.auth-input-wrap:focus-within i { color: var(--primary); }
.auth-input {
    width: 100%;
    padding: 0.75rem 0.9rem 0.75rem 2.75rem;
    border: 1.5px solid var(--border);
    border-radius: 11px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    transition: all 0.2s;
    outline: none;
}
.auth-input:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(79,70,229,0.08); }
.auth-input::placeholder { color: var(--text-light); }
.auth-select { appearance: none; cursor: pointer; }

.auth-form-group { margin-bottom: 1rem; }
.auth-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:480px) { .auth-form-row { grid-template-columns: 1fr; } }

/* Auth button */
.btn-auth {
    width: 100%;
    padding: 0.85rem;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 0.5rem;
    box-shadow: 0 6px 20px rgba(79,70,229,0.3);
}
.btn-auth:hover { background: #4338ca; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(79,70,229,0.35); }

/* Auth alert */
.auth-alert {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.auth-alert.error { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; }
.auth-alert.success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }

/* Agreement checkboxes */
.auth-check { display: flex; align-items: flex-start; gap: 9px; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.65rem; line-height: 1.5; }
.auth-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; flex-shrink: 0; margin-top: 2px; }
.auth-check a { color: var(--primary); text-decoration: none; font-weight: 500; }
.auth-check a:hover { text-decoration: underline; }

/* Auth footer */
.auth-footer-link { text-align: center; margin-top: 1.25rem; font-size: 0.875rem; color: var(--text-muted); }
.auth-footer-link a { color: var(--primary); font-weight: 600; text-decoration: none; }
.auth-footer-link a:hover { text-decoration: underline; }

.auth-back { text-align: center; margin-top: 1.1rem; }
.auth-back a { font-size: 0.82rem; color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.auth-back a:hover { color: var(--text-muted); }

/* Auth feature badges */
.auth-features { display: flex; justify-content: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.auth-feature { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.auth-feature i { color: var(--success); }

/* Institution banner */
.institution-banner { text-align: center; margin-bottom: 1.5rem; padding: 1.25rem; background: var(--primary-soft); border: 1px solid #c7d2fe; border-radius: 16px; }
.institution-logo { width: 68px; height: 68px; border-radius: 50%; object-fit: cover; border: 3px solid #c7d2fe; margin-bottom: 0.65rem; }
.institution-logo-placeholder { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), #7c3aed); display: inline-flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #fff; margin-bottom: 0.65rem; }
.institution-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.35rem; }
.institution-tag { display: inline-block; font-size: 0.72rem; font-weight: 600; color: var(--primary); background: #fff; padding: 3px 10px; border-radius: 20px; }

/* Divider */
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 1.25rem 0; color: var(--text-light); font-size: 0.78rem; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Auth footer bar (minimal footer for login/register) */
.auth-footer-bar { background: #fff; border-top: 1px solid var(--border); padding: 1rem 0; font-size: 0.78rem; color: var(--text-light); }
.auth-footer-bar-link { color: var(--text-light); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
.auth-footer-bar-link:hover { color: var(--primary); }

/* Solve info banner (login page) */
.solve-info-banner { display: flex; gap: 14px; align-items: flex-start; background: var(--primary-soft); border: 1px solid #c7d2fe; border-radius: 14px; padding: 1rem 1.1rem; margin-bottom: 1.4rem; }
.solve-info-icon { width: 38px; height: 38px; min-width: 38px; border-radius: 10px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; }
.solve-info-text strong { display: block; font-size: 0.875rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.solve-info-text span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ══════════════════════════════════════════
   DEFAULT / LANDING PAGE STYLES
══════════════════════════════════════════ */

/* HERO */
.hero { padding: 130px 0 90px; background: linear-gradient(160deg,#f8fafc 0%,#eef2ff 50%,#f0f9ff 100%); position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; top:-150px; right:-150px; width:650px; height:650px; background:radial-gradient(circle,rgba(99,102,241,.10) 0%,transparent 70%); pointer-events:none; }

.hero-badge { display:inline-flex; align-items:center; gap:7px; background:#eef2ff; color:var(--primary); border:1px solid #c7d2fe; padding:6px 14px; border-radius:100px; font-size:0.78rem; font-weight:700; margin-bottom:1.5rem; }
.hero-badge .dot { width:7px; height:7px; background:var(--primary); border-radius:50%; animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }

.hero h1 { font-size:clamp(2.2rem,5vw,3.6rem); font-weight:900; color:var(--text); line-height:1.15; letter-spacing:-.02em; }
.hero h1 .hi { background:linear-gradient(135deg,#4f46e5,#7c3aed); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero-sub { font-size:1.05rem; color:var(--text-muted); line-height:1.75; max-width:540px; margin:1.2rem 0 2rem; }
.hero-cta { display:flex; gap:12px; flex-wrap:wrap; }

.btn-primary-hero { display:inline-flex; align-items:center; gap:8px; background:var(--primary); color:#fff; padding:0.85rem 1.8rem; border-radius:12px; font-weight:700; font-size:1rem; text-decoration:none; box-shadow:0 8px 24px rgba(79,70,229,.3); transition:all .25s; }
.btn-primary-hero:hover { background:#4338ca; color:#fff; transform:translateY(-2px); }
.btn-secondary-hero { display:inline-flex; align-items:center; gap:8px; background:#fff; color:var(--text); padding:0.85rem 1.8rem; border-radius:12px; font-weight:600; font-size:1rem; text-decoration:none; border:1.5px solid var(--border); transition:all .25s; }
.btn-secondary-hero:hover { border-color:#c7d2fe; color:var(--primary); background:var(--primary-soft); }

.hero-stats { display:flex; gap:2.5rem; flex-wrap:wrap; margin-top:2.5rem; padding-top:2rem; border-top:1px solid var(--border); }
.hero-stat .num { font-size:1.6rem; font-weight:800; color:var(--text); display:block; }
.hero-stat .lbl { font-size:0.8rem; color:var(--text-muted); font-weight:500; }

/* HERO VISUAL */
.hero-visual { position:relative; }
.hero-card-main { background:#fff; border-radius:20px; padding:1.5rem; box-shadow:0 20px 60px rgba(0,0,0,.10); border:1px solid var(--border); }
.hero-card-float { position:absolute; background:#fff; border-radius:14px; padding:0.8rem 1rem; box-shadow:0 10px 30px rgba(0,0,0,.10); border:1px solid var(--border); display:flex; align-items:center; gap:10px; font-size:0.8rem; font-weight:600; }
.hero-card-float .ficon { width:34px; height:34px; border-radius:9px; display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.float-1 { top:-18px; right:24px; animation:fy 4s ease-in-out infinite; }
.float-2 { bottom:24px; left:-28px; animation:fy 4s ease-in-out infinite 1.5s; }
.float-3 { top:46%; right:-28px; animation:fy 4s ease-in-out infinite 3s; }
@keyframes fy { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }

.score-ring { width:100px; height:100px; margin:0 auto 1rem; position:relative; }
.score-ring svg { transform:rotate(-90deg); }
.score-ring-text { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; }
.score-ring-text .big { font-size:1.4rem; font-weight:800; color:var(--primary); }
.score-ring-text .sm { font-size:0.62rem; color:var(--text-muted); font-weight:600; }

.mini-bars { display:flex; flex-direction:column; gap:6px; }
.mini-bar-row { display:flex; align-items:center; gap:8px; font-size:0.7rem; }
.mini-bar-lbl { width:62px; color:var(--text-muted); font-weight:500; text-align:right; flex-shrink:0; }
.mini-bar-track { flex:1; height:6px; background:var(--bg-soft); border-radius:10px; overflow:hidden; }
.mini-bar-fill { height:100%; border-radius:10px; transition:width .8s ease; }
.mini-bar-val { width:28px; font-weight:700; color:var(--text); }

/* HOW IT WORKS */
.flow-step { display:flex; gap:1.75rem; align-items:flex-start; padding:1.75rem 0; border-bottom:1px dashed var(--border); }
.flow-step:last-child { border-bottom:none; }
.step-num { width:50px; height:50px; min-width:50px; background:linear-gradient(135deg,#4f46e5,#7c3aed); border-radius:14px; display:flex; align-items:center; justify-content:center; color:#fff; font-size:1.2rem; font-weight:800; box-shadow:0 6px 18px rgba(79,70,229,.28); }
.step-body h3 { font-size:1.05rem; font-weight:700; color:var(--text); margin-bottom:.3rem; }
.step-body p { font-size:0.875rem; color:var(--text-muted); line-height:1.65; }

/* BOOK FLOW */
.book-flow { display:flex; flex-direction:column; gap:12px; }
.book-flow-item { background:#fff; border:1px solid var(--border); border-radius:14px; padding:1rem 1.25rem; display:flex; align-items:center; gap:14px; transition:all .2s; }
.book-flow-item:hover { border-color:#c7d2fe; box-shadow:0 4px 16px rgba(79,70,229,.10); }
.bfi-icon { width:42px; height:42px; min-width:42px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.bfi-text h5 { font-size:0.88rem; font-weight:700; color:var(--text); margin:0; }
.bfi-text p { font-size:0.78rem; color:var(--text-muted); margin:0; }
.bfi-badge { margin-left:auto; font-size:0.65rem; font-weight:700; padding:3px 8px; border-radius:6px; white-space:nowrap; }

/* TRACKING CARDS */
.track-card { background:#fff; border:1px solid var(--border); border-radius:18px; padding:1.4rem; height:100%; }
.track-card h4 { font-size:0.9rem; font-weight:700; color:var(--text); margin-bottom:1rem; display:flex; align-items:center; gap:7px; }
.track-card h4 i { color:var(--primary); }
.stat-row { display:flex; justify-content:space-between; align-items:center; padding:0.55rem 0; border-bottom:1px solid var(--bg-soft); }
.stat-row:last-child { border:none; }
.stat-row .sl { font-size:0.8rem; color:var(--text-muted); }
.stat-row .sv { font-size:0.9rem; font-weight:700; color:var(--text); }
.perf-bar { height:7px; background:var(--bg-soft); border-radius:10px; overflow:hidden; margin-top:4px; }
.perf-fill { height:100%; border-radius:10px; transition:width .8s ease; }
.topic-chip { display:inline-flex; align-items:center; gap:5px; padding:4px 10px; border-radius:100px; font-size:0.72rem; font-weight:600; margin:3px; }
.chip-weak { background:#fef2f2; color:#ef4444; }
.chip-ok { background:#fefce8; color:#ca8a04; }
.chip-good { background:#f0fdf4; color:#16a34a; }

/* FEATURE CARDS */
.feature-card { background:#fff; border:1px solid var(--border); border-radius:18px; padding:1.6rem; height:100%; transition:all .3s; position:relative; overflow:hidden; }
.feature-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,#4f46e5,#7c3aed); opacity:0; transition:.3s; }
.feature-card:hover { box-shadow:0 10px 36px rgba(0,0,0,.09); transform:translateY(-3px); border-color:#c7d2fe; }
.feature-card:hover::before { opacity:1; }
.feature-icon { width:50px; height:50px; border-radius:13px; display:flex; align-items:center; justify-content:center; font-size:1.3rem; margin-bottom:1rem; }
.feature-card h3 { font-size:1rem; font-weight:700; color:var(--text); margin-bottom:.45rem; }
.feature-card p { font-size:0.85rem; color:var(--text-muted); line-height:1.65; }

/* TESTIMONIALS */
.testimonial-card { background:#fff; border:1px solid var(--border); border-radius:18px; padding:1.5rem; height:100%; }
.stars { color:#f59e0b; font-size:0.85rem; margin-bottom:.65rem; }
.testimonial-card p { font-size:0.86rem; color:var(--text-muted); line-height:1.7; margin-bottom:1rem; font-style:italic; }
.author { display:flex; align-items:center; gap:10px; }
.author-avatar { width:36px; height:36px; border-radius:50%; background:linear-gradient(135deg,#4f46e5,#7c3aed); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:700; font-size:0.88rem; }
.author-info .aname { font-size:0.84rem; font-weight:700; color:var(--text); }
.author-info .arole { font-size:0.73rem; color:var(--text-muted); }

/* RESPONSIVE */
@media(max-width:768px) {
    .hero { padding:100px 0 50px; }
    .section { padding:50px 0; }
    .hero-stats { gap:1.5rem; }
    .float-1,.float-2,.float-3 { display:none; }
    .hero-visual { margin-top:2.5rem; }
}
