/* // GOOGLE FONT IMPORT */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Sora:wght@500;600;700;800&display=swap");

/* // GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* // ROOT VARIABLES */
:root {
  --primary: #2458d6;
  --primary-dark: #143f9f;
  --primary-light: #eef4ff;
  --secondary: #0d2240;
  --dark: #111827;
  --text: #334155;
  --muted: #64748b;
  --white: #ffffff;
  --bg: #f6f8fc;
  --border: #e5e7eb;
  --green: #16a34a;
  --orange: #f59e0b;
  --red: #dc2626;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  --shadow-small: 0 12px 35px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --transition: all 0.32s ease;
}

/* // HTML SMOOTH SCROLL */
html {
  scroll-behavior: smooth;
}

/* // BODY STYLE */
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

/* // TEXT SELECTION */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* // IMAGE DEFAULT */
img {
  max-width: 100%;
  display: block;
}

/* // LINK DEFAULT */
a {
  text-decoration: none;
  color: inherit;
}

/* // BUTTON AND INPUT DEFAULT */
button,
input,
select,
textarea {
  font-family: inherit;
}

/* // BUTTON CURSOR */
button,
a,
select,
.primary-btn,
.light-btn,
.outline-btn,
.table-btn,
.quick-action-card,
.service-card,
.feature-card,
.rank-card,
.package-card {
  cursor: pointer;
}

/* // FOCUS ACCESSIBILITY */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

/* // COMMON PRIMARY BUTTON */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white) !important;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 14px 30px rgba(36, 88, 214, 0.28);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* // BUTTON SHINE EFFECT */
.primary-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: 0.6s;
}

/* // PRIMARY BUTTON HOVER */
.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(36, 88, 214, 0.38);
}

/* // PRIMARY BUTTON HOVER SHINE */
.primary-btn:hover::before {
  left: 130%;
}

/* // LIGHT BUTTON */
.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  color: var(--secondary);
  font-weight: 900;
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

/* // LIGHT BUTTON HOVER */
.light-btn:hover {
  background: var(--primary-light);
  border-color: rgba(36, 88, 214, 0.25);
  color: var(--primary);
  transform: translateY(-3px);
}

/* // OUTLINE BUTTON */
.outline-btn {
  border: 1px solid rgba(36, 88, 214, 0.35) !important;
  color: var(--primary) !important;
  background: rgba(36, 88, 214, 0.06) !important;
}

/* // FULL WIDTH BUTTON */
.full-width {
  width: 100%;
}

/* // NAVBAR */
.navbar {
  height: 78px;
  padding: 0 7%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* // LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-family: "Sora", sans-serif;
  font-size: 22px;
  font-weight: 900;
}

/* // LOGO ICON */
.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #5b7cff);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(36, 88, 214, 0.28);
}

/* // LOGO HOVER */
.logo:hover .logo-icon {
  animation: iconPulse 0.7s ease;
}

/* // NAV LINKS */
.navlinks {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* // NAV LINKS A */
.navlinks a {
  position: relative;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
}

/* // NAV LINK HOVER */
.navlinks a:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}

/* // ACTIVE NAV LINK */
.navlinks a.active-link {
  color: var(--primary);
  background: var(--primary-light);
}

/* // MENU BUTTON */
.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(36, 88, 214, 0.28);
}

/* // HOME HERO */
.home-hero {
  min-height: calc(100vh - 78px);
  margin: 36px 7%;
  padding: 58px;
  background:
    radial-gradient(circle at top left, rgba(36, 88, 214, 0.16), transparent 30%),
    linear-gradient(135deg, var(--white), #f9fbff);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 26px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

/* // HERO BACKGROUND ORB */
.home-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -140px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(36, 88, 214, 0.1);
  filter: blur(10px);
  animation: floatOrb 5s ease-in-out infinite alternate;
}

/* // HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
}

/* // HERO BADGE */
.hero-badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.6px;
  margin-bottom: 18px;
}

/* // HERO HEADING */
.hero-content h1,
.inner-hero h1 {
  font-family: "Sora", sans-serif;
  color: var(--secondary);
  font-size: clamp(38px, 5.5vw, 66px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  margin-bottom: 20px;
}

/* // HERO PARAGRAPH */
.hero-content p,
.inner-hero p {
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
  margin-bottom: 30px;
}

/* // HERO BUTTONS */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* // CENTER BUTTONS */
.center-buttons {
  justify-content: center;
}

/* // HERO VISUAL */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

/* // DASHBOARD MOCKUP */
.dashboard-mockup {
  width: min(430px, 100%);
  background: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  animation: floatCard 3.8s ease-in-out infinite;
  position: relative;
}

/* // MOCKUP TOP DOTS */
.mockup-top span {
  width: 11px;
  height: 11px;
  display: inline-block;
  border-radius: 50%;
  background: var(--primary);
  margin-right: 7px;
}

/* // MOCKUP TITLE */
.dashboard-mockup h3 {
  margin: 22px 0;
  color: var(--secondary);
  font-family: "Sora", sans-serif;
}

/* // MOCKUP CHART AREA */
.mockup-chart-area {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
}

/* // CIRCLE CHART */
.circle-chart {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--primary) 82%, #dbeafe 0);
  box-shadow: inset 0 0 0 12px var(--white);
}

/* // CIRCLE CHART TEXT */
.circle-chart span {
  font-weight: 900;
  color: var(--secondary);
  font-size: 22px;
}

/* // BAR CHART */
.bar-chart {
  height: 130px;
  display: flex;
  align-items: end;
  gap: 10px;
}

/* // BAR STYLE */
.bar {
  width: 28px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #5b7cff, var(--primary));
  animation: barGrow 1.2s ease both;
}

/* // BAR HEIGHT */
.bar-1 { height: 55px; }
.bar-2 { height: 95px; }
.bar-3 { height: 75px; }
.bar-4 { height: 118px; }

/* // MOCKUP INFO GRID */
.mockup-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* // MOCKUP INFO CARD */
.mockup-info-card {
  padding: 16px;
  background: var(--primary-light);
  border-radius: 14px;
}

/* // MOCKUP INFO SMALL */
.mockup-info-card small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

/* // MOCKUP INFO STRONG */
.mockup-info-card strong {
  color: var(--secondary);
  font-size: 22px;
}

/* // STATS SECTION */
.stats-section {
  margin: 0 7% 80px;
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 22px;
  box-shadow: var(--shadow-small);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* // STAT CARD */
.stat-card {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}

/* // STAT CARD HOVER */
.stat-card:hover {
  background: var(--primary-light);
  transform: translateY(-4px);
}

/* // STAT HEADING */
.stat-card h2 {
  font-family: "Sora", sans-serif;
  color: var(--secondary);
  font-size: 34px;
}

/* // STAT TEXT */
.stat-card p {
  color: var(--muted);
  font-weight: 800;
}

/* // COMMON SECTION */
.section {
  padding: 90px 7%;
}

/* // LIGHT SECTION */
.light-section {
  background:
    radial-gradient(circle at top right, rgba(36, 88, 214, 0.12), transparent 30%),
    #eef4ff;
}

/* // SECTION TITLE */
.section-title {
  max-width: 760px;
  margin-bottom: 42px;
}

/* // SECTION TITLE SMALL */
.section-title span,
.small-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}

/* // SECTION TITLE HEADING */
.section-title h2,
.preview-content h2,
.support-content h2,
.cta-section h2 {
  font-family: "Sora", sans-serif;
  color: var(--secondary);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

/* // SECTION TITLE PARAGRAPH */
.section-title p,
.preview-content p,
.support-content p,
.cta-section p {
  color: var(--muted);
  font-size: 17px;
}

/* // FEATURE GRID */
.feature-grid,
.services-grid,
.process-grid,
.package-grid,
.faq-grid,
.leaderboard-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* // FEATURE CARD */
.feature-card,
.service-card,
.process-card,
.package-card,
.faq-card,
.rank-card,
.dashboard-panel,
.contact-info-card,
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-small);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* // CARD TOP LINE */
.feature-card::before,
.service-card::before,
.package-card::before,
.faq-card::before,
.dashboard-panel::before,
.contact-info-card::before,
.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

/* // CARD HOVER */
.feature-card:hover,
.service-card:hover,
.process-card:hover,
.package-card:hover,
.faq-card:hover,
.rank-card:hover,
.dashboard-panel:hover,
.contact-info-card:hover,
.contact-form-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

/* // CARD HOVER TOP LINE */
.feature-card:hover::before,
.service-card:hover::before,
.package-card:hover::before,
.faq-card:hover::before,
.dashboard-panel:hover::before,
.contact-info-card:hover::before,
.contact-form-card:hover::before {
  opacity: 1;
}

/* // FEATURE ICON */
.feature-icon,
.service-icon,
.insight-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 18px;
  transition: var(--transition);
}

/* // ICON HOVER */
.feature-card:hover .feature-icon,
.service-card:hover .service-icon,
.insight-box:hover .insight-icon {
  transform: rotate(-8deg) scale(1.08);
}

/* // CARD HEADING */
.feature-card h3,
.service-card h3,
.process-card h3,
.package-card h3,
.faq-card h3 {
  font-family: "Sora", sans-serif;
  color: var(--secondary);
  font-size: 21px;
  margin-bottom: 10px;
}

/* // CARD TEXT */
.feature-card p,
.service-card p,
.process-card p,
.package-card p,
.faq-card p {
  color: var(--muted);
}

/* // SERVICE LIST */
.service-card ul,
.package-card ul {
  margin-top: 18px;
  padding-left: 18px;
}

/* // SERVICE LIST ITEMS */
.service-card li,
.package-card li {
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
}

/* // PREVIEW WRAPPER */
.preview-wrapper,
.service-split-wrapper,
.map-support-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

/* // CHECK LIST */
.check-list {
  list-style: none;
  margin: 24px 0 30px;
}

/* // CHECK LIST ITEM */
.check-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 700;
}

/* // CHECK MARK */
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

/* // PREVIEW CARD */
.preview-card {
  background: var(--white);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* // PREVIEW HEADER */
.preview-header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 24px;
}

/* // PREVIEW HEADER HEADING */
.preview-header h3 {
  font-family: "Sora", sans-serif;
  color: var(--secondary);
  font-size: 24px;
}

/* // PREVIEW MINI GRID */
.preview-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

/* // PREVIEW MINI CARD */
.preview-mini-grid div {
  background: var(--primary-light);
  padding: 16px;
  border-radius: 14px;
}

/* // PREVIEW MINI SMALL */
.preview-mini-grid small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

/* // PREVIEW MINI STRONG */
.preview-mini-grid strong {
  color: var(--secondary);
  font-size: 20px;
}

/* // PREVIEW TABLE */
.preview-table {
  display: grid;
  gap: 10px;
}

/* // PREVIEW TABLE ROW */
.preview-table div {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 12px;
  background: #f8fafc;
}

/* // CTA SECTION */
.cta-section {
  margin: 70px 7%;
  padding: 55px;
  text-align: center;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, var(--secondary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--shadow);
}

/* // CTA HEADING */
.cta-section h2 {
  color: var(--white);
}

/* // CTA TEXT */
.cta-section p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 760px;
  margin: 0 auto 26px;
}

/* // INNER HERO */
.inner-hero {
  padding: 105px 7%;
  background:
    radial-gradient(circle at top right, rgba(36, 88, 214, 0.16), transparent 35%),
    linear-gradient(135deg, var(--white), #f8fbff);
  border-bottom: 1px solid var(--border);
}

/* // INNER HERO CONTENT */
.inner-hero-content {
  max-width: 850px;
}

/* // AUTH PAGE WRAPPER */
.auth-page-wrapper {
  min-height: calc(100vh - 78px);
  padding: 48px 7%;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
}

/* // AUTH VISUAL */
.auth-visual {
  min-height: 560px;
  background: var(--white);
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* // AUTH BLUE SHAPE */
.auth-blue-shape {
  position: absolute;
  left: -150px;
  top: -80px;
  width: 430px;
  height: 720px;
  background: linear-gradient(160deg, var(--primary), #5b7cff);
  border-radius: 0 55% 55% 0;
}

/* // AUTH ICON CARD */
.auth-icon-card {
  position: absolute;
  right: 50px;
  top: 60px;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background: var(--primary-light);
  display: grid;
  place-items: center;
  font-size: 42px;
  box-shadow: var(--shadow-small);
  animation: floatCard 3s ease-in-out infinite;
}

/* // AUTH PERSON CARD */
.auth-person-card {
  position: absolute;
  left: 160px;
  top: 170px;
  width: 230px;
  height: 270px;
}

/* // PERSON HEAD */
.person-head {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fbbf24;
  margin: 0 auto;
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.08);
}

/* // PERSON BODY */
.person-body {
  width: 145px;
  height: 120px;
  border-radius: 50px 50px 12px 12px;
  background: var(--primary);
  margin: -2px auto 0;
}

/* // PERSON DESK */
.person-desk {
  width: 230px;
  height: 28px;
  background: var(--secondary);
  border-radius: 12px;
  margin-top: -10px;
}

/* // PERSON LAPTOP */
.person-laptop {
  width: 95px;
  height: 60px;
  background: var(--white);
  border: 6px solid var(--secondary);
  border-radius: 8px;
  margin: -86px auto 0;
}

/* // FLOATING PAYROLL CARD */
.floating-payroll-card {
  position: absolute;
  left: 70px;
  bottom: 70px;
  padding: 18px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  animation: floatSmall 3.5s ease-in-out infinite;
}

/* // FLOATING CARD SMALL */
.floating-payroll-card small {
  color: var(--muted);
  display: block;
  font-weight: 700;
}

/* // FLOATING CARD STRONG */
.floating-payroll-card strong {
  color: var(--secondary);
  font-size: 24px;
}

/* // AUTH FORM CARD */
.auth-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 42px;
  box-shadow: var(--shadow);
}

/* // AUTH FORM LOGO */
.auth-form-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
  font-family: "Sora", sans-serif;
  margin-bottom: 24px;
}

/* // AUTH FORM HEADING */
.auth-form-card h1 {
  font-family: "Sora", sans-serif;
  color: var(--secondary);
  font-size: 38px;
  margin-bottom: 8px;
}

/* // AUTH SUBTITLE */
.auth-subtitle {
  color: var(--muted);
  margin-bottom: 24px;
}

/* // ROLE TABS */
.role-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f8fafc;
  border-radius: 12px;
  padding: 6px;
  margin-bottom: 22px;
}

/* // ROLE TAB */
.role-tab {
  border: none;
  padding: 13px;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  transition: var(--transition);
}

/* // ACTIVE ROLE TAB */
.role-tab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-small);
}

/* // AUTH FORM */
.auth-form,
.contact-form,
.employee-form {
  display: grid;
  gap: 18px;
}

/* // FORM GROUP */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* // FORM LABEL */
.form-group label {
  font-weight: 900;
  color: var(--secondary);
  font-size: 14px;
}

/* // FORM INPUTS */
.form-group input,
.form-group select,
.form-group textarea,
.leaderboard-filter select {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f9fafb;
  color: var(--text);
  font-size: 15px;
  transition: var(--transition);
}

/* // INPUT FOCUS */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.leaderboard-filter select:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(36, 88, 214, 0.12);
}

/* // TEXTAREA */
textarea {
  resize: vertical;
}

/* // AUTH DIVIDER */
.auth-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 22px 0;
  color: var(--muted);
  font-weight: 800;
}

/* // AUTH DIVIDER LINE */
.auth-divider span {
  height: 1px;
  background: var(--border);
}

/* // EMAIL LOGIN BUTTON */
.email-login-btn {
  width: 100%;
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--secondary);
  font-weight: 900;
  transition: var(--transition);
}

/* // EMAIL LOGIN HOVER */
.email-login-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* // AUTH BOTTOM TEXT */
.auth-bottom-text {
  text-align: center;
  margin-top: 22px;
  color: var(--muted);
}

/* // AUTH BOTTOM LINK */
.auth-bottom-text a {
  color: var(--primary);
  font-weight: 900;
}

/* // DEMO NOTE */
.demo-note {
  margin-top: 18px;
  background: var(--primary-light);
  border: 1px solid rgba(36, 88, 214, 0.15);
  color: var(--text);
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
}

/* // DASHBOARD LAYOUT */
.dashboard-layout {
  min-height: 100vh;
  display: flex;
  background: var(--bg);
}

/* // SIDEBAR */
.sidebar {
  width: 260px;
  min-height: 100vh;
  background: var(--secondary);
  color: var(--white);
  padding: 26px;
  position: sticky;
  top: 0;
  align-self: flex-start;
}

/* // SIDEBAR LOGO */
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Sora", sans-serif;
  margin-bottom: 35px;
}

/* // SIDEBAR MENU */
.sidebar-menu {
  display: grid;
  gap: 10px;
}

/* // SIDEBAR LINKS */
.sidebar-menu a {
  padding: 13px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  transition: var(--transition);
}

/* // SIDEBAR HOVER */
.sidebar-menu a:hover,
.sidebar-menu a.active-sidebar {
  background: var(--primary);
  color: var(--white);
  transform: translateX(5px);
}

/* // DASHBOARD MAIN */
.dashboard-main {
  flex: 1;
  padding: 36px;
  overflow-x: hidden;
}

/* // DASHBOARD TOPBAR */
.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

/* // DASHBOARD TOPBAR TEXT */
.dashboard-topbar p {
  color: var(--muted);
  font-weight: 700;
}

/* // DASHBOARD HEADING */
.dashboard-topbar h1,
.dashboard-main h1 {
  font-family: "Sora", sans-serif;
  color: var(--secondary);
  font-size: clamp(28px, 4vw, 42px);
}

/* // TOPBAR ACTIONS */
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* // NOTIFICATION AND PROFILE */
.notification-bell,
.profile-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-small);
  transition: var(--transition);
}

/* // PROFILE HOVER */
.notification-bell:hover,
.profile-avatar:hover {
  transform: translateY(-3px) rotate(5deg);
}

/* // DASHBOARD CARDS */
.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

/* // DASH CARD */
.dash-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-small);
  transition: var(--transition);
}

/* // DASH CARD HOVER */
.dash-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

/* // DASH CARD TEXT */
.dash-card p {
  color: var(--muted);
  font-weight: 800;
}

/* // DASH CARD HEADING */
.dash-card h2 {
  color: var(--secondary);
  font-family: "Sora", sans-serif;
  font-size: 28px;
  margin: 8px 0;
}

/* // DASH CARD SPAN */
.dash-card span {
  color: var(--muted);
  font-weight: 700;
}

/* // GREEN TEXT */
.green-text {
  color: var(--green) !important;
}

/* // DASHBOARD GRID TWO */
.dashboard-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 24px;
}

/* // DASHBOARD PANEL */
.dashboard-panel {
  margin-bottom: 24px;
}

/* // PANEL TITLE */
.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

/* // PANEL TITLE HEADING */
.panel-title h3 {
  font-family: "Sora", sans-serif;
  color: var(--secondary);
  font-size: 22px;
}

/* // PANEL TITLE SPAN */
.panel-title span,
.panel-title a {
  color: var(--muted);
  font-weight: 800;
}

/* // TABLE LINK */
.table-link {
  color: var(--primary) !important;
}

/* // SALARY CHART */
.salary-chart {
  height: 240px;
  display: flex;
  align-items: end;
  gap: 18px;
  padding-top: 30px;
}

/* // SALARY BAR */
.salary-bar {
  flex: 1;
  min-width: 38px;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, #6f8bff, var(--primary));
  position: relative;
  animation: barGrow 1.2s ease both;
}

/* // SALARY BAR TEXT */
.salary-bar span {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

/* // SALARY BAR HEIGHTS */
.bar-month-1 { height: 82px; }
.bar-month-2 { height: 148px; }
.bar-month-3 { height: 120px; }
.bar-month-4 { height: 170px; }
.bar-month-5 { height: 142px; }
.bar-month-6 { height: 190px; }

/* // ATTENDANCE WRAPPER */
.attendance-wrapper,
.company-attendance-wrapper {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* // ATTENDANCE CIRCLE */
.attendance-circle,
.company-donut {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  background: conic-gradient(var(--primary) 92%, #dbeafe 0);
  box-shadow: inset 0 0 0 14px var(--white);
}

/* // COMPANY DONUT */
.company-donut {
  background: conic-gradient(var(--primary) 72%, #60a5fa 0 86%, #dbeafe 0);
}

/* // ATTENDANCE CIRCLE STRONG */
.attendance-circle strong,
.company-donut strong {
  font-size: 32px;
  color: var(--secondary);
}

/* // ATTENDANCE DETAILS */
.attendance-details p {
  margin-bottom: 8px;
  color: var(--text);
}

/* // TABLE RESPONSIVE */
.table-responsive {
  width: 100%;
  overflow-x: auto;
}

/* // DASHBOARD TABLE */
.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

/* // TABLE CELLS */
.dashboard-table th,
.dashboard-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

/* // TABLE HEAD */
.dashboard-table th {
  color: var(--muted);
  font-weight: 900;
  background: #f8fafc;
}

/* // TABLE ROW HOVER */
.dashboard-table tbody tr:hover {
  background: var(--primary-light);
}

/* // STATUS PAID */
.status-paid {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: 13px;
  font-weight: 900;
}

/* // STATUS PENDING */
.status-pending {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fef3c7;
  color: #92400e;
  font-size: 13px;
  font-weight: 900;
}

/* // TABLE BUTTON */
.table-btn {
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 900;
  transition: var(--transition);
}

/* // TABLE BUTTON HOVER */
.table-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* // PERFORMANCE BOX */
.performance-box {
  text-align: center;
}

/* // PERFORMANCE SCORE */
.performance-score {
  width: 140px;
  height: 140px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 36px;
  font-weight: 900;
}

/* // PROFILE LIST */
.profile-list p {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* // DEPARTMENT LIST */
.department-list {
  display: grid;
  gap: 20px;
}

/* // DEPARTMENT ITEM */
.department-item {
  display: grid;
  gap: 10px;
}

/* // DEPARTMENT TEXT */
.department-item div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* // DEPARTMENT BAR BG */
.department-item::after {
  content: "";
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
}

/* // DEPARTMENT BAR */
.department-item span {
  height: 8px;
  margin-top: -18px;
  border-radius: 999px;
  background: var(--primary);
}

/* // QUICK ACTION GRID */
.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* // QUICK ACTION CARD */
.quick-action-card {
  background: var(--primary-light);
  border-radius: 14px;
  padding: 18px;
  color: var(--secondary);
  display: grid;
  gap: 10px;
  transition: var(--transition);
}

/* // QUICK ACTION ICON */
.quick-action-card span {
  font-size: 26px;
}

/* // QUICK ACTION HOVER */
.quick-action-card:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-5px);
}

/* // ADD EMPLOYEE LAYOUT */
.add-employee-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 22px;
}

/* // EMPLOYEE FORM */
.employee-form {
  grid-template-columns: repeat(2, 1fr);
}

/* // FULL FIELD */
.full-field {
  grid-column: 1 / -1;
}

/* // FORM ACTIONS */
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* // SUMMARY BOX LIST */
.summary-box-list {
  display: grid;
  gap: 16px;
}

/* // SUMMARY BOX */
.summary-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8fafc;
  padding: 16px;
  border-radius: 14px;
}

/* // SUMMARY ICON */
.summary-box span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--primary-light);
  font-size: 24px;
}

/* // SUMMARY SMALL */
.summary-box small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

/* // SUMMARY STRONG */
.summary-box strong {
  color: var(--secondary);
  font-size: 22px;
}

/* // EMPLOYEE LIST */
.employee-list {
  display: grid;
  gap: 12px;
}

/* // EMPLOYEE ITEM FROM JS */
.emp-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid var(--border);
}

/* // LEADERBOARD TOP RANK GRID */
.top-rank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 28px;
}

/* // RANK CARD */
.rank-card {
  text-align: center;
}

/* // FIRST RANK */
.first-rank {
  transform: translateY(-18px);
  border: 2px solid rgba(245, 158, 11, 0.35);
}

/* // RANK MEDAL */
.rank-medal {
  font-size: 38px;
  margin-bottom: 10px;
}

/* // RANK AVATAR */
.rank-avatar {
  width: 82px;
  height: 82px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 900;
  font-size: 24px;
}

/* // MAIN AVATAR */
.main-avatar {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--primary), #5b7cff);
  color: var(--white);
}

/* // RANK CARD HEADING */
.rank-card h3 {
  color: var(--secondary);
  font-family: "Sora", sans-serif;
}

/* // RANK CARD TEXT */
.rank-card p {
  color: var(--muted);
}

/* // RANK CARD SCORE */
.rank-card strong {
  display: block;
  color: var(--secondary);
  font-size: 32px;
  margin-top: 10px;
}

/* // LEADERBOARD TITLE */
.leaderboard-panel-title {
  align-items: center;
}

/* // LEADER TABS */
.leader-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

/* // LEADER TAB BUTTON */
.leader-tabs button {
  border: none;
  background: #f8fafc;
  color: var(--muted);
  padding: 11px 15px;
  border-radius: 10px;
  font-weight: 900;
  transition: var(--transition);
}

/* // ACTIVE LEADER TAB */
.leader-tabs button.active,
.leader-tabs button:hover {
  background: var(--primary);
  color: var(--white);
}

/* // EMPLOYEE CELL */
.employee-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* // EMPLOYEE CELL AVATAR */
.employee-cell > span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 900;
}

/* // EMPLOYEE CELL SMALL */
.employee-cell small {
  display: block;
  color: var(--muted);
}

/* // RANK NUMBER */
.rank-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e5e7eb;
  color: var(--secondary);
  font-weight: 900;
}

/* // GOLD SILVER BRONZE */
.gold { background: #fef3c7; color: #92400e; }
.silver { background: #e5e7eb; color: #475569; }
.bronze { background: #fed7aa; color: #9a3412; }

/* // INSIGHT BOX */
.insight-box {
  text-align: center;
}

/* // INSIGHT ICON */
.insight-icon {
  margin: 0 auto 16px;
}

/* // INSIGHT HEADING */
.insight-box h2 {
  font-family: "Sora", sans-serif;
  color: var(--secondary);
  margin-bottom: 8px;
}

/* // PACKAGE FEATURED */
.featured-package {
  border: 2px solid var(--primary);
  transform: translateY(-12px);
}

/* // POPULAR BADGE */
.popular-badge {
  position: absolute;
  right: 22px;
  top: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

/* // PACKAGE PRICE */
.package-card h2 {
  font-family: "Sora", sans-serif;
  color: var(--secondary);
  font-size: 34px;
  margin: 14px 0;
}

/* // CONTACT LAYOUT */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
}

/* // CONTACT INFO HEADING */
.contact-info-card h2,
.form-title h2 {
  font-family: "Sora", sans-serif;
  color: var(--secondary);
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 12px;
}

/* // CONTACT TEXT */
.contact-info-card p,
.form-title p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* // CONTACT DETAIL LIST */
.contact-detail-list {
  display: grid;
  gap: 16px;
}

/* // CONTACT DETAIL ITEM */
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  background: #f8fafc;
  border-radius: 14px;
}

/* // CONTACT DETAIL ICON */
.contact-detail-item span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  background: var(--primary-light);
  border-radius: 12px;
  font-size: 22px;
}

/* // CONTACT DETAIL SMALL */
.contact-detail-item small {
  color: var(--muted);
  display: block;
  font-weight: 700;
}

/* // CONTACT DETAIL BOLD */
.contact-detail-item b {
  color: var(--secondary);
}

/* // SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

/* // SOCIAL LINK */
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
  transition: var(--transition);
}

/* // SOCIAL LINK HOVER */
.social-links a:hover {
  transform: translateY(-5px) rotate(8deg);
  background: var(--secondary);
}

/* // CONTACT FORM */
.contact-form {
  grid-template-columns: repeat(2, 1fr);
}

/* // MAP CARD */
.map-card {
  min-height: 410px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68)),
    repeating-linear-gradient(45deg, #dbeafe 0 2px, transparent 2px 42px),
    repeating-linear-gradient(-45deg, #e5e7eb 0 2px, transparent 2px 50px);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* // MAP PIN */
.map-pin {
  position: absolute;
  left: 48%;
  top: 42%;
  font-size: 50px;
  animation: pinBounce 1.5s ease-in-out infinite;
}

/* // MAP LABEL */
.map-label {
  position: absolute;
  left: 40%;
  top: 58%;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-small);
}

/* // MAP LABEL SPAN */
.map-label span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

/* // SUPPORT CONTENT */
.support-content {
  max-width: 650px;
}

/* // FAQ GRID */
.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* // TOAST MESSAGE */
.toast {
  position: fixed;
  right: 24px;
  top: 96px;
  z-index: 9999;
  padding: 14px 20px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: var(--transition);
}

/* // TOAST SHOW */
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* // FOOTER */
.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 70px 7% 24px;
}

/* // FOOTER GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 34px;
}

/* // FOOTER HEADINGS */
.footer h3,
.footer h4 {
  font-family: "Sora", sans-serif;
  margin-bottom: 16px;
}

/* // FOOTER TEXT */
.footer p {
  color: rgba(255, 255, 255, 0.68);
}

/* // FOOTER LINKS */
.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 9px;
  transition: var(--transition);
}

/* // FOOTER LINK HOVER */
.footer a:hover {
  color: var(--white);
  transform: translateX(5px);
}

/* // COPYRIGHT */
.copyright {
  text-align: center;
  margin-top: 45px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.6);
}

/* // REVEAL ANIMATION DEFAULT */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

/* // REVEAL ACTIVE */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* // KEYFRAME ICON PULSE */
@keyframes iconPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.14) rotate(8deg); }
  100% { transform: scale(1); }
}

/* // FLOAT ORB ANIMATION */
@keyframes floatOrb {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(30px) scale(1.08); }
}

/* // FLOAT CARD ANIMATION */
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* // FLOAT SMALL ANIMATION */
@keyframes floatSmall {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(-2deg); }
}

/* // BAR GROW ANIMATION */
@keyframes barGrow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

/* // PIN BOUNCE */
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* // RESPONSIVE LAPTOP */
@media (max-width: 1180px) {
  .dashboard-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid,
  .services-grid,
  .package-grid,
  .leaderboard-insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* // RESPONSIVE TABLET */
@media (max-width: 920px) {
  .navbar {
    padding: 0 5%;
  }

  .menu-btn {
    display: grid;
    place-items: center;
  }

  .navlinks {
    position: fixed;
    top: 78px;
    left: 5%;
    right: 5%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .navlinks.active {
    display: flex;
    animation: menuDrop 0.32s ease;
  }

  .home-hero,
  .auth-page-wrapper,
  .preview-wrapper,
  .service-split-wrapper,
  .map-support-layout,
  .contact-layout,
  .add-employee-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 40px;
  }

  .auth-visual {
    min-height: 380px;
  }

  .auth-person-card {
    top: 110px;
  }

  .dashboard-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    min-height: auto;
    position: static;
  }

  .sidebar-menu {
    grid-template-columns: repeat(3, 1fr);
  }

  .dashboard-grid-two {
    grid-template-columns: 1fr;
  }

  .top-rank-grid {
    grid-template-columns: 1fr;
  }

  .first-rank {
    transform: none;
  }
}

/* // MENU DROP ANIMATION */
@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* // RESPONSIVE MOBILE */
@media (max-width: 640px) {
  .logo-text {
    font-size: 17px;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
  }

  .home-hero {
    margin: 22px 5%;
    padding: 28px;
    border-radius: 20px;
  }

  .hero-content h1,
  .inner-hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .hero-content p,
  .inner-hero p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .light-btn {
    width: 100%;
  }

  .mockup-chart-area {
    flex-direction: column;
  }

  .stats-section {
    margin: 0 5% 55px;
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .section {
    padding: 62px 5%;
  }

  .feature-grid,
  .services-grid,
  .process-grid,
  .package-grid,
  .faq-grid,
  .leaderboard-insights-grid {
    grid-template-columns: 1fr;
  }

  .preview-mini-grid {
    grid-template-columns: 1fr;
  }

  .preview-table div {
    grid-template-columns: 1fr;
  }

  .cta-section {
    margin: 55px 5%;
    padding: 32px 24px;
  }

  .auth-page-wrapper {
    padding: 28px 5%;
  }

  .auth-form-card {
    padding: 28px;
  }

  .auth-form-card h1 {
    font-size: 30px;
  }

  .auth-blue-shape {
    width: 300px;
    height: 460px;
  }

  .auth-icon-card {
    right: 24px;
    top: 24px;
  }

  .auth-person-card {
    left: 95px;
    top: 125px;
    transform: scale(0.8);
  }

  .floating-payroll-card {
    left: 24px;
    bottom: 24px;
  }

  .dashboard-main {
    padding: 22px;
  }

  .dashboard-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar-actions {
    flex-wrap: wrap;
  }

  .dashboard-cards {
    grid-template-columns: 1fr;
  }

  .sidebar-menu {
    grid-template-columns: 1fr;
  }

  .employee-form,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
  }

  .attendance-wrapper,
  .company-attendance-wrapper {
    justify-content: center;
    text-align: center;
  }

  .quick-action-grid {
    grid-template-columns: 1fr;
  }

  .panel-title {
    flex-direction: column;
  }

  .leaderboard-panel-title {
    align-items: flex-start;
  }

  .contact-info-card h2,
  .form-title h2 {
    font-size: 28px;
  }

  .map-card {
    min-height: 320px;
  }

  .map-label {
    left: 24%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .toast {
    left: 16px;
    right: 16px;
    top: 92px;
    text-align: center;
  }
}

/* // VERY SMALL MOBILE */
@media (max-width: 390px) {
  .hero-content h1,
  .inner-hero h1 {
    font-size: 31px;
  }

  .dashboard-mockup,
  .preview-card,
  .dashboard-panel,
  .auth-form-card,
  .contact-info-card,
  .contact-form-card {
    padding: 22px;
  }

  .auth-person-card {
    left: 70px;
  }
}

/* // CLICK RIPPLE ANIMATION */
.click-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: clickRipple 0.65s ease-out;
  pointer-events: none;
  z-index: 3;
}

/* // RIPPLE KEYFRAME */
@keyframes clickRipple {
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}