/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15,23,42,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo-img {
  max-height: 50px;
  max-width: 200px;
  height: auto;
  width: auto;
  object-fit: contain;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white; font-weight: 700; font-family: 'Playfair Display', serif;
}
.nav-logo-name {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  font-weight: 700; color: white; line-height: 1.2; display: block;
}
.nav-logo-tagline {
  font-size: 0.62rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em; text-transform: uppercase; display: block;
}
.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.85rem;
  font-weight: 500; padding: 0.45rem 0.8rem; border-radius: 6px;
  transition: var(--transition); white-space: nowrap; display: block;
}
.nav-links a:hover, .nav-links a.active { color: white; background: rgba(255,255,255,0.1); }
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: white !important; padding: 0.5rem 1.2rem !important;
  border-radius: 50px !important; font-weight: 600 !important;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,58,138,0.4) !important;
  background: linear-gradient(135deg, var(--secondary), var(--primary)) !important;
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 25px; height: 2px;
  background: white; border-radius: 2px; transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; background: rgba(15,23,42,0.98);
  border-top: 1px solid rgba(255,255,255,0.08); padding: 1rem 1.5rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu a {
  display: block; color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; padding: 0.75rem 1rem;
  border-radius: 8px; transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(255,255,255,0.1); color: white; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block; text-decoration: none; color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 0.875rem 2rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  position: relative; overflow: hidden; z-index: 1; transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(30,58,138,0.3); border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: 0; width: 0; height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  transition: all 0.4s; z-index: -1;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(30,58,138,0.4); }
.btn-primary:hover::before { width: 100%; }

.btn-outline {
  display: inline-block; text-decoration: none; color: white; background: transparent;
  padding: 0.875rem 2rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.7); transition: all 0.3s; cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.btn-outline:hover { background: white; color: var(--primary); border-color: white; transform: translateY(-3px); }

.btn-amber {
  display: inline-block; text-decoration: none; color: white;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  padding: 0.875rem 2rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s; box-shadow: 0 4px 15px rgba(217,119,6,0.3);
  border: none; cursor: pointer; font-family: 'Poppins', sans-serif;
}
.btn-amber:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(217,119,6,0.4); }

.btn-dark {
  display: inline-block; text-decoration: none; color: white;
  background: var(--dark); padding: 0.875rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; transition: all 0.3s;
  border: none; cursor: pointer; font-family: 'Poppins', sans-serif;
}
.btn-dark:hover { transform: translateY(-3px); background: #1e293b; }

/* ===== ICON CIRCLES ===== */
.icon-circle {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-circle-lg {
  width: 80px; height: 80px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-red    { background: #fee2e2; }
.icon-amber  { background: #fef3c7; }
.icon-blue   { background: #dbeafe; }
.icon-green  { background: #dcfce7; }
.icon-teal   { background: #ccfbf1; }
.icon-purple { background: #f3e8ff; }

/* ===== CARDS ===== */
.white-card {
  background: white; border-radius: 16px; padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: var(--transition);
}
.white-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

.framework-card {
  border-radius: 16px; padding: 2rem; border: 1px solid #e2e8f0;
  background: white; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: var(--transition); position: relative; z-index: 1; overflow: hidden;
}
.framework-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  opacity: 0; z-index: -1; transition: var(--transition);
}
.framework-card:hover::after { opacity: 1; }
.framework-card:hover { transform: translateY(-5px) scale(1.02); }
.framework-card:hover h3,
.framework-card:hover p,
.framework-card:hover .step-num { color: white !important; }
.framework-card:hover .step-circle { background: rgba(255,255,255,0.2) !important; }

.step-circle {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-right: 1rem; flex-shrink: 0;
}
.step-num { font-weight: 700; }

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
  background: white; border-radius: 16px; padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: var(--transition); position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 0; left: 1rem;
  font-size: 8rem; font-family: 'Playfair Display', serif;
  color: rgba(30,58,138,0.08); line-height: 1;
}
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.t-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; color: white; margin-right: 1rem; flex-shrink: 0;
}
.stars { display: flex; gap: 2px; color: #f59e0b; }
.stars svg { width: 18px; height: 18px; }

/* ===== ACCORDION / FAQ ===== */
.accordion-item {
  background: #f8fafc; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 1rem; transition: var(--transition);
}
.accordion-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.accordion-header {
  padding: 1.25rem 1.5rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; transition: var(--transition);
}
.accordion-header:hover { background: #f1f5f9; }
.accordion-header h3 {
  font-family: 'Poppins', sans-serif; font-size: 1rem;
  font-weight: 600; margin: 0; color: var(--dark);
}
.accordion-arrow { width: 24px; height: 24px; color: #2563eb; transition: transform 0.3s ease; flex-shrink: 0; }
.accordion-arrow.open { transform: rotate(180deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease-out; padding: 0 1.5rem; }
.accordion-content.active { max-height: 600px; padding: 0 1.5rem 1.5rem; }
.accordion-content p { color: #475569; line-height: 1.7; margin-bottom: 0.75rem; }

/* ===== FORM ===== */
.form-card {
  background: white; border-radius: 20px; padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: #374151; margin-bottom: 0.5rem; }
.form-control {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid #e2e8f0;
  border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 0.9rem;
  transition: var(--transition); background: white; color: var(--dark);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,58,138,0.1); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ===== GUARANTEE BOX ===== */
.guarantee-box {
  display: flex; align-items: center; gap: 2rem;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border-radius: 20px; padding: 2.5rem; max-width: 900px; margin: 0 auto;
}
.guarantee-icon {
  width: 96px; height: 96px; background: #f59e0b; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ===== URGENCY BOX ===== */
.urgency-box {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-radius: 20px; padding: 3rem; max-width: 900px; margin: 0 auto;
  position: relative; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* ===== TAG PILLS ===== */
.tags-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.tag-pill {
  display: flex; align-items: center; gap: 0.375rem;
  padding: 0.375rem 0.875rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
}

/* ===== CHECK LIST ===== */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.check-icon {
  width: 40px; height: 40px; border-radius: 50%; background: #dcfce7;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ===== STEP LIST ===== */
.step-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.step-list li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.step-num-circle {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.num-red    { background: #fee2e2; color: #b91c1c; }
.num-amber  { background: #fef3c7; color: #92400e; }
.num-blue   { background: #dbeafe; color: #1e40af; }
.num-teal   { background: #ccfbf1; color: #0f766e; }

/* ===== FOOTER ===== */
.footer { background: #0f172a; color: rgba(255,255,255,0.8); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem; margin-bottom: 3rem;
}
.footer-logo-img {
  max-height: 60px;
  max-width: 200px;
  height: auto;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin: 1rem 0; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.82rem; transition: var(--transition); }
.footer-bottom a:hover { color: white; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none; transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: white; }
.footer-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white; font-weight: 700; font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

/* ===== ADMIN PANEL ===== */
.admin-sidebar {
  width: 260px; background: #0f172a; min-height: 100vh;
  position: fixed; top: 0; left: 0; z-index: 100; padding: 0;
  display: flex; flex-direction: column;
}
.admin-sidebar-header {
  padding: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 0.75rem;
}
.admin-sidebar-header h2 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: white; margin: 0; }
.admin-nav { padding: 1rem 0; flex: 1; }
.admin-nav a {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem; color: rgba(255,255,255,0.65);
  text-decoration: none; font-size: 0.875rem; font-weight: 500;
  transition: var(--transition); border-left: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active {
  background: rgba(255,255,255,0.06); color: white;
  border-left-color: var(--secondary);
}
.admin-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }
.admin-content { margin-left: 260px; min-height: 100vh; background: #f1f5f9; }
.admin-topbar {
  background: white; padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 50;
}
.admin-topbar h1 { font-family: 'Poppins', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--dark); margin: 0; }
.admin-main { padding: 2rem; }
.admin-card {
  background: white; border-radius: 12px; padding: 1.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06); margin-bottom: 1.5rem;
}
.admin-card h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; color: var(--dark); margin: 0 0 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid #f1f5f9; }
.admin-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; margin-bottom: 2rem; }
.stat-card { background: white; border-radius: 12px; padding: 1.5rem; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
.stat-card .stat-num { font-size: 2rem; font-weight: 700; color: var(--primary); font-family: 'Poppins', sans-serif; }
.stat-card .stat-label { font-size: 0.8rem; color: #64748b; margin-top: 0.25rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 0.75rem 1rem; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #64748b; border-bottom: 2px solid #f1f5f9; }
.admin-table td { padding: 0.875rem 1rem; font-size: 0.875rem; color: var(--dark); border-bottom: 1px solid #f8fafc; }
.admin-table tr:hover td { background: #f8fafc; }
.admin-badge { display: inline-block; padding: 0.25rem 0.625rem; border-radius: 50px; font-size: 0.72rem; font-weight: 700; }
.badge-green { background: #dcfce7; color: #15803d; }
.badge-amber { background: #fef3c7; color: #92400e; }
.badge-red   { background: #fee2e2; color: #b91c1c; }
.admin-btn { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600; cursor: pointer; border: none; font-family: 'Poppins', sans-serif; transition: var(--transition); text-decoration: none; }
.admin-btn-primary { background: var(--primary); color: white; }
.admin-btn-primary:hover { background: #1e40af; }
.admin-btn-secondary { background: #f1f5f9; color: var(--dark); }
.admin-btn-secondary:hover { background: #e2e8f0; }
.admin-btn-danger { background: #fee2e2; color: #b91c1c; }
.admin-btn-danger:hover { background: #fecaca; }
.admin-form-group { margin-bottom: 1.25rem; }
.admin-form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: #374151; margin-bottom: 0.5rem; }
.admin-form-control {
  width: 100%; padding: 0.7rem 1rem; border: 1.5px solid #e2e8f0;
  border-radius: 8px; font-family: 'Poppins', sans-serif; font-size: 0.875rem;
  transition: var(--transition); background: white; color: var(--dark);
}
.admin-form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,58,138,0.1); }
textarea.admin-form-control { resize: vertical; min-height: 100px; }
.admin-alert { padding: 0.875rem 1.25rem; border-radius: 8px; margin-bottom: 1.25rem; font-size: 0.875rem; font-weight: 500; }
.alert-success { background: #dcfce7; color: #15803d; border: 1px solid #bbf7d0; }
.alert-error   { background: #fee2e2; color: #b91c1c; border: 1px solid #fecaca; }
.alert-info    { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* Login page */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%); padding: 2rem; }
.login-card { background: white; border-radius: 20px; padding: 3rem; width: 100%; max-width: 420px; box-shadow: 0 25px 60px rgba(0,0,0,0.3); }
.login-card h1 { font-size: 1.75rem; font-weight: 700; color: var(--dark); margin: 0 0 0.5rem; text-align: center; }
.login-card p { color: #64748b; text-align: center; margin-bottom: 2rem; font-size: 0.9rem; }
