/* ==========================================================================
   VINAR TECH - OFFICIAL BRANDING SAAS DESIGN SYSTEM
   Colors:
   - Deep Navy: #074371
   - Cyan Blue: #23a2e2
   - Emerald Green: #09bf63
   - Gold Yellow: #ffd015
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.2.0/fonts/remixicon.css');

:root {
  /* Official Brand Color Palette */
  --vinar-navy: #074371;
  --vinar-cyan: #23a2e2;
  --vinar-green: #09bf63;
  --vinar-gold: #ffd015;

  /* Primary Brand (Deep Navy & Dynamic Cyan) */
  --primary: #074371;
  --primary-hover: #053357;
  --primary-light: rgba(7, 67, 113, 0.08);
  --primary-glow: rgba(7, 67, 113, 0.3);

  /* Secondary Brand (Vibrant Sky/Cyan Blue) */
  --secondary: #23a2e2;
  --secondary-hover: #1b8ec9;
  --secondary-light: rgba(35, 162, 226, 0.1);
  --secondary-glow: rgba(35, 162, 226, 0.35);

  /* Accent Success (Vinar Emerald Green) */
  --accent-emerald: #09bf63;
  --accent-emerald-hover: #079e51;
  --accent-emerald-light: rgba(9, 191, 99, 0.1);
  --accent-emerald-glow: rgba(9, 191, 99, 0.3);

  /* Accent Warm (Vinar Gold / Yellow) */
  --accent-gold: #ffd015;
  --accent-gold-hover: #e5b90e;
  --accent-gold-light: rgba(255, 208, 21, 0.15);
  --accent-gold-glow: rgba(255, 208, 21, 0.4);

  /* Neutral Dark & Slate Palette */
  --slate-950: #071525;
  --slate-900: #0b2138;
  --slate-850: #0f2d4c;
  --slate-800: #153a60;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  /* Typography */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Shadows & Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(226, 232, 240, 0.85);
  --glass-shadow: 0 20px 40px -15px rgba(7, 67, 113, 0.08);

  --card-shadow: 0 4px 12px -1px rgba(7, 67, 113, 0.06), 0 2px 4px -2px rgba(7, 67, 113, 0.04);
  --card-shadow-hover: 0 20px 25px -5px rgba(7, 67, 113, 0.12), 0 8px 10px -6px rgba(7, 67, 113, 0.06);
  --card-shadow-elevated: 0 25px 50px -12px rgba(7, 67, 113, 0.18);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* VINAR TECH Dynamic Form Styling API Properties */
  --vinartech-form-font: inherit;
  --vinartech-form-bg: transparent;
  --vinartech-form-color: inherit;
  --vinartech-form-primary: #074371;
  --vinartech-form-primary-hover: #23a2e2;
  --vinartech-form-radius: 12px;
  --vinartech-form-input-radius: 8px;
  --vinartech-form-input-bg: var(--white);
  --vinartech-form-input-border-color: rgba(148, 163, 184, 0.35);
  --vinartech-form-shadow: none;
}

/* Base & Reset Styles */
*, *::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-sans);
  background-color: var(--white);
  color: var(--slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Background with Vinar Brand Glow */
.bg-ambient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 850px;
  background: radial-gradient(circle at 50% -10%, rgba(35, 162, 226, 0.12) 0%, rgba(7, 67, 113, 0.06) 35%, transparent 70%),
              radial-gradient(circle at 90% 20%, rgba(9, 191, 99, 0.06) 0%, transparent 40%),
              radial-gradient(circle at 10% 30%, rgba(255, 208, 21, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

.bg-pattern-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(35, 162, 226, 0.2) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  color: var(--slate-900);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 0.95rem; }

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

code, pre {
  font-family: var(--font-mono);
}

/* Container & Layout */
.saas-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.saas-section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
}

.saas-section-sm {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.saas-section-bg {
  background-color: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.saas-section-dark {
  background-color: var(--slate-950);
  color: var(--slate-300);
  border-top: 1px solid var(--slate-800);
  border-bottom: 1px solid var(--slate-800);
}
.saas-section-dark h1,
.saas-section-dark h2,
.saas-section-dark h3,
.saas-section-dark h4 {
  color: var(--white);
}

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

.section-header.text-start {
  text-align: left;
  margin-left: 0;
}

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

.section-badge.badge-emerald {
  color: #067d40;
  background-color: rgba(9, 191, 99, 0.12);
  border-color: rgba(9, 191, 99, 0.25);
}

.section-badge.badge-cyan {
  color: #0c6a99;
  background-color: rgba(35, 162, 226, 0.12);
  border-color: rgba(35, 162, 226, 0.25);
}

.section-badge.badge-gold {
  color: #8f6c00;
  background-color: rgba(255, 208, 21, 0.18);
  border-color: rgba(255, 208, 21, 0.4);
}

.section-badge.badge-purple {
  color: #074371;
  background-color: rgba(35, 162, 226, 0.1);
  border-color: rgba(7, 67, 113, 0.2);
}

.section-title {
  margin-bottom: 1.15rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-500);
  line-height: 1.65;
}

/* Gradient Text using Branding Colors (#074371, #23a2e2, #09bf63) */
.gradient-text {
  background: linear-gradient(135deg, #074371 0%, #23a2e2 60%, #09bf63 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-emerald {
  background: linear-gradient(135deg, #09bf63 0%, #23a2e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #e5b90e 0%, #ffd015 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   NAVIGATION BAR (Glassmorphism Sticky)
   ========================================================================== */
.saas-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all var(--transition-smooth);
}

.saas-header.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 30px -10px rgba(7, 67, 113, 0.1);
}

.saas-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.saas-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.saas-brand-logo {
  height: 70px;
  max-height: 70px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.saas-brand:hover .saas-brand-logo {
  transform: scale(1.03);
}

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

.saas-nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-600);
  transition: color var(--transition-fast);
  padding: 0.5rem 0.25rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.saas-nav-link:hover,
.saas-nav-link.active {
  color: var(--vinar-cyan);
}

.saas-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vinar-cyan);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.saas-nav-link:hover::after,
.saas-nav-link.active::after {
  width: 100%;
}

/* Nav Dropdown & Mega Menu */
.saas-dropdown {
  position: relative;
}

.saas-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 340px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -15px rgba(7, 67, 113, 0.16);
  padding: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
  z-index: 1010;
}

.saas-dropdown-menu.menu-right {
  left: auto;
  right: 0;
}

.saas-dropdown-menu-mega {
  width: 980px;
  left: -140px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}

.saas-dropdown:hover .saas-dropdown-menu,
.saas-dropdown:focus-within .saas-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.35rem 0.5rem 0.65rem 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--slate-100);
}

.mega-col-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vinar-navy);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mega-col-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(35, 162, 226, 0.12);
  color: var(--vinar-cyan);
}

.dropdown-item-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
  color: inherit;
}

.dropdown-item-card:hover {
  background-color: var(--slate-50);
  transform: translateX(2px);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.dropdown-icon.icon-erp { background: rgba(7, 67, 113, 0.1); color: var(--vinar-navy); }
.dropdown-icon.icon-pos { background: rgba(255, 208, 21, 0.2); color: #997400; }
.dropdown-icon.icon-inv { background: rgba(35, 162, 226, 0.15); color: var(--vinar-cyan); }
.dropdown-icon.icon-acc { background: rgba(9, 191, 99, 0.15); color: var(--vinar-green); }
.dropdown-icon.icon-hr { background: rgba(147, 51, 234, 0.12); color: #9333ea; }
.dropdown-icon.icon-rep { background: rgba(239, 68, 68, 0.12); color: #dc2626; }
.dropdown-icon.icon-agri { background: rgba(9, 191, 99, 0.15); color: var(--vinar-green); }
.dropdown-icon.icon-leaf { background: rgba(9, 191, 99, 0.15); color: var(--vinar-green); }
.dropdown-icon.icon-farm { background: rgba(255, 208, 21, 0.2); color: #997400; }
.dropdown-icon.icon-ai { background: rgba(147, 51, 234, 0.12); color: #9333ea; }
.dropdown-icon.icon-pdf { background: rgba(35, 162, 226, 0.15); color: var(--vinar-cyan); }
.dropdown-icon.icon-face { background: rgba(9, 191, 99, 0.15); color: var(--vinar-green); }
.dropdown-icon.icon-qr { background: rgba(255, 208, 21, 0.2); color: #997400; }
.dropdown-icon.icon-barcode { background: rgba(7, 67, 113, 0.1); color: var(--vinar-navy); }
.dropdown-icon.icon-sol { background: rgba(35, 162, 226, 0.12); color: var(--vinar-cyan); }
.dropdown-icon.icon-feat { background: rgba(9, 191, 99, 0.12); color: var(--vinar-green); }
.dropdown-icon.icon-res { background: rgba(7, 67, 113, 0.1); color: var(--vinar-navy); }

.dropdown-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dropdown-desc {
  font-size: 0.78rem;
  color: var(--slate-500);
  line-height: 1.35;
}

.dropdown-badge-mini {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
  background: rgba(9, 191, 99, 0.15);
  color: var(--vinar-green);
  text-transform: uppercase;
}

.saas-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Mobile Toggle */
.mobile-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
  font-size: 1.35rem;
  color: var(--slate-700);
  cursor: pointer;
}

/* Mobile Navigation Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 82%;
  max-width: 380px;
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 30px rgba(7, 67, 113, 0.2);
  z-index: 2000;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}

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

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

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--slate-600);
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-850);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
  background: var(--slate-100);
  color: var(--vinar-cyan);
}

.mobile-nav-group {
  margin-bottom: 0.75rem;
  padding: 0.25rem 0;
}

.mobile-group-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vinar-navy);
  padding: 0.35rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-sub-links {
  list-style: none;
  padding-left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-left: 2px solid var(--slate-200);
  margin-left: 0.5rem;
  margin-top: 0.35rem;
  margin-bottom: 0.5rem;
}

.mobile-sub-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.mobile-sub-link:hover {
  color: var(--vinar-cyan);
  background: var(--slate-50);
  transform: translateX(2px);
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 67, 113, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   BUTTONS & CTAs (Using Exact Brand Palette)
   ========================================================================== */
.btn-saas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-saas:focus-visible {
  outline: 2px solid var(--vinar-cyan);
  outline-offset: 2px;
}

/* Primary Navy Button */
.btn-saas-primary {
  background: linear-gradient(135deg, var(--vinar-navy) 0%, #0c5690 100%);
  color: var(--white);
  box-shadow: 0 4px 14px 0 var(--primary-glow);
}

.btn-saas-primary:hover {
  background: linear-gradient(135deg, #053357 0%, var(--vinar-navy) 100%);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px 0 var(--primary-glow);
}

/* Secondary Cyan Button */
.btn-saas-cyan {
  background: linear-gradient(135deg, var(--vinar-cyan) 0%, #1789c4 100%);
  color: var(--white);
  box-shadow: 0 4px 14px 0 var(--secondary-glow);
}

.btn-saas-cyan:hover {
  background: linear-gradient(135deg, #1b8ec9 0%, #1374a8 100%);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px 0 var(--secondary-glow);
}

/* Emerald Green Button */
.btn-saas-emerald {
  background: linear-gradient(135deg, var(--vinar-green) 0%, #079e51 100%);
  color: var(--white);
  box-shadow: 0 4px 14px 0 var(--accent-emerald-glow);
}

.btn-saas-emerald:hover {
  background: linear-gradient(135deg, #079e51 0%, #058242 100%);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px 0 var(--accent-emerald-glow);
}

/* Gold Accent Button */
.btn-saas-gold {
  background: linear-gradient(135deg, var(--vinar-gold) 0%, #e5b90e 100%);
  color: var(--slate-950);
  box-shadow: 0 4px 14px 0 var(--accent-gold-glow);
}

.btn-saas-gold:hover {
  background: linear-gradient(135deg, #e5b90e 0%, #cca307 100%);
  color: var(--slate-950);
  transform: translateY(-1px);
}

.btn-saas-outline {
  background: var(--white);
  color: var(--vinar-navy);
  border-color: var(--slate-300);
}

.btn-saas-outline:hover {
  background: var(--slate-50);
  color: var(--vinar-cyan);
  border-color: var(--vinar-cyan);
}

.btn-saas-outline-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-saas-outline-light:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white) !important;
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn-saas-ghost {
  background: transparent;
  color: var(--slate-700);
}

.btn-saas-ghost:hover {
  background: var(--slate-100);
  color: var(--vinar-navy);
}

.btn-saas-enquiry {
  background: rgba(35, 162, 226, 0.1);
  color: var(--vinar-cyan);
  border: 1px solid rgba(35, 162, 226, 0.3);
}

.btn-saas-enquiry:hover {
  background: rgba(35, 162, 226, 0.18);
  color: var(--vinar-navy);
  border-color: var(--vinar-cyan);
}

.btn-saas-lg {
  padding: 0.85rem 1.85rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-saas-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   HERO SECTION - REDESIGNED FULL-WIDTH MODERN SHOWCASE
   ========================================================================== */
.saas-hero {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(9, 191, 99, 0.07) 0%, transparent 45%),
              radial-gradient(circle at 85% 25%, rgba(35, 162, 226, 0.08) 0%, transparent 50%),
              linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.hero-full-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-header-wrap {
  max-width: 920px;
  margin: 0 auto 2.25rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.45rem 1.15rem;
  background: rgba(35, 162, 226, 0.08);
  border: 1px solid rgba(35, 162, 226, 0.22);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--vinar-navy);
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.hero-tag-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--vinar-green);
  box-shadow: 0 0 0 0 rgba(9, 191, 99, 0.7);
  animation: pulse-emerald 2s infinite;
}

@keyframes pulse-emerald {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(9, 191, 99, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(9, 191, 99, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(9, 191, 99, 0); }
}

.hero-title {
  font-size: clamp(2.4rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  color: var(--slate-900);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* 2-Column Hero Grid for Product & API Pages */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
}

.hero-grid .hero-title {
  text-align: left;
}

.hero-grid .hero-desc {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.hero-grid .hero-actions {
  justify-content: flex-start;
  margin-bottom: 2.25rem;
}

/* Trust Badges & Key Features Strip */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--slate-700);
  background: var(--white);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--slate-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
}

.trust-item:hover {
  border-color: var(--slate-300);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.trust-item i {
  color: var(--vinar-green);
  font-size: 1.1rem;
}

/* Hero 3-Pillar Showcase Grid */
.hero-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  text-align: left;
}

.hero-pillar-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--vinar-navy);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-pillar-card.pillar-agri::before {
  background: linear-gradient(90deg, #09bf63, #23a2e2);
  opacity: 1;
}

.hero-pillar-card.pillar-erp::before {
  background: linear-gradient(90deg, #074371, #23a2e2);
  opacity: 1;
}

.hero-pillar-card.pillar-api::before {
  background: linear-gradient(90deg, #23a2e2, #9333ea);
  opacity: 1;
}

.hero-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(7, 67, 113, 0.1);
  border-color: rgba(35, 162, 226, 0.4);
}

.hero-pillar-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.hero-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.hero-pillar-icon.icon-agri-glow {
  background: rgba(9, 191, 99, 0.12);
  color: var(--vinar-green);
  border: 1px solid rgba(9, 191, 99, 0.25);
}

.hero-pillar-icon.icon-erp-glow {
  background: rgba(7, 67, 113, 0.1);
  color: var(--vinar-navy);
  border: 1px solid rgba(7, 67, 113, 0.2);
}

.hero-pillar-icon.icon-api-glow {
  background: rgba(35, 162, 226, 0.12);
  color: var(--vinar-cyan);
  border: 1px solid rgba(35, 162, 226, 0.25);
}

.hero-pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0;
}

.hero-pillar-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
}

.hero-pillar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-pillar-list li {
  font-size: 0.88rem;
  color: var(--slate-600);
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.4;
}

.hero-pillar-list li i {
  font-size: 1rem;
  color: var(--vinar-green);
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-pillar-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--vinar-navy);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.hero-pillar-link:hover {
  color: var(--vinar-cyan);
  transform: translateX(3px);
}

/* Hero Metrics & Trust Bar */
.hero-metrics-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1.25rem 2rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.metric-val {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--vinar-navy);
  line-height: 1;
}

.metric-label {
  font-size: 0.78rem;
  color: var(--slate-500);
  font-weight: 600;
  line-height: 1.2;
}

.metric-divider {
  width: 1px;
  height: 28px;
  background: var(--slate-200);
}

@media (max-width: 991px) {
  .hero-pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .metric-divider {
    display: none;
  }
  .hero-metrics-bar {
    gap: 1.25rem;
    justify-content: space-around;
  }
}

/* ==========================================================================
   DEVELOPER CODE PLAYGROUND & SANDBOX
   ========================================================================== */
.code-sandbox-card {
  background: var(--slate-950);
  border: 1px solid var(--slate-800);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow-elevated), 0 0 0 1px rgba(255, 255, 255, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 540px;
  height: 420px;
  max-height: 420px;
  margin-left: auto;
  box-sizing: border-box;
}

.sandbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--slate-900);
  padding: 0.65rem 1.15rem;
  border-bottom: 1px solid var(--slate-800);
  flex-shrink: 0;
  height: 48px;
  box-sizing: border-box;
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.window-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: var(--vinar-gold); }
.dot-green { background-color: var(--vinar-green); }

.sandbox-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
}

.sandbox-tab {
  background: transparent;
  border: none;
  color: var(--slate-400);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sandbox-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.sandbox-tab.active {
  color: var(--white);
  background: var(--slate-800);
}

.sandbox-copy-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--slate-300);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sandbox-copy-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.sandbox-body {
  padding: 1.15rem 1.35rem;
  height: calc(420px - 48px - 40px);
  max-height: calc(420px - 48px - 40px);
  overflow-y: auto !important;
  overflow-x: auto !important;
  flex: 1 1 auto;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

.sandbox-body::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.sandbox-body::-webkit-scrollbar-track {
  background: #090e1a;
}

.sandbox-body::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}

.sandbox-body::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

.sandbox-code-block {
  margin: 0;
  animation: codeFadeIn 0.15s ease;
}

@keyframes codeFadeIn {
  from { opacity: 0.7; }
  to { opacity: 1; }
}

.sandbox-code {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  line-height: 1.65;
  color: #e2e8f0;
  margin: 0;
}

.code-token-keyword { color: #f472b6; font-weight: 600; }
.code-token-string { color: var(--vinar-green); }
.code-token-func { color: var(--vinar-cyan); }
.code-token-param { color: var(--vinar-gold); }
.code-token-comment { color: #64748b; font-style: italic; }

.sandbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.15rem;
  background: var(--slate-900);
  border-top: 1px solid var(--slate-800);
  font-size: 0.78rem;
  color: var(--slate-400);
  flex-shrink: 0;
  height: 40px;
  box-sizing: border-box;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--vinar-green);
  font-weight: 600;
}
.status-indicator::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--vinar-green);
  border-radius: 50%;
}

/* ==========================================================================
   BENTO GRID & CARDS
   ========================================================================== */
.bento-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.bento-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.saas-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--card-shadow);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.saas-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(35, 162, 226, 0.35);
}

.saas-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.icon-bg-primary { background: rgba(7, 67, 113, 0.08); color: var(--vinar-navy); }
.icon-bg-emerald { background: rgba(9, 191, 99, 0.12); color: var(--vinar-green); }
.icon-bg-cyan { background: rgba(35, 162, 226, 0.12); color: var(--vinar-cyan); }
.icon-bg-purple { background: rgba(7, 67, 113, 0.1); color: var(--vinar-navy); }
.icon-bg-amber { background: rgba(255, 208, 21, 0.18); color: #8f6c00; }

.saas-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.saas-card-desc {
  font-size: 0.98rem;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.saas-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}

.saas-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--slate-700);
}

.saas-card-list li svg,
.saas-card-list li i {
  color: var(--vinar-green);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Feature Spotlight Product Cards */
.product-spotlight-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  transition: all var(--transition-smooth);
  margin-bottom: 3rem;
}

.product-spotlight-card:nth-child(even) {
  grid-template-columns: 1fr 1.1fr;
}

.product-spotlight-card:hover {
  box-shadow: var(--card-shadow-elevated);
  border-color: rgba(35, 162, 226, 0.3);
}

.spotlight-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spotlight-visual {
  background: radial-gradient(circle at center, rgba(35, 162, 226, 0.12) 0%, #030712 100%);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--slate-800);
  position: relative;
  overflow: hidden;
}

.product-spotlight-card:nth-child(even) .spotlight-visual {
  background: radial-gradient(circle at center, rgba(9, 191, 99, 0.1) 0%, #030712 100%);
  border-left: none;
  border-right: 1px solid var(--slate-800);
  order: -1;
}

/* --------------------------------------------------------------------------
   INFOGRAPHIC 1: HTML TO PDF DOCUMENT ENGINE WIDGET
   -------------------------------------------------------------------------- */
.ui-infographic-pdf {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.infographic-window {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.code-window {
  background: #090e1a;
}

.info-win-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.85rem;
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-win-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--slate-300);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.info-win-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--vinar-cyan);
  background: rgba(35, 162, 226, 0.12);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}

.code-window .info-win-body {
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1.55;
  color: #cbd5e1;
}

.code-line {
  white-space: nowrap;
}

.code-line.indent {
  padding-left: 1rem;
}

.c-tag { color: #f43f5e; }
.c-attr { color: #38bdf8; }
.c-str { color: #a3e635; }
.c-val { color: #fbbf24; }

/* Conversion Flow Bridge */
.infographic-flow-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
}

.flow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, rgba(35, 162, 226, 0.2), rgba(9, 191, 99, 0.2));
  border: 1px solid rgba(35, 162, 226, 0.4);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 700;
  color: #e2e8f0;
  box-shadow: 0 0 15px rgba(35, 162, 226, 0.25);
}

/* Rendered PDF Output Document Preview */
.pdf-output-window {
  background: #ffffff;
  color: #0f172a;
}

.pdf-page-preview {
  padding: 1.1rem 1.25rem;
  background: #ffffff;
}

.pdf-doc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #074371;
  margin-bottom: 0.75rem;
}

.pdf-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pdf-logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #074371;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.pdf-brand-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: #074371;
  line-height: 1.1;
}

.pdf-brand-sub {
  font-size: 0.65rem;
  color: #64748b;
}

.pdf-status-pill {
  background: #dcfce7;
  color: #15803d;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.pdf-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  font-size: 0.72rem;
  background: #f8fafc;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.pdf-meta-row small {
  color: #64748b;
  display: block;
}

.pdf-table-mini {
  width: 100%;
  font-size: 0.72rem;
  margin-bottom: 0.75rem;
}

.pdf-tr {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 0.35rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.pdf-tr.pdf-th {
  font-weight: 700;
  color: #475569;
  border-bottom: 1px solid #cbd5e1;
}

.pdf-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 0.4rem;
  border-top: 1px solid #e2e8f0;
}

.pdf-total-box {
  text-align: right;
}

.pdf-total-box span {
  font-size: 0.68rem;
  color: #64748b;
  display: block;
}

.pdf-total-box strong {
  font-size: 0.95rem;
  color: #074371;
}

/* --------------------------------------------------------------------------
   INFOGRAPHIC 2: BIOMETRIC FACE RECOGNITION SCANNER WIDGET
   -------------------------------------------------------------------------- */
.ui-infographic-face {
  width: 100%;
}

.biometric-scanner-frame {
  background: #020617;
  border: 1px solid rgba(9, 191, 99, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(9, 191, 99, 0.15);
}

.bio-hud-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(9, 191, 99, 0.2);
}

.bio-status-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #4ade80;
  font-family: var(--font-mono);
}

.bio-status-live .pulse-emerald {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vinar-green);
  box-shadow: 0 0 8px var(--vinar-green);
}

.bio-latency-tag {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--vinar-cyan);
  background: rgba(35, 162, 226, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* Scanner Viewport with Scanline & Face Contour */
.bio-scan-viewport {
  height: 220px;
  position: relative;
  background: radial-gradient(circle at center, #071f1a 0%, #020617 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bio-scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #09bf63, #23a2e2, transparent);
  box-shadow: 0 0 12px #09bf63, 0 0 20px #23a2e2;
  animation: bio-scan 2.8s ease-in-out infinite;
  z-index: 5;
}

@keyframes bio-scan {
  0% { top: 0%; opacity: 0.2; }
  50% { top: 96%; opacity: 1; }
  100% { top: 0%; opacity: 0.2; }
}

/* Corner Reticle Brackets */
.bio-reticle {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #09bf63;
  border-style: solid;
}

.bio-reticle.top-left { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.bio-reticle.top-right { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.bio-reticle.bottom-left { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.bio-reticle.bottom-right { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

/* Face Mesh Representation */
.bio-face-mesh {
  width: 130px;
  height: 160px;
  position: relative;
  border: 1.5px dashed rgba(9, 191, 99, 0.4);
  border-radius: 50% 50% 45% 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mesh-point {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 6px #38bdf8;
}

.mesh-point.eye-l { top: 38%; left: 28%; }
.mesh-point.eye-r { top: 38%; right: 28%; }
.mesh-point.nose { top: 54%; left: calc(50% - 3px); background: #4ade80; box-shadow: 0 0 8px #4ade80; }
.mesh-point.mouth-l { top: 72%; left: 34%; }
.mesh-point.mouth-r { top: 72%; right: 34%; }
.mesh-point.chin { bottom: 8%; left: calc(50% - 3px); }

.bio-hud-tags {
  position: absolute;
  bottom: 10px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  gap: 0.35rem;
  z-index: 6;
}

.bio-tag {
  background: rgba(2, 6, 23, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  font-size: 0.68rem;
  font-family: var(--font-mono);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.bio-tag.tag-confidence {
  border-color: rgba(9, 191, 99, 0.4);
  color: #4ade80;
  font-weight: 700;
}

/* Verified Identity Bottom Banner */
.bio-identity-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.15rem;
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(9, 191, 99, 0.2);
}

.bio-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #074371, #23a2e2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  position: relative;
}

.avatar-check {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  border: 2px solid #020617;
}

.bio-identity-info {
  flex: 1;
  padding: 0 0.85rem;
  text-align: left;
}

.bio-emp-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f8fafc;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.badge-emp-id {
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(35, 162, 226, 0.2);
  color: var(--vinar-cyan);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}

.bio-emp-sub {
  font-size: 0.7rem;
  color: #94a3b8;
}

.bio-access-granted {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #4ade80;
  background: rgba(9, 191, 99, 0.15);
  border: 1px solid rgba(9, 191, 99, 0.35);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ==========================================================================
   PRICING SECTION & CARDS
   ========================================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--card-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.pricing-card.featured {
  border-color: var(--vinar-cyan);
  box-shadow: 0 20px 40px -15px var(--secondary-glow);
  transform: scale(1.03);
  z-index: 2;
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--vinar-navy) 0%, var(--vinar-cyan) 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
}

.pricing-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--slate-100);
}

.pricing-plan-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 0.35rem;
}

.pricing-plan-desc {
  font-size: 0.9rem;
  color: var(--slate-500);
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 1.25rem 0 0.5rem 0;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--slate-900);
}

.pricing-amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.03em;
}

.pricing-period {
  font-size: 0.95rem;
  color: var(--slate-500);
  font-weight: 500;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--slate-700);
}

.pricing-features-list li svg,
.pricing-features-list li i {
  color: var(--vinar-green);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Interactive Pricing Calculator */
.calculator-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--card-shadow-elevated);
  max-width: 960px;
  margin: 0 auto 3rem auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-control-group {
  margin-bottom: 1.75rem;
}

.calc-label-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.calc-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-800);
}

.calc-val-badge {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vinar-navy);
  background: var(--primary-light);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--slate-200);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--vinar-cyan);
  cursor: pointer;
  box-shadow: 0 2px 6px var(--secondary-glow);
  -webkit-transition: transform var(--transition-fast);
  transition: transform var(--transition-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-result-box {
  background: var(--slate-900);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  color: var(--white);
  text-align: center;
}

.calc-total-label {
  font-size: 0.9rem;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.calc-total-amount {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.calc-total-note {
  font-size: 0.85rem;
  color: var(--slate-400);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--slate-300);
}

.faq-item.active {
  border-color: rgba(35, 162, 226, 0.4);
  box-shadow: 0 4px 12px rgba(35, 162, 226, 0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.5rem;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--vinar-cyan);
}

.faq-icon-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-smooth);
  color: var(--slate-400);
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--vinar-cyan);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 1.5rem;
}

.faq-content-inner {
  padding-bottom: 1.35rem;
  font-size: 0.98rem;
  color: var(--slate-600);
  line-height: 1.65;
}

/* ==========================================================================
   CONTACT US & QUICK ENQUIRY
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--card-shadow-elevated);
  overflow: hidden;
}

.contact-info-panel {
  background: var(--slate-900);
  color: var(--white);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon-circle {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--vinar-cyan);
  flex-shrink: 0;
}

.contact-form-panel {
  padding: 1rem;
}

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

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--slate-800);
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  background-color: var(--white);
  border-color: var(--vinar-cyan);
  box-shadow: 0 0 0 3px var(--secondary-glow);
}

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

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Modal Popup Quick Enquiry */
.saas-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.saas-modal.open {
  opacity: 1;
  visibility: visible;
}

.saas-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 67, 113, 0.6);
  backdrop-filter: blur(8px);
}

.saas-modal-dialog {
  position: relative;
  background: var(--white);
  width: 100%;
  max-width: 640px;
  max-height: 85vh;
  height: auto;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px -15px rgba(7, 67, 113, 0.35);
  z-index: 3001;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.saas-modal.open .saas-modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-header-custom {
  padding: 1.25rem 1.75rem 1.1rem 1.75rem;
  border-bottom: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  background: var(--white);
}

.modal-title-custom {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--vinar-navy);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.modal-close-btn {
  background: var(--slate-100);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--slate-600);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--slate-200);
  color: var(--slate-900);
}

.modal-body-custom {
  padding: 1.25rem 1.75rem 2rem 1.75rem;
  flex: 1 1 auto;
  overflow-y: auto !important;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  max-height: calc(85vh - 65px);
  overscroll-behavior: contain;
}

/* Universal display for embedded ERP forms */
.vinartech-form-wrapper,
.contact-form-panel .vinartech-form-wrapper,
.modal-body-custom .vinartech-form-wrapper {
  overflow-y: visible !important;
  overflow-x: visible !important;
  max-height: none !important;
  height: auto !important;
  overscroll-behavior: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.contact-form-panel .vinartech-form-wrapper,
.modal-body-custom .vinartech-form-wrapper {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

.modal-body-custom::-webkit-scrollbar {
  width: 6px;
}

.modal-body-custom::-webkit-scrollbar-track {
  background: var(--slate-50);
}

.modal-body-custom::-webkit-scrollbar-thumb {
  background: var(--slate-300);
  border-radius: 4px;
}

.modal-body-custom::-webkit-scrollbar-thumb:hover {
  background: var(--slate-400);
}

/* ==========================================================================
   FOOTER (Rich 4-Column SaaS Footer)
   ========================================================================= */
.saas-footer {
  background-color: var(--slate-950);
  color: var(--slate-400);
  padding-top: 5rem;
  border-top: 1px solid var(--slate-800);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--slate-800);
}

.footer-brand-bio {
  font-size: 0.95rem;
  color: var(--slate-400);
  line-height: 1.65;
  margin: 1.25rem 0 1.75rem 0;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.35rem;
}

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

.footer-links a {
  font-size: 0.92rem;
  color: var(--slate-400);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--vinar-cyan);
}

.social-icons-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--slate-800);
  color: var(--slate-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.social-icon-btn:hover {
  background: var(--vinar-cyan);
  color: var(--white);
  transform: translateY(-2px);
}

.social-icon-btn.icon-linkedin:hover {
  background: #0a66c2;
}

.social-icon-btn.icon-whatsapp:hover {
  background: #25d366;
}

.social-icon-btn.icon-facebook:hover {
  background: #1877f2;
}

.social-icon-btn.icon-instagram:hover {
  background: #e4405f;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  font-size: 0.88rem;
  color: var(--slate-500);
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WhatsApp & Quick Enquiry)
   ========================================================================== */
.floating-actions-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-btn-whatsapp {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all var(--transition-bounce);
}

.floating-btn-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.floating-btn-enquiry {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.15rem;
  background: var(--vinar-navy);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px var(--primary-glow);
  cursor: pointer;
  border: 1px solid var(--vinar-cyan);
  transition: all var(--transition-bounce);
}

.floating-btn-enquiry:hover {
  background: var(--vinar-cyan);
  transform: scale(1.05);
}

.scroll-to-top-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--slate-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top-btn:hover {
  background: var(--vinar-cyan);
}

/* ==========================================================================
   GLOBAL RESPONSIVE MEDIA & TABLE UTILITIES
   ========================================================================== */
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
}
img {
  height: auto;
}

.table-responsive-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xl);
  position: relative;
  background: var(--white);
  border: 1px solid var(--slate-200);
}

.table-responsive-wrapper table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (Desktop -> Tablet -> Mobile -> Extra-Small)
   ========================================================================== */

/* Large Tablets & Small Laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .product-spotlight-card,
  .product-spotlight-card:nth-child(even) {
    grid-template-columns: 1fr;
  }
  
  .product-spotlight-card:nth-child(even) .spotlight-visual {
    order: 1;
    border-right: none;
    border-top: 1px solid var(--slate-800);
  }
  
  .spotlight-visual {
    border-left: none;
    border-top: 1px solid var(--slate-800);
    padding: 2rem 1.5rem;
  }

  .spotlight-content {
    padding: 2.75rem 2rem;
  }

  .bento-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .bento-grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
    gap: 2rem;
  }

  .pricing-card.featured {
    transform: none;
  }

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

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

  .contact-info-panel,
  .contact-form-panel {
    padding: 2.5rem 2rem;
  }
}

/* Standard Tablets & Large Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .saas-nav-menu,
  .saas-nav-actions .btn-saas-outline,
  .saas-nav-actions .btn-saas-enquiry {
    display: none;
  }

  .mobile-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
  }

  .saas-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .saas-section-sm {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .bento-grid-3 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .saas-card {
    padding: 1.75rem 1.5rem;
  }

  .spotlight-content {
    padding: 2rem 1.5rem;
  }

  .contact-info-panel,
  .contact-form-panel,
  .calculator-card {
    padding: 2rem 1.5rem;
  }

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

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem 0;
  }

  .floating-actions-container {
    bottom: 18px;
    right: 18px;
    gap: 10px;
  }

  .floating-btn-whatsapp {
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }

  .floating-btn-enquiry {
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }

  .scroll-to-top-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* Mobile Phones (max-width: 480px) */
@media (max-width: 480px) {
  .saas-container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .saas-header {
    height: 4rem;
  }

  .saas-nav-container {
    height: 4rem;
  }

  .saas-brand-logo {
    height: 38px;
    max-height: 38px;
  }

  .saas-nav-actions .btn-saas-primary,
  .saas-nav-actions .btn-saas-emerald {
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
  }

  .hero-title {
    font-size: 2.15rem;
    margin-bottom: 1rem;
  }

  .hero-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-actions .btn-saas {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1.25rem;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    padding-top: 1.25rem;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .sandbox-header {
    flex-wrap: wrap;
    gap: 0.65rem;
    padding: 0.65rem 1rem;
  }

  .sandbox-tabs {
    order: 2;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }

  .sandbox-copy-btn {
    order: 1;
    margin-left: auto;
  }

  .sandbox-body {
    padding: 1rem;
  }

  .sandbox-code {
    font-size: 0.78rem;
  }

  .sandbox-footer {
    padding: 0.65rem 1rem;
    font-size: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .pricing-card {
    padding: 2rem 1.25rem;
  }

  .pricing-amount {
    font-size: 2.25rem;
  }

  .calculator-card {
    padding: 1.75rem 1.15rem;
  }

  .calc-total-amount {
    font-size: 2.25rem;
  }

  .contact-info-panel,
  .contact-form-panel {
    padding: 1.75rem 1.15rem;
  }

  .saas-modal {
    padding: 1rem;
  }

  .saas-modal-dialog {
    height: 80vh;
    max-height: 80vh;
    overflow: hidden;
  }

  .modal-header-custom {
    padding: 1rem 1.25rem;
  }

  .modal-body-custom {
    padding: 1rem 1.25rem 1.5rem 1.25rem;
    max-height: calc(80vh - 58px);
  }

  .mobile-drawer {
    width: 88%;
    padding: 1.25rem;
  }

  .faq-trigger {
    padding: 1.15rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-content {
    padding: 0 1.25rem;
  }
}

/* Extra Small Phones (max-width: 360px) */
@media (max-width: 360px) {
  .saas-brand-logo {
    height: 34px;
    max-height: 34px;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .btn-saas-lg {
    font-size: 0.92rem;
    padding: 0.75rem 1rem;
  }

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

/* ==========================================================================
   BLOG & KNOWLEDGE HUB STYLES
   ========================================================================== */
.blog-hero {
  padding: 5rem 0 3rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(35, 162, 226, 0.08) 0%, transparent 70%);
}

.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem 0 1.5rem;
}

.blog-filter-btn {
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-600);
  background: var(--white);
  border: 1px solid var(--slate-200);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.blog-filter-btn:hover {
  color: var(--vinar-navy);
  border-color: var(--vinar-cyan);
  background: var(--slate-50);
}

.blog-filter-btn.active {
  color: var(--white);
  background: var(--vinar-navy);
  border-color: var(--vinar-navy);
  box-shadow: 0 4px 12px rgba(7, 67, 113, 0.25);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

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

/* Blog Card */
.blog-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 162, 226, 0.4);
  box-shadow: var(--shadow-xl);
}

.blog-card-thumbnail {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #074371 0%, #0d2847 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.blog-card:hover .blog-card-thumbnail img {
  transform: scale(1.05);
}

.blog-card-thumb-icon {
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.85);
  transition: transform var(--transition-smooth);
}

.blog-card:hover .blog-card-thumb-icon {
  transform: scale(1.1);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--slate-400);
}

.blog-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.badge-erp { background: rgba(7, 67, 113, 0.1); color: var(--vinar-navy); }
.badge-api { background: rgba(35, 162, 226, 0.12); color: var(--vinar-cyan); }
.badge-agri { background: rgba(9, 191, 99, 0.15); color: var(--vinar-green); }
.badge-ai { background: rgba(147, 51, 234, 0.12); color: #9333ea; }

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--slate-900);
  margin-bottom: 0.75rem;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-card-title {
  color: var(--vinar-cyan);
}

.blog-card-excerpt {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vinar-navy);
}

.blog-card:hover .blog-card-footer {
  color: var(--vinar-cyan);
}

/* Featured Blog Hero Card */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3.5rem;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-smooth);
}

.blog-featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 162, 226, 0.5);
  box-shadow: var(--shadow-2xl);
}

@media (max-width: 860px) {
  .blog-featured-card {
    grid-template-columns: 1fr;
  }
}

.blog-featured-thumb {
  min-height: 320px;
  background: linear-gradient(135deg, #071525 0%, #074371 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-featured-body {
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 640px) {
  .blog-featured-body {
    padding: 1.75rem;
  }
}

/* Blog Article Content Prose */
.article-header {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(35, 162, 226, 0.08) 0%, transparent 70%);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-bottom: 1.25rem;
}

.article-breadcrumb a {
  color: var(--slate-600);
  text-decoration: none;
}

.article-breadcrumb a:hover {
  color: var(--vinar-cyan);
}

.article-title {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--slate-900);
  max-width: 860px;
  margin: 0 auto 1.25rem;
}

@media (max-width: 768px) {
  .article-title {
    font-size: 2rem;
  }
}

.article-meta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--slate-500);
  flex-wrap: wrap;
}

.article-body {
  max-width: 920px;
  margin: 0 auto;
  padding: 2.5rem 1rem 5rem;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #334155;
}

.article-body h2 {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 2.75rem 0 1rem;
  line-height: 1.3;
}

.article-body h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate-800);
  margin: 2rem 0 0.75rem;
  line-height: 1.35;
}

.article-body p {
  margin-bottom: 1.4rem;
}

.article-body ul,
.article-body ol {
  margin: 1.25rem 0 1.5rem 1.5rem;
}

.article-body li {
  margin-bottom: 0.6rem;
}

.article-callout {
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  background: var(--slate-50);
  border-left: 4px solid var(--vinar-cyan);
  margin: 2rem 0;
}

.article-callout-agri {
  border-left-color: var(--vinar-green);
  background: rgba(9, 191, 99, 0.05);
}

.article-callout-erp {
  border-left-color: var(--vinar-navy);
  background: rgba(7, 67, 113, 0.05);
}

.article-author-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  margin-top: 3.5rem;
}

.article-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--vinar-navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}