*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #1848CC;
    --blue-dark: #0F2D8A;
    --blue-light: #EBF1FD;
    --blue-mid: #3B6CE8;
    --accent: #00C9A7;
    --accent-light: #D4F5EE;
    --text: #111827;
    --text2: #4B5563;
    --text3: #9CA3AF;
    --bg: #F7F9FF;
    --white: #FFFFFF;
    --border: #E5E9F5;
    --danger: #C0392B;
    --danger-light: #FDE8E8;
    --success: #0A7A61;
    --success-light: #D4F5EE;
    --r: 14px;
    --r-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: clamp(32px, 5vw, 58px); letter-spacing: -0.5px; }
h2 { font-size: clamp(24px, 3.5vw, 40px); }
h3 { font-size: 20px; }
p { color: var(--text2); }
em { font-style: italic; color: var(--blue); }
a { color: inherit; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 560px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ---- NAV ---- */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--blue); text-decoration: none; }
.logo span { color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-menu a { font-size: 14px; font-weight: 500; color: var(--text2); text-decoration: none; transition: color .2s; }
.nav-menu a:hover { color: var(--blue); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-user-chip {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--text2);
    padding: 6px 12px; border-radius: 50px; background: var(--blue-light);
}

.nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px; align-items: center; justify-content: center;
    border-radius: 8px;
}
.nav-toggle:hover { background: var(--blue-light); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
    display: block; width: 20px; height: 2px; background: var(--text); position: relative; transition: all .2s;
}
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.open span::after { transform: rotate(-45deg); top: 0; }

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px 20px;
    border-top: 1px solid var(--border);
    background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu .btn { width: 100%; padding: 12px 14px; border-radius: 10px; font-size: 15px; text-decoration: none; color: var(--text2); }
.mobile-menu a:hover { background: var(--blue-light); color: var(--blue); }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 14px;
    border: none; cursor: pointer; border-radius: 50px; transition: all .2s; text-decoration: none;
}
.btn-primary { background: var(--blue); color: #fff; padding: 10px 22px; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); padding: 9px 20px; }
.btn-outline:hover { background: var(--blue-light); }
.btn-green { background: #25D366; color: #fff; padding: 12px 26px; font-size: 15px; }
.btn-green:hover { background: #1DA851; transform: translateY(-1px); }
.btn-danger { background: var(--danger-light); color: var(--danger); padding: 9px 20px; }
.btn-danger:hover { background: #FBD5D5; }
.btn-ghost { background: transparent; color: var(--text2); padding: 9px 16px; }
.btn-ghost:hover { background: var(--bg); }
.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ---- HERO ---- */
.hero { padding: 96px 0 72px; background: linear-gradient(160deg, var(--blue-light) 0%, var(--bg) 60%); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 8px; background: var(--white);
    border: 1px solid var(--border); border-radius: 50px; padding: 6px 14px;
    font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 20px;
}
.hero-tag::before { content: '💬'; }
.hero h1 { margin-bottom: 18px; }
.hero p { font-size: 17px; line-height: 1.7; margin-bottom: 28px; max-width: 480px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
    background: linear-gradient(145deg, var(--blue) 0%, var(--blue-mid) 100%);
    border-radius: 24px; padding: 36px; color: #fff; position: relative; overflow: hidden;
}
.hero-visual::before {
    content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
    background: rgba(255, 255, 255, .07); border-radius: 50%;
}
.hero-visual h3 { color: #fff; font-size: 22px; margin-bottom: 6px; }
.hero-visual p { color: rgba(255, 255, 255, .75); font-size: 14px; margin-bottom: 24px; }

.mini-cards { display: flex; flex-direction: column; gap: 10px; }
.mini-card {
    background: rgba(255, 255, 255, .12); border-radius: 12px; padding: 12px 16px;
    display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255, 255, 255, .15);
}
.mini-card .ava {
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; overflow: hidden;
}
.mini-card .ava img { width: 100%; height: 100%; object-fit: cover; }
.mini-card .info strong { display: block; font-size: 14px; font-weight: 600; color: #fff; }
.mini-card .info span { font-size: 12px; color: rgba(255, 255, 255, .65); }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; text-align: center; }
.h-stat { background: rgba(255, 255, 255, .1); border-radius: 10px; padding: 12px 8px; }
.h-stat strong { display: block; font-size: 22px; font-weight: 700; color: #fff; font-family: 'DM Serif Display', serif; }
.h-stat span { font-size: 11px; color: rgba(255, 255, 255, .65); }

/* ---- SECTION HEADERS ---- */
.how { background: var(--white); }
.sec-label { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.sec-title { margin-bottom: 10px; }
.sec-sub { font-size: 16px; color: var(--text2); max-width: 500px; margin-bottom: 48px; }
.center { text-align: center; }
.center .sec-sub { margin-left: auto; margin-right: auto; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card { background: var(--bg); border-radius: var(--r); padding: 28px 24px; border: 1px solid var(--border); text-align: center; }
.step-num {
    width: 52px; height: 52px; background: var(--blue); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-family: 'DM Serif Display', serif;
    font-size: 22px; color: #fff; margin: 0 auto 18px;
}
.step-card h3 { font-size: 18px; margin-bottom: 8px; }
.step-card p { font-size: 14px; line-height: 1.65; }

/* ---- TALENT SECTION ---- */
.talents { background: var(--bg); }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; justify-content: center; }
.filter-btn {
    background: var(--white); border: 1.5px solid var(--border); border-radius: 50px; padding: 7px 18px;
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; color: var(--text2);
    cursor: pointer; transition: all .2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--blue); border-color: var(--blue); color: #fff; }

.talent-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.talent-empty { grid-column: 1 / -1; text-align: center; padding: 48px 24px; color: var(--text3); }
.talent-card {
    background: var(--white); border-radius: var(--r); border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s, border-color .2s; overflow: hidden;
}
.talent-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(24, 72, 204, .1); border-color: var(--blue); }
.talent-top { padding: 24px 24px 16px; display: flex; align-items: flex-start; gap: 16px; }
.talent-ava {
    width: 70px; height: 70px; border-radius: 50%; flex-shrink: 0; object-fit: cover;
    display: flex; align-items: center; justify-content: center; font-family: 'DM Serif Display', serif;
    font-size: 26px; font-weight: 400; color: #fff; overflow: hidden;
}
.talent-ava img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.talent-info { flex: 1; min-width: 0; }
.talent-info h3 { font-size: 18px; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.talent-handle { font-size: 12px; color: var(--text3); margin-bottom: 8px; }
.talent-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 50px; white-space: nowrap; }
.tag-blue { background: var(--blue-light); color: var(--blue); }
.tag-green { background: var(--accent-light); color: #0A7A61; }
.tag-orange { background: #FEF0E6; color: #9A4500; }
.tag-purple { background: #F0EBFF; color: #5A0FC8; }
.tag-pink { background: #FDEEF5; color: #9A2055; }
.tag-red { background: #FDE8E8; color: #C0392B; }

.talent-mid { padding: 0 24px 16px; }
.talent-hobbies { font-size: 13px; color: var(--text2); line-height: 1.5; }
.talent-hobbies strong { color: var(--text); font-weight: 600; }
.talent-bottom { border-top: 1px solid var(--border); padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.talent-rate { font-size: 13px; color: var(--text2); }
.talent-rate strong { color: var(--blue); font-size: 15px; }
.btn-chat {
    background: var(--blue); color: #fff; border: none; border-radius: 50px; padding: 8px 18px;
    font-size: 13px; font-weight: 600; font-family: 'DM Sans', sans-serif; cursor: pointer; transition: all .2s;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-chat:hover { background: var(--blue-dark); }

/* ---- GENDER TABS ---- */
.gender-tabs { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 18px; }
.gender-tab {
    background: var(--white); border: 1.5px solid var(--border); border-radius: 50px; padding: 9px 22px;
    font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--text2);
    cursor: pointer; transition: all .2s;
}
.gender-tab:hover, .gender-tab.active { background: var(--text); border-color: var(--text); color: #fff; }

.gender-badge { display: inline-block; font-size: 13px; font-weight: 700; margin-left: 2px; }
.gender-badge.gender-P { color: #9A2055; }
.gender-badge.gender-L { color: #1848CC; }

/* ---- RATING ---- */
.talent-rating { display: flex; align-items: center; gap: 6px; margin-top: 6px; flex-wrap: wrap; }
.stars-static { color: #F5A623; font-size: 13px; letter-spacing: 1px; }
.rating-num { font-size: 11px; color: var(--text3); }

/* ---- ORDER MODAL ---- */
.modal-overlay {
    display: none; position: fixed; inset: 0; background: rgba(15, 20, 30, .55);
    z-index: 999; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
    background: var(--white); border-radius: var(--r); padding: 32px; max-width: 420px; width: 100%;
    position: relative; box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.modal-close {
    position: absolute; top: 16px; right: 18px; background: none; border: none; font-size: 24px;
    color: var(--text3); cursor: pointer; line-height: 1;
}
.modal-box h3 { font-size: 20px; margin-bottom: 6px; }
.modal-sub { font-size: 14px; color: var(--text2); margin-bottom: 20px; }
.modal-price { font-size: 15px; margin: 16px 0; color: var(--text); }
.modal-price strong { color: var(--blue); font-size: 18px; }
.modal-login-note { font-size: 14px; color: var(--text2); text-align: center; margin-top: 12px; }

/* ---- CTA TALENT (daftar) ---- */
.daftar { background: var(--white); }
.daftar-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.daftar-info .sec-title { margin-bottom: 14px; }
.daftar-info p { font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
.benefit-list { display: flex; flex-direction: column; gap: 14px; }
.benefit { display: flex; align-items: flex-start; gap: 14px; background: var(--bg); border-radius: var(--r-sm); padding: 14px 16px; border: 1px solid var(--border); }
.benefit-icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.benefit-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.benefit-text span { font-size: 13px; color: var(--text3); }

.daftar-card {
    background: linear-gradient(145deg, var(--blue-dark), var(--blue));
    border-radius: 20px; padding: 40px 32px; color: #fff; text-align: center;
}
.daftar-card h3 { color: #fff; font-size: 26px; margin-bottom: 10px; }
.daftar-card p { color: rgba(255,255,255,.75); margin-bottom: 24px; font-size: 14px; }
.daftar-card .btn-green { width: 100%; }
.daftar-card .btn-outline { width: 100%; margin-top: 10px; border-color: rgba(255,255,255,.5); color: #fff; }
.daftar-card .btn-outline:hover { background: rgba(255,255,255,.12); }

/* ---- FORM CARD (dipakai di halaman auth) ---- */
.form-card {
    background: var(--white); border-radius: 20px; padding: 36px; border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(24,72,204,.06);
}
.form-card .form-title { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--text); margin-bottom: 6px; }
.form-card .form-sub { font-size: 14px; color: var(--text2); margin-bottom: 28px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; background: var(--bg); border: 1.5px solid var(--border); border-radius: 10px;
    padding: 11px 14px; font-size: 14px; font-family: 'DM Sans', sans-serif; color: var(--text);
    outline: none; transition: border .2s; -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text3); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: none; height: 90px; }
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: var(--danger); background: var(--danger-light); }
.field-error { font-size: 12px; color: var(--danger); margin-top: 5px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 11px; color: var(--text3); text-align: center; margin-top: 10px; }
.form-hint { font-size: 12px; color: var(--text3); margin-top: 5px; }
.form-footer-link { text-align: center; font-size: 14px; color: var(--text2); margin-top: 20px; }
.form-footer-link a { color: var(--blue); font-weight: 600; text-decoration: none; }
.form-footer-link a:hover { text-decoration: underline; }

.auth-page { padding: 64px 0 96px; min-height: calc(100vh - 64px); display: flex; align-items: center; background: linear-gradient(160deg, var(--blue-light) 0%, var(--bg) 55%); }
.auth-switch { display: flex; gap: 8px; background: var(--bg); border-radius: 50px; padding: 4px; margin-bottom: 28px; }
.auth-switch a { flex: 1; text-align: center; padding: 9px 12px; border-radius: 50px; font-size: 13px; font-weight: 600; text-decoration: none; color: var(--text2); }
.auth-switch a.active { background: var(--blue); color: #fff; }

/* ---- FILE UPLOAD ---- */
.upload-area { border: 2px dashed var(--border); border-radius: 10px; padding: 20px; text-align: center; cursor: pointer; transition: border .2s; }
.upload-area:hover { border-color: var(--blue); }
.upload-area input { display: none; }
.upload-area p { font-size: 13px; color: var(--text3); margin-top: 6px; }
.upload-preview { display: none; width: 88px; height: 88px; border-radius: 50%; object-fit: cover; margin: 0 auto 8px; }

/* ---- ALERTS / FLASH ---- */
.alert { border-radius: 12px; padding: 14px 18px; font-size: 14px; margin-bottom: 20px; display: flex; gap: 10px; align-items: flex-start; }
.alert-success { background: var(--success-light); color: var(--success); }
.alert-error { background: var(--danger-light); color: var(--danger); }
.alert ul { margin: 4px 0 0 18px; }

/* ---- BADGES ---- */
.badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.badge-approved { background: var(--success-light); color: var(--success); }
.badge-pending { background: #FEF3E0; color: #9A6A00; }
.badge-active { background: var(--blue-light); color: var(--blue); }
.badge-inactive { background: var(--border); color: var(--text3); }

/* ---- DASHBOARD ---- */
.dash-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 40px 0; }
.dash-header .container { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
.dash-title { display: flex; align-items: center; gap: 16px; }
.dash-ava {
    width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif; font-size: 24px; color: #fff; overflow: hidden; flex-shrink: 0;
}
.dash-ava img { width: 100%; height: 100%; object-fit: cover; }
.dash-body { padding: 48px 0 96px; }
.dash-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px; align-items: start; }
.dash-card { background: var(--white); border-radius: var(--r); border: 1px solid var(--border); padding: 28px; }
.dash-card h3 { font-size: 18px; margin-bottom: 18px; }
.dash-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.dash-row:last-child { border-bottom: none; }
.dash-row span:first-child { color: var(--text3); }
.dash-row span:last-child { font-weight: 600; }

.order-list { display: flex; flex-direction: column; gap: 12px; }
.order-row {
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px; flex-wrap: wrap;
}
.order-info { display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.order-info strong { font-size: 14px; }
.order-info span { color: var(--text2); }
.order-info .order-date { color: var(--text3); font-size: 11px; }
.order-status { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.rating-form-card { border: 1px solid var(--border); border-radius: 12px; padding: 16px; margin-top: 12px; }
.star-picker { display: flex; gap: 6px; font-size: 26px; margin: 10px 0; }
.star-picker .star-btn { cursor: pointer; color: #D8DCE3; background: none; border: none; padding: 0; transition: color .15s; }
.star-picker .star-btn.selected { color: #F5A623; }
.star-picker .star-btn:hover { color: #F5A623; }

.switch { position: relative; display: inline-block; width: 46px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: var(--border); border-radius: 50px; cursor: pointer; transition: .2s; }
.switch .slider::before { content: ''; position: absolute; width: 20px; height: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .2s; }
.switch input:checked + .slider { background: var(--success); }
.switch input:checked + .slider::before { transform: translateX(20px); }

/* ---- ADMIN TABLE ---- */
.admin-table-wrap { background: var(--white); border-radius: var(--r); border: 1px solid var(--border); overflow-x: auto; }
table.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 760px; }
table.admin-table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--text3); padding: 14px 16px; border-bottom: 1px solid var(--border); }
table.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
table.admin-table tr:last-child td { border-bottom: none; }
.admin-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-actions form { display: inline; }
.admin-actions .btn { padding: 6px 14px; font-size: 12px; }

/* ---- TESTIMONIALS ---- */
.testi { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card { background: var(--white); border-radius: var(--r); padding: 24px; border: 1px solid var(--border); }
.stars { color: #F59E0B; font-size: 15px; margin-bottom: 10px; }
.testi-text { font-size: 14px; line-height: 1.7; color: var(--text2); margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-ava { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: #fff; flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--text3); }

/* ---- FOOTER ---- */
footer { background: var(--text); padding: 48px 0 32px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
.footer-brand .logo { color: #fff; display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: rgba(255, 255, 255, .45); max-width: 220px; }
.footer-links h4 { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255, 255, 255, .45); margin-bottom: 12px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255, 255, 255, .65); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .08); text-align: center; font-size: 13px; color: rgba(255, 255, 255, .3); }

/* ---- WA FLOAT ---- */
.wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 54px; height: 54px;
    background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 26px; box-shadow: 0 4px 20px rgba(37, 211, 102, .4); text-decoration: none; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ---- SCROLL ANIMATIONS ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .45s ease, transform .45s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .dash-grid { grid-template-columns: 1fr; }
    .daftar-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-inner .hero-visual { display: none; }
    .steps, .testi-grid { grid-template-columns: 1fr; }
    .nav-menu { display: none; }
    .nav-right .btn-outline, .nav-right .btn-primary { display: none; }
    .nav-toggle { display: flex; }
    .form-row-2 { grid-template-columns: 1fr; }
    footer .footer-inner { flex-direction: column; }
    .talent-grid { grid-template-columns: 1fr; }
    .dash-header .container { flex-direction: column; align-items: flex-start; }
}
