git
/* =========================================
   JCB DAILY COLLECTION - LIGHT SKY-BLUE THEME
   ========================================= */

/* ── SVG ICON DEFAULTS ── */
svg use {
  pointer-events: none;
}

.ann-svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  opacity: 0.85;
}

.feat-check {
  color: #0ea5e9;
  flex-shrink: 0;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
  margin-right: 4px;
}

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

:root {
  --brand-sky: #0ea5e9;
  --brand-sky-d: #0284c7;
  --brand-sky-l: #e0f2fe;
  --brand-sky-xl: #f0f9ff;
  --brand-green: #10b981;
  --brand-green-d: #059669;
  --brand-red: #ef4444;
  --brand-orange: #f97316;
  --brand-purple: #8b5cf6;
  --brand-teal: #14b8a6;
  --brand-indigo: #6366f1;
  --bg: #ffffff;
  --bg-alt: #f0f9ff;
  --bg-card: #ffffff;
  --border: #bae6fd;
  --border-soft: #e0f2fe;
  --text-primary: #0c1a2e;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --white: #ffffff;
  --shadow-lg: 0 20px 60px rgba(14, 165, 233, 0.15);
  --shadow-md: 0 8px 32px rgba(14, 165, 233, 0.12);
  --shadow-sm: 0 2px 12px rgba(14, 165, 233, 0.08);
  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-sky);
  border-radius: 3px;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: linear-gradient(90deg, #0284c7 0%, #0ea5e9 50%, #14b8a6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  flex-wrap: wrap;
  position: relative;
  z-index: 1000;
}

.announcement-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.announcement-bar a:hover {
  text-decoration: underline;
}

.sep {
  color: rgba(255, 255, 255, 0.5);
}

.ann-icon {
  font-size: 14px;
}

.badge-top {
  background: rgba(255, 255, 255, 0.25);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(14, 165, 233, 0.15);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-sky-d));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  letter-spacing: -0.5px;
  box-shadow: 0 0 16px rgba(14, 165, 233, 0.35);
  flex-shrink: 0;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-sky-d);
  background: var(--brand-sky-l);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #059669;
  padding: 7px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-call:hover {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}

.btn-login {
  background: linear-gradient(135deg, var(--brand-sky), var(--brand-sky-d));
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 12px rgba(14, 165, 233, 0.3);
  white-space: nowrap;
}

.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 165, 233, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 165, 233, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: float 8s ease-in-out infinite;
}

.orb1 {
  width: 500px;
  height: 500px;
  background: #7dd3fc;
  top: -150px;
  left: -100px;
  animation-delay: 0s;
}

.orb2 {
  width: 400px;
  height: 400px;
  background: #6ee7b7;
  top: 200px;
  right: -100px;
  animation-delay: 3s;
}

.orb3 {
  width: 350px;
  height: 350px;
  background: #c4b5fd;
  bottom: -100px;
  left: 40%;
  animation-delay: 6s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(20px, -30px) scale(1.05);
  }

  66% {
    transform: translate(-15px, 20px) scale(0.97);
  }
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--brand-sky-d);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: 0.6;
    transform: scale(1.3)
  }
}

.hero-title {
  font-size: clamp(32px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.highlight {
  background: linear-gradient(135deg, #0ea5e9, #8b5cf6, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--brand-sky), #6366f1);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 0 28px rgba(14, 165, 233, 0.4);
  transition: all var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 600;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-alt);
  border-color: var(--brand-sky);
  transform: translateY(-2px);
  color: var(--brand-sky-d);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 24px 32px;
  flex-wrap: wrap;
  gap: 0;
  box-shadow: var(--shadow-md);
}

.stat-item {
  text-align: center;
  padding: 0 28px;
}

.stat-number {
  font-size: 38px;
  font-weight: 900;
  color: var(--brand-sky-d);
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 46px;
  background: var(--border-soft);
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-indicator span {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.scroll-arrow {
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0)
  }

  50% {
    transform: rotate(45deg) translateY(5px)
  }
}

/* ── SECTION COMMON ── */
.section-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: var(--brand-sky-d);
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ── DASHBOARD ── */
.dashboard-section {
  background: var(--bg-alt);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.kpi-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.kpi-card {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.kpi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.kpi-blue::before {
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
}

.kpi-red::before {
  background: linear-gradient(90deg, #ef4444, #f97316);
}

.kpi-green::before {
  background: linear-gradient(90deg, #10b981, #059669);
}

.kpi-purple::before {
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
}

.kpi-orange::before {
  background: linear-gradient(90deg, #f97316, #fbbf24);
}

.kpi-teal::before {
  background: linear-gradient(90deg, #14b8a6, #06b6d4);
}

.kpi-indigo::before {
  background: linear-gradient(90deg, #6366f1, #818cf8);
}

.kpi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-sky);
}

.kpi-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blue-wrap {
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
}

.red-wrap {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.green-wrap {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.purple-wrap {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
}

.orange-wrap {
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
}

.teal-wrap {
  background: rgba(20, 184, 166, 0.12);
  color: #0d9488;
}

.indigo-wrap {
  background: rgba(99, 102, 241, 0.12);
  color: #4f46e5;
}

.kpi-data {
  flex: 1;
  min-width: 0;
}

.kpi-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  font-family: 'Outfit', sans-serif;
}

.kpi-label {
  font-size: 12px;
  color: var(--text-muted);
  margin: 4px 0;
  font-weight: 500;
}

.kpi-trend {
  font-size: 11px;
  font-weight: 600;
}

.kpi-trend.up {
  color: #059669;
}

.kpi-trend.down {
  color: #dc2626;
}

.kpi-chart-mini {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  height: 35px;
  border-radius: 0 0 var(--radius-xl) 0;
  opacity: 0.08;
}

.blue-chart {
  background: linear-gradient(135deg, transparent 50%, rgba(14, 165, 233, 1) 100%);
}

.green-chart {
  background: linear-gradient(135deg, transparent 50%, rgba(16, 185, 129, 1) 100%);
}

.red-chart {
  background: linear-gradient(135deg, transparent 50%, rgba(239, 68, 68, 1) 100%);
}

.purple-chart {
  background: linear-gradient(135deg, transparent 50%, rgba(139, 92, 246, 1) 100%);
}

/* Progress */
.progress-section {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-top: 18px;
  box-shadow: var(--shadow-sm);
}

.progress-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.progress-item {}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.progress-pct {
  font-weight: 700;
  color: var(--text-primary);
}

.progress-bar {
  height: 8px;
  background: var(--border-soft);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}

.blue-fill {
  background: linear-gradient(90deg, var(--brand-sky), #6366f1);
}

.green-fill {
  background: linear-gradient(90deg, var(--brand-green), #22c55e);
}

.purple-fill {
  background: linear-gradient(90deg, var(--brand-purple), #a855f7);
}

.progress-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-muted);
}

/* ── SERVICES ── */
.services-section {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(14, 165, 233, 0.06), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-sky);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blue-icon {
  background: rgba(14, 165, 233, 0.12);
  color: #0284c7;
}

.green-icon {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.orange-icon {
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
}

.purple-icon {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
}

.teal-icon {
  background: rgba(20, 184, 166, 0.12);
  color: #0d9488;
}

.red-icon {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-features li {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ── EXPENSE ── */
.expense-section {
  background: var(--bg-alt);
}

.exp-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.exp-content {}

.exp-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.exp-cat {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
}

.exp-cat:hover {
  border-color: var(--brand-sky);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.cat-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fuel-icon {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}

.salary-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.travel-icon {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}

.maintain-icon {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.office-icon {
  background: rgba(20, 184, 166, 0.1);
  color: #0d9488;
}

.cat-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.cat-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.cat-amount {
  font-size: 11px;
  color: var(--text-muted);
}

.cat-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 100px;
}

.cat-bar {
  height: 5px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--brand-sky), #6366f1);
  flex: 1;
}

.salary-bar {
  background: linear-gradient(90deg, #10b981, #22c55e);
}

.travel-bar {
  background: linear-gradient(90deg, #f97316, #fbbf24);
}

.maintain-bar {
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
}

.office-bar {
  background: linear-gradient(90deg, #14b8a6, #06b6d4);
}

.cat-bar-wrap span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

/* Expense Form Card */
.exp-form-card {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}

.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}

.form-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

.form-badge {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #059669;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.exp-form,
.modal-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group.full-width {
  grid-column: 1/-1;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-alt);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: all var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand-sky);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.form-group select option {
  background: #fff;
  color: var(--text-primary);
}

.btn-submit {
  background: linear-gradient(135deg, var(--brand-sky), #6366f1);
  color: #fff;
  border: none;
  padding: 13px 22px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 18px rgba(14, 165, 233, 0.3);
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(14, 165, 233, 0.45);
}

/* Recent Entries */
.recent-entries {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.recent-entries h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.entry-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.entry-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}

.entry-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fuel-ico {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}

.wrench-ico {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.travel-ico {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}

.entry-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.entry-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.entry-date {
  font-size: 10px;
  color: var(--text-muted);
}

.entry-amt {
  font-size: 13px;
  font-weight: 700;
  color: #059669;
  white-space: nowrap;
}

/* ── REPORTS ── */
.reports-section {
  background: #fff;
}

.report-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  border-bottom: 1.5px solid var(--border-soft);
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
  font-family: inherit;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--brand-sky-d);
  border-bottom-color: var(--brand-sky);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.report-summary-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--bg-alt);
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin-bottom: 20px;
}

.rsb-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rsb-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.rsb-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
}

.green-text {
  color: #059669 !important;
}

.red-text {
  color: #dc2626 !important;
}

.yellow-text {
  color: #d97706 !important;
}

.btn-export {
  margin-left: auto;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: var(--brand-sky-d);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-export:hover {
  background: var(--brand-sky);
  color: #fff;
}

.btn-red-export {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.25);
  color: #dc2626;
}

.btn-red-export:hover {
  background: var(--brand-red);
  color: #fff;
}

.report-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-soft);
  -webkit-overflow-scrolling: touch;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
}

.report-table th {
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 12px 14px;
  text-align: left;
  white-space: nowrap;
}

.report-table td {
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border-soft);
  white-space: nowrap;
}

.report-table tr:hover td {
  background: rgba(14, 165, 233, 0.04);
  color: var(--text-primary);
}

.badge-success {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.badge-warning {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

.badge-danger {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}

/* Weekly Chart */
.weekly-chart {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 200px;
}

.chart-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  height: 100%;
}

.bar-wrap {
  flex: 1;
  width: 100%;
  max-width: 56px;
  background: var(--border-soft);
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.bar-fill {
  width: 100%;
  background: linear-gradient(0deg, var(--brand-sky), #6366f1);
  border-radius: 6px 6px 0 0;
  transition: height 1s ease;
}

.bar-high {
  background: linear-gradient(0deg, #10b981, #22c55e) !important;
}

.bar-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
}

.bar-val {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Monthly Cards */
.monthly-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.month-card {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.month-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-sky);
  box-shadow: var(--shadow-md);
}

.mc-red {
  border-color: rgba(239, 68, 68, 0.2);
}

.mc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mc-green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.mc-red {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.mc-blue {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}

.mc-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.mc-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}

.mc-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
}

.mc-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Leaderboard */
.agent-leaderboard {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.leader-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.leader-item:hover {
  border-color: var(--brand-sky);
  transform: translateX(4px);
}

.gold {
  border-color: rgba(234, 179, 8, 0.3);
}

.silver {
  border-color: rgba(148, 163, 184, 0.3);
}

.bronze {
  border-color: rgba(180, 83, 9, 0.3);
}

.leader-rank-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gold-icon {
  background: rgba(234, 179, 8, 0.12);
  color: #b45309;
}

.silver-icon {
  background: rgba(148, 163, 184, 0.15);
  color: #64748b;
}

.bronze-icon {
  background: rgba(180, 83, 9, 0.12);
  color: #b45309;
}

.def-icon {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}

.rank-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-secondary);
  min-width: 18px;
}

.leader-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 110px;
}

.leader-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.leader-route {
  font-size: 11px;
  color: var(--text-muted);
}

.leader-bar-wrap {
  flex: 1;
  height: 7px;
  background: var(--border-soft);
  border-radius: 4px;
  overflow: hidden;
}

.leader-bar {
  height: 100%;
  background: linear-gradient(90deg, #eab308, #f59e0b);
  border-radius: 4px;
}

.silver-bar {
  background: linear-gradient(90deg, #94a3b8, #cbd5e1);
}

.bronze-bar {
  background: linear-gradient(90deg, #b45309, #d97706);
}

.default-bar {
  background: linear-gradient(90deg, var(--brand-sky), #6366f1);
}

.leader-amt {
  font-size: 14px;
  font-weight: 800;
  color: #059669;
  min-width: 72px;
  text-align: right;
}

/* ── AGENTS ── */
.agents-section {
  background: var(--bg-alt);
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.agent-card {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.agent-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-sky);
}

.agent-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-sky), #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.sk-av {
  background: linear-gradient(135deg, #10b981, #059669);
}

.rp-av {
  background: linear-gradient(135deg, #f97316, #ef4444);
}

.vm-av {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.agent-details {}

.agent-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.agent-zone {
  font-size: 11px;
  color: var(--text-muted);
}

.agent-stats-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.a-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.a-stat-val {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-primary);
}

.a-stat-lab {
  font-size: 10px;
  color: var(--text-muted);
}

.agent-status {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
}

.active-status {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.top-status {
  background: rgba(234, 179, 8, 0.12);
  color: #d97706;
}

.partial-status {
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
}

/* ── WHY SECTION ── */
.why-section {
  background: #fff;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 20px;
  max-width: 1320px;
  margin: 0 auto;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.why-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  border: 1.5px solid var(--border-soft);
  transition: all var(--transition);
}

.why-feat:hover {
  border-color: var(--brand-sky);
  background: rgba(14, 165, 233, 0.04);
}

.why-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-blue {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}

.why-green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.why-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}

.why-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.why-feat h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.why-feat p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-item {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.trust-item:hover {
  transform: translateY(-4px);
  border-color: var(--brand-sky);
  box-shadow: var(--shadow-md);
}

.trust-num {
  font-size: 32px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #0ea5e9, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-lbl {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 5px;
  font-weight: 500;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--bg-alt);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-card:hover {
  border-color: var(--brand-sky);
  transform: translateX(4px);
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-blue {
  background: rgba(14, 165, 233, 0.1);
  color: #0284c7;
}

.c-green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.c-teal {
  background: rgba(20, 184, 166, 0.1);
  color: #0d9488;
}

.c-purple {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.contact-details h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.contact-link {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-sky-d);
  text-decoration: none;
  margin-bottom: 3px;
}

.contact-link:hover {
  color: var(--brand-sky);
}

.contact-details p {
  font-size: 12px;
  color: var(--text-muted);
}

.contact-form-wrap {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

/* ── FOOTER ── */
.footer {
  background: #f0f9ff;
  border-top: 1.5px solid var(--border-soft);
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 52px 20px 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 320px;
}

.footer-contact-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-row a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-contact-row a:hover {
  color: var(--brand-sky-d);
}

.footer-links-group h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links-group a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links-group a:hover {
  color: var(--brand-sky-d);
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--brand-sky-d);
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 26, 46, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #fff;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 36px;
  width: 100%;
  max-width: 420px;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: var(--shadow-lg);
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--bg-alt);
  border: none;
  color: var(--text-muted);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.modal-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.small-logo {
  width: 32px;
  height: 32px;
  font-size: 11px;
}

.modal-footer-text {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
}

.modal-footer-text a {
  color: var(--brand-sky-d);
}

/* ── TOAST ── */
.toast {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  z-index: 3000;
  animation: toastIn 0.3s ease;
  max-width: calc(100vw - 40px);
}

.toast.show {
  display: block;
}

@keyframes toastIn {
  from {
    transform: translateY(20px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .agents-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-actions .btn-call {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1.5px solid var(--border-soft);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
  }

  .hero {
    padding: 100px 16px 64px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1.5px;
    background: var(--border-soft);
  }

  .stat-item {
    padding: 0 12px;
  }

  .exp-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 60px 16px;
  }

  .monthly-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .progress-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kpi-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-container {
    padding: 60px 16px;
  }
}

@media (max-width: 640px) {
  .announcement-bar {
    font-size: 11px;
    padding: 6px 12px;
    gap: 6px;
  }

  .announcement-bar .sep {
    display: none;
  }

  .announcement-bar span:not(.badge-top):not(:first-child) {
    display: none;
  }

  .nav-container {
    padding: 0 14px;
    height: 58px;
  }

  .logo-sub {
    display: none;
  }

  .btn-login {
    padding: 7px 14px;
    font-size: 13px;
  }

  .hero {
    padding: 88px 14px 56px;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(26px, 8vw, 40px);
    letter-spacing: -0.5px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-cta {
    gap: 10px;
    margin-bottom: 36px;
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 14px;
  }

  .btn-secondary {
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-stats {
    padding: 16px;
    border-radius: var(--radius-lg);
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 11px;
  }

  .section-container {
    padding: 48px 14px;
  }

  .section-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .section-desc {
    font-size: 14px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .kpi-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .kpi-grid-3 {
    grid-template-columns: 1fr;
  }

  .kpi-card {
    padding: 16px;
    gap: 10px;
  }

  .kpi-value {
    font-size: 20px;
  }

  .kpi-icon-wrap {
    width: 38px;
    height: 38px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 22px;
  }

  .agents-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .agent-card {
    padding: 16px;
  }

  .agent-avatar {
    width: 48px;
    height: 48px;
    font-size: 15px;
  }

  .agent-name {
    font-size: 13px;
  }

  .agent-stats-row {
    gap: 8px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-container {
    padding: 36px 14px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-badges {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    padding: 20px 14px;
  }

  .trust-num {
    font-size: 26px;
  }

  .report-summary-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }

  .btn-export {
    margin-left: 0;
    align-self: flex-start;
  }

  .report-tabs {
    gap: 2px;
  }

  .tab-btn {
    padding: 8px 10px;
    font-size: 12px;
  }

  .monthly-summary-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .month-card {
    padding: 14px;
    gap: 10px;
  }

  .mc-value {
    font-size: 17px;
  }

  .mc-icon-wrap {
    width: 36px;
    height: 36px;
  }

  .progress-section {
    padding: 20px;
  }

  .weekly-chart {
    padding: 18px;
  }

  .chart-bars {
    height: 160px;
    gap: 8px;
  }

  .leader-item {
    padding: 12px;
    gap: 8px;
  }

  .leader-info {
    min-width: 80px;
  }

  .leader-amt {
    min-width: 56px;
    font-size: 12px;
  }

  .leader-bar-wrap {
    display: none;
  }

  .exp-form-card {
    padding: 18px;
  }

  .recent-entries {
    padding: 16px;
  }

  .contact-form-wrap {
    padding: 20px;
  }

  .why-layout {
    padding: 48px 14px;
    gap: 28px;
  }

  .why-feat {
    padding: 14px;
    gap: 12px;
  }

  .modal-box {
    padding: 24px 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    gap: 14px;
    flex-wrap: wrap;
  }

  .toast {
    bottom: 16px;
    right: 14px;
    left: 14px;
    text-align: center;
    max-width: none;
  }
}

@media (max-width: 380px) {
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .agents-grid {
    grid-template-columns: 1fr;
  }

  .monthly-summary-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}