* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: linear-gradient(135deg, #f0f4ff 0%, #faf5ff 50%, #fef2f8 100%);
  color: #1e293b;
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  box-shadow: 0 4px 30px rgba(139, 92, 246, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 15px rgba(99, 102, 241, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
}

.logo-icon::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  position: absolute;
}

.logo-icon::before {
  content: "";
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-text {
  font-size: 1.15rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #475569;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
}

.nav-links .btn-login {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  padding: 10px 28px;
  border-radius: 10px;
  box-shadow:
    0 4px 15px rgba(99, 102, 241, 0.35),
    0 1px 3px rgba(99, 102, 241, 0.2);
  font-weight: 600;
  margin-left: 8px;
}

.nav-links .btn-login:hover {
  box-shadow:
    0 6px 25px rgba(99, 102, 241, 0.5),
    0 2px 6px rgba(99, 102, 241, 0.3);
  transform: translateY(-1px);
  background: linear-gradient(135deg, #5558e6, #7c4feb);
  color: white;
}

/* ========== HERO SECTION ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
  background-image: url('bg.jpg');
  background-size: cover;
  background-position: center;
}

/* Ganti ::before menjadi overlay gelap penuh */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* naikkan dari 0.5 ke 0.65 */
  z-index: 0;
}

/* Pindahkan efek lingkaran ungu ke ::after */
.hero::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: white; /* ganti dari #1e293b ke white */
}

.hero-content h1 span {
  background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85); /* ganti dari #64748b */
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow:
    0 8px 30px rgba(99, 102, 241, 0.35),
    0 2px 6px rgba(99, 102, 241, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(99, 102, 241, 0.45),
    0 4px 10px rgba(99, 102, 241, 0.25);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: rgba(255, 255, 255, 0.8);
  color: #6366f1;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: #6366f1;
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-main {
  width: 380px;
  background: linear-gradient(145deg, #ffffff, #f8f7ff);
  border-radius: 24px;
  padding: 32px;
  box-shadow:
    20px 20px 60px #d1d5db,
    -20px -20px 60px #ffffff,
    0 10px 40px rgba(99, 102, 241, 0.1);
  position: relative;
  z-index: 2;
}

.hero-card-main .card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.card-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.card-avatar-icon {
  width: 24px;
  height: 24px;
  border: 3px solid white;
  border-radius: 50%;
  position: relative;
}

.card-avatar-icon::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -8px;
  width: 18px;
  height: 8px;
  border: 2px solid white;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}

.card-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #1e293b;
}

.card-role {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-top: 2px;
}

.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-box {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 4px;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.floating-card-1 {
  top: 20px;
  right: -30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-card-1 .fc-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.fc-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
}

.fc-sub {
  font-size: 0.72rem;
  color: #94a3b8;
}

.floating-card-2 {
  bottom: 30px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-card-2 .fc-icon2 {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fc-icon2 svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* === Animasi Floating untuk Floating Card === */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating-card {
  animation: float 3s ease-in-out infinite;
  will-change: transform; /* bantu performa render */
}

.floating-card-1 {
  animation-delay: 0s;
}

.floating-card-2 {
  animation-delay: 1.5s; /* setengah durasi agar tidak serempak */
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  padding: 50px 2rem;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-item .number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-item .label {
  font-size: 0.95rem;
  opacity: 0.85;
  font-weight: 400;
}

/* ========== PROFIL SECTION ========== */
.profil {
  padding: 100px 2rem;
  position: relative;
}

.profil::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(99, 102, 241, 0.2),
    transparent
  );
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #6366f1;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1e293b;
  line-height: 1.2;
}

.section-title span {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 50px;
}

.profil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.profil-card {
  background: linear-gradient(145deg, #ffffff, #f8f7ff);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow:
    10px 10px 30px #d1d5db,
    -10px -10px 30px #ffffff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.profil-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profil-card:hover::before {
  opacity: 1;
}

.profil-card:hover {
  transform: translateY(-8px);
  box-shadow:
    15px 15px 40px #c8ccd4,
    -15px -15px 40px #ffffff,
    0 10px 30px rgba(99, 102, 241, 0.1);
}

.profil-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.profil-icon.blue {
  background: linear-gradient(135deg, #6366f1, #818cf8);
}

.profil-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.profil-icon.pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.profil-icon.teal {
  background: linear-gradient(135deg, #14b8a6, #2dd4bf);
}

.profil-icon.amber {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.profil-icon.rose {
  background: linear-gradient(135deg, #f43f5e, #fb7185);
}

.profil-icon svg {
  width: 28px;
  height: 28px;
  fill: white;
}

.profil-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.profil-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.7;
}

/* ========== FITUR SECTION ========== */
.fitur {
  padding: 100px 2rem;
  background: linear-gradient(
    180deg,
    rgba(99, 102, 241, 0.03) 0%,
    rgba(168, 85, 247, 0.05) 100%
  );
}

.fitur-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fitur-visual {
  position: relative;
}

.fitur-main-card {
  background: linear-gradient(145deg, #ffffff, #f8f7ff);
  border-radius: 24px;
  padding: 32px;
  box-shadow:
    20px 20px 60px #d1d5db,
    -20px -20px 60px #ffffff;
}

.fitur-main-card .schedule-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.fitur-main-card .schedule-item:last-child {
  border-bottom: none;
}

.schedule-dot {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.schedule-dot svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.schedule-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 3px;
}

.schedule-info p {
  font-size: 0.8rem;
  color: #94a3b8;
}

.schedule-time {
  margin-left: auto;
  font-size: 0.78rem;
  color: #6366f1;
  font-weight: 600;
  background: rgba(99, 102, 241, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

.fitur-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fitur-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.fitur-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #10b981, #34d399);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}

.fitur-check svg {
  width: 14px;
  height: 14px;
  fill: white;
}

.fitur-item-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.fitur-item-text p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
}

/* ========== KONTAK SECTION ========== */
.kontak {
  padding: 100px 2rem;
}

.kontak-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.kontak-info h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 16px;
}

.kontak-info h2 span {
  background: linear-gradient(135deg, #6366f1, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kontak-info > p {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 40px;
}

.kontak-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kontak-card-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: linear-gradient(145deg, #ffffff, #f8f7ff);
  border-radius: 16px;
  box-shadow:
    8px 8px 20px #d1d5db,
    -8px -8px 20px #ffffff;
}

.kontak-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kontak-card-icon svg {
  width: 22px;
  height: 22px;
  fill: white;
}

.kontak-card-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 3px;
}

.kontak-card-text p {
  font-size: 0.88rem;
  color: #64748b;
}

.kontak-form-wrapper {
  background: linear-gradient(145deg, #ffffff, #f8f7ff);
  border-radius: 24px;
  padding: 40px;
  box-shadow:
    15px 15px 40px #d1d5db,
    -15px -15px 40px #ffffff;
}

.kontak-form-wrapper h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.92rem;
  color: #1e293b;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
  outline: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #6366f1;
  box-shadow:
    0 0 0 4px rgba(99, 102, 241, 0.1),
    inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
}

.btn-submit:hover {
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

/* ========== LOGIN SECTION ========== */
.login {
  padding: 100px 2rem;
  background: linear-gradient(
    180deg,
    rgba(99, 102, 241, 0.03) 0%,
    rgba(168, 85, 247, 0.06) 100%
  );
}

.login-wrapper {
  max-width: 480px;
  margin: 0 auto;
  background: linear-gradient(145deg, #ffffff, #f8f7ff);
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow:
    20px 20px 60px #c8ccd4,
    -20px -20px 60px #ffffff,
    0 10px 40px rgba(99, 102, 241, 0.08);
  position: relative;
  overflow: hidden;
}

.login-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899);
}

.login-header {
  text-align: center;
  margin-bottom: 36px;
}

.login-logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.35);
  position: relative;
}

.login-logo::after {
  content: "";
  width: 28px;
  height: 28px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  position: absolute;
}

.login-logo::before {
  content: "";
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-header h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}

.login-header p {
  font-size: 0.92rem;
  color: #94a3b8;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form .form-group label {
  font-size: 0.85rem;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 44px;
}

.eye-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0.4;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #64748b;
}

.remember-me input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #6366f1;
  cursor: pointer;
}

.forgot-link {
  font-size: 0.85rem;
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
}

.forgot-link:hover {
  text-decoration: underline;
}

.btn-login-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-login-submit:hover {
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.45);
  transform: translateY(-2px);
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.login-divider span {
  font-size: 0.82rem;
  color: #94a3b8;
}

.login-footer {
  text-align: center;
  font-size: 0.88rem;
  color: #64748b;
}

.login-footer a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
}

.login-footer a:hover {
  text-decoration: underline;
}

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(135deg, #1e1b4b, #2d1b69, #1e1b4b);
  padding: 60px 2rem 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    #6366f1,
    #a855f7,
    #ec4899,
    #f59e0b,
    #10b981
  );
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  color: #a78bfa;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: #a78bfa;
  text-decoration: none;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #c4b5fd;
  padding-left: 6px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(167, 139, 250, 0.15);
  text-align: center;
  font-size: 0.85rem;
  color: #7c6fae;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .profil-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fitur-content {
    grid-template-columns: 1fr;
  }

  .fitur-visual {
    order: -1;
  }

  .kontak-content {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 12px 1rem;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 160px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .profil-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .login-wrapper {
    padding: 36px 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ========== PAGE TRANSITION ========== */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: fadeOut 0.3s ease forwards;
}

::view-transition-new(root) {
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-20px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

