/* ===== ACCOUNTING & POS SYSTEM PAGE STYLES ===== */

/* --- Hero Section --- */
.system-hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&q=80&w=2015') no-repeat center center/cover;
  padding: 120px 0;
  color: white;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 78, 59, 0.85); /* Deep Emerald overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10b981;
  color: #34d399;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.system-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
}

.system-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: white;
  color: #064e3b;
}

/* --- Intro Section --- */
.system-intro {
  padding: 100px 0;
  background: white;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #064e3b;
  margin-bottom: 20px;
}

.section-header p {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.1rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 40px;
  background: #f9fafb;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-card h3 {
  color: #064e3b;
  margin-bottom: 15px;
  font-weight: 700;
}

/* --- System Grid --- */
.system-grid-section {
  padding: 100px 0;
  background: #f3f4f6;
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.system-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.system-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.system-logo {
  font-size: 2.5rem;
  background: #f9fafb;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.system-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.tagline {
  font-size: 0.9rem;
  color: #059669;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feat-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.feat-list li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: #374151;
  font-weight: 500;
}

.feat-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 900;
}

.best-for {
  display: block;
  margin-top: 20px;
  padding: 10px 15px;
  background: #f9fafb;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #6b7280;
  font-style: italic;
}

/* Themes */
.sql-theme { border-top: 6px solid #2563eb; }
.auto-theme { border-top: 6px solid #059669; }
.bukku-theme { border-top: 6px solid #8b5cf6; }
.feedme-theme { border-top: 6px solid #f97316; }

/* --- Process Section --- */
.system-process {
  padding: 100px 0;
  background: white;
}

.process-flex {
  display: flex;
  gap: 60px;
  align-items: center;
}

.process-text {
  flex: 1;
}

.process-text h2 {
  font-size: 2.5rem;
  color: #064e3b;
  margin-bottom: 20px;
}

.process-steps {
  flex: 1.2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.step {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.num {
  font-size: 2rem;
  font-weight: 900;
  color: #d1fae5;
  line-height: 1;
}

.step h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.step p {
  font-size: 0.95rem;
  color: #6b7280;
}

/* --- CTA Section --- */
.system-cta {
  padding: 80px 0;
  background: white;
}

.cta-box {
  background: #064e3b;
  padding: 80px;
  border-radius: 32px;
  text-align: center;
  color: white;
}

.cta-box h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 40px;
}

.btn-white {
  background: white;
  color: #064e3b;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-white:hover {
  background: #f9fafb;
  transform: scale(1.05);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .system-hero h1 { font-size: 2.5rem; }
  .value-grid { grid-template-columns: 1fr; }
  .grid-layout { grid-template-columns: 1fr; }
  .process-flex { flex-direction: column; }
  .cta-box { padding: 40px 20px; }
  .cta-box h2 { font-size: 2rem; }
}