/* ==========================================================================
   DARZI TECH - Premium SaaS Landing Page Stylesheet
   Domain: darzi.site
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Google Fonts & CSS Custom Properties
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --color-navy-dark: #0B132B;
  --color-navy-main: #0F172A;
  --color-navy-light: #1E293B;
  --color-navy-surface: #1E293B;
  
  --color-primary: #4F46E5;       /* Indigo */
  --color-primary-hover: #4338CA;
  --color-royal: #3B82F6;         /* Royal Blue */
  --color-teal: #06B6D4;          /* Cyan / Teal */
  --color-emerald: #10B981;       /* Success Green */
  --color-amber: #F59E0B;         /* Warning Amber */
  --color-rose: #EF4444;          /* Alert Rose */
  
  --color-bg-light: #F8FAFC;
  --color-bg-white: #FFFFFF;
  --color-card-bg: #FFFFFF;
  
  --color-text-dark: #0F172A;
  --color-text-muted: #64748B;
  --color-text-light: #94A3B8;
  --color-border: #E2E8F0;
  --color-border-dark: rgba(255, 255, 255, 0.12);
  
  /* Gradients */
  --grad-primary: linear-gradient(135deg, #4F46E5 0%, #3B82F6 50%, #06B6D4 100%);
  --grad-hero-bg: radial-gradient(circle at 50% 0%, rgba(79, 70, 229, 0.15) 0%, rgba(15, 23, 42, 0) 70%);
  --grad-card-glow: linear-gradient(180deg, rgba(79, 70, 229, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  --grad-dark-section: linear-gradient(180deg, #0F172A 0%, #0B132B 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px -4px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 0 40px rgba(79, 70, 229, 0.25);
  
  /* Layout Spacing & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --container-max: 1240px;
  --header-height: 80px;
  
  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. CSS Reset & Base Setup
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Focus styles for Accessibility */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Typography Utilities */
.gradient-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.2);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-badge-dark {
  background: rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.3);
  color: var(--color-teal);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-navy-main);
  margin-bottom: 1rem;
}

.section-title.light-text {
  color: #FFFFFF;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

.section-desc.light-text {
  color: #94A3B8;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: all var(--trans-smooth);
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: var(--color-navy-main);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* Section Wrapper Standard Padding */
.py-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.bg-dark-section {
  background: var(--grad-dark-section);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   3. Sticky Navbar & Header
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--trans-smooth);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  height: 70px;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-navy-dark);
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  transition: color var(--trans-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-light);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-navy-main);
  border-radius: 2px;
  transition: all var(--trans-smooth);
}

.mobile-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 1050;
  padding: 2rem 1.5rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right var(--trans-smooth);
}

.mobile-drawer.is-open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.drawer-close {
  font-size: 1.75rem;
  color: var(--color-text-muted);
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy-main);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-smooth);
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   4. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 5rem;
  background: var(--color-bg-light);
  background-image: var(--grad-hero-bg);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-navy-main);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-contact-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy-main);
}

.contact-item svg {
  color: var(--color-primary);
}

/* Hero Dashboard Visual Mockup */
.hero-visual {
  position: relative;
}

.dashboard-window {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform 0.5s ease;
}

.window-header {
  height: 42px;
  background: var(--color-navy-main);
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.5rem;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background-color: #FF5F56; }
.dot-yellow { background-color: #FFBD2E; }
.dot-green { background-color: #27C93F; }

.window-title {
  color: #94A3B8;
  font-size: 0.75rem;
  margin-left: auto;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.dashboard-body {
  padding: 1.25rem;
  background: #F8FAFC;
}

/* Mockup Components */
.mock-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mock-stat-card {
  background: #FFFFFF;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.mock-stat-label {
  font-size: 0.725rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.mock-stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy-main);
  margin-top: 0.2rem;
}

.mock-stat-change {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-emerald);
}

.mock-chart-container {
  background: #FFFFFF;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-bottom: 1rem;
}

.mock-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.mock-chart-title {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--color-navy-main);
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  height: 80px;
  padding-top: 0.5rem;
}

.mock-bar {
  flex: 1;
  background: rgba(79, 70, 229, 0.15);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.5s ease;
}

.mock-bar.active {
  background: var(--grad-primary);
}

.mock-table {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 0.75rem;
  font-size: 0.75rem;
}

.mock-table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.mock-table-row:last-child {
  border-bottom: none;
}

.status-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  font-size: 0.675rem;
  font-weight: 700;
}
.badge-ready { background: rgba(16, 185, 129, 0.15); color: var(--color-emerald); }
.badge-pending { background: rgba(245, 158, 11, 0.15); color: var(--color-amber); }
.badge-progress { background: rgba(59, 130, 246, 0.15); color: var(--color-royal); }

/* Floating Cards Around Dashboard */
.floating-card {
  position: absolute;
  background: #FFFFFF;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
  animation: floatAnim 4s ease-in-out infinite alternate;
}

.fc-1 {
  top: -15px;
  right: -20px;
}

.fc-2 {
  bottom: 20px;
  left: -25px;
  animation-delay: 2s;
}

.fc-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.fc-icon.bg-indigo { background: var(--color-primary); }
.fc-icon.bg-emerald { background: var(--color-emerald); }

.fc-info h4 {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.fc-info p {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-navy-main);
}

@keyframes floatAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* --------------------------------------------------------------------------
   5. Trust & Benefits Strip
   -------------------------------------------------------------------------- */
.benefits-strip {
  background: #FFFFFF;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.25rem 0;
}

.strip-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-navy-main);
}

.strip-item svg {
  color: var(--color-emerald);
}

/* --------------------------------------------------------------------------
   6. Software Dashboard Showcase Section
   -------------------------------------------------------------------------- */
.showcase-section {
  background: #FFFFFF;
}

.large-dashboard-frame {
  background: var(--color-navy-main);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.frame-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.frame-search {
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  color: #94A3B8;
  width: 250px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.sc-kpi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.sc-kpi-title {
  color: #94A3B8;
  font-size: 0.8rem;
  font-weight: 600;
}

.sc-kpi-value {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   7. Why Darzi Tech (6 Cards)
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--trans-smooth);
  box-shadow: var(--shadow-sm);
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 70, 229, 0.3);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy-main);
  margin-bottom: 0.75rem;
}

.why-desc {
  color: var(--color-text-muted);
  font-size: 0.975rem;
}

/* --------------------------------------------------------------------------
   8. Complete Modules Grid (16 Modules)
   -------------------------------------------------------------------------- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.module-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--trans-smooth);
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--grad-primary);
  opacity: 0;
  transition: opacity var(--trans-fast);
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 70, 229, 0.3);
}

.module-card:hover::before {
  opacity: 1;
}

.module-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-royal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.module-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-navy-main);
  margin-bottom: 0.5rem;
}

.module-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   9. Dedicated Feature Sections (Daily Sheet, Customer, Staff, Order, etc.)
   -------------------------------------------------------------------------- */
.feature-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy-main);
}

.feature-list-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Work Allocation Flowchart */
.workflow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.wf-step-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  flex: 1;
  min-width: 140px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.wf-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem auto;
}

.wf-step-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy-main);
}

.wf-arrow {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1.25rem;
}

/* Order Lifecycle Timeline */
.lifecycle-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.life-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-navy-main);
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   10. Reports Grid (8 Categories)
   -------------------------------------------------------------------------- */
.reports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.report-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--trans-smooth);
}

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

.report-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
}

.report-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy-main);
}

/* --------------------------------------------------------------------------
   11. How It Works (4 Steps)
   -------------------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(79, 70, 229, 0.2);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.step-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-navy-main);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* --------------------------------------------------------------------------
   12. Manual vs Darzi Tech Comparison
   -------------------------------------------------------------------------- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.comp-box {
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.comp-box.old-way {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.comp-box.darzi-way {
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: var(--shadow-md);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.comp-box.old-way .comp-header { color: var(--color-rose); }
.comp-box.darzi-way .comp-header { color: var(--color-emerald); }

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comp-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.975rem;
}

.comp-box.old-way .comp-item { color: #475569; }
.comp-box.darzi-way .comp-item { color: var(--color-navy-main); }

/* --------------------------------------------------------------------------
   13. CTA Banner Section
   -------------------------------------------------------------------------- */
.cta-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  position: relative;
  overflow: hidden;
}

.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-banner-desc {
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 2rem auto;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* --------------------------------------------------------------------------
   14. FAQ Section
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--trans-fast);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy-main);
  text-align: left;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: transform var(--trans-smooth);
}

.faq-item.is-active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.975rem;
}

.faq-item.is-active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
  transition: max-height 0.3s ease-in-out;
}

/* --------------------------------------------------------------------------
   15. Contact Section & Form
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cd-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(79, 70, 229, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cd-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.cd-text p, .cd-text a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy-main);
  margin-top: 0.2rem;
  display: block;
}

.cd-text a:hover {
  color: var(--color-primary);
}

.contact-form-box {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-navy-main);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-size: 0.95rem;
  transition: border-color var(--trans-fast);
  background: var(--color-bg-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  background: #FFFFFF;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-status-msg {
  padding: 0.85rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  display: none;
}

.form-status-msg.success {
  display: block;
  background: rgba(16, 185, 129, 0.12);
  color: #065F46;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-status-msg.error {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  color: #991B1B;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-navy-dark);
  color: #94A3B8;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand-logo {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.925rem;
  line-height: 1.6;
}

.footer-col-title {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  transition: color var(--trans-fast);
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform var(--trans-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
}

/* --------------------------------------------------------------------------
   17. Responsive Media Queries (320px - 1920px)
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .modules-grid, .reports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-grid, .feature-split-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .why-grid, .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .nav-menu, .navbar-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .fc-1 { top: 0; right: 0; }
  .fc-2 { bottom: 0; left: 0; }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem;
  }
  
  .hero-title {
    font-size: 2.15rem;
  }

  .modules-grid, .reports-grid, .steps-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner {
    padding: 2.5rem 1.25rem;
  }
  
  .cta-banner-title {
    font-size: 1.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .strip-grid {
    justify-content: center;
  }
  
  .workflow-container {
    flex-direction: column;
  }
  
  .wf-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }
  
  .floating-card {
    display: none; /* Hide floating widgets on very small screens to avoid overflow */
  }
  
  .floating-whatsapp {
    bottom: 15px;
    right: 15px;
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp svg {
    width: 26px;
    height: 26px;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
