/* RD Software Consultancy - Unified CSS Design System */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
  --primary: #0A3D91;
  --primary-rgb: 10, 61, 145;
  --secondary: #0057B8;
  --secondary-rgb: 0, 87, 184;
  --gold: #D4A017;
  --gold-rgb: 212, 160, 23;
  --accent: #00B894;
  --accent-rgb: 0, 184, 148;
  --dark: #0F172A;
  --text-main: #334155;
  --text-muted: #64748B;
  --light: #F8FAFC;
  --border: #E2E8F0;
  --white: #FFFFFF;
  
  --font-headings: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-primary: 0 10px 25px -5px rgba(10, 61, 145, 0.3);
  --shadow-gold: 0 10px 25px -5px rgba(212, 160, 23, 0.3);
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  --header-height: 80px;
}

[data-theme="dark"] {
  --dark: #F8FAFC;
  --text-main: #CBD5E1;
  --text-muted: #94A3B8;
  --light: #1E293B;
  --border: #334155;
  --white: #0F172A;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
  --shadow-primary: 0 10px 25px -5px rgba(10, 61, 145, 0.6);
  --shadow-gold: 0 10px 25px -5px rgba(212, 160, 23, 0.6);
}

/* --- Base & Reset Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  color: var(--dark);
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 1rem;
}

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

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

ul {
  list-style: none;
}

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

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

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--gold);
  margin: 0.75rem auto 0;
  border-radius: var(--radius-full);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.badge-primary { background: rgba(10, 61, 145, 0.1); color: var(--primary); }
.badge-gold { background: rgba(212, 160, 23, 0.1); color: var(--gold); }
.badge-accent { background: rgba(0, 184, 148, 0.1); color: var(--accent); }
.badge-expired { background: rgba(220, 38, 38, 0.1); color: #dc2626; }

/* --- Premium Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -5px rgba(0, 87, 184, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(10, 61, 145, 0.05);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-color: #b8860b;
  transform: translateY(-2px);
  box-shadow: 0 12px 20px -5px rgba(184, 134, 11, 0.5);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  box-shadow: 0 10px 20px -5px rgba(0, 184, 148, 0.3);
}

.btn-accent:hover {
  background-color: #009475;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* --- Header & Navigation --- */
header {
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-lg);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: var(--shadow-primary);
}

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

.logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
  letter-spacing: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 0.5rem 0.25rem;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition-normal);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: var(--primary);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

/* --- Hero Section --- */
.hero {
  background: radial-gradient(circle at 80% 20%, rgba(0, 87, 184, 0.05), transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(214, 160, 23, 0.03), transparent 50%),
              var(--white);
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(10, 61, 145, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.hero-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.hero-title span {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-headings);
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

/* --- SVG Isometric Illustration mock --- */
.hero-illustration {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* --- Featured Product (HealthPro) --- */
.featured-product {
  background-color: var(--light);
}

.featured-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.featured-card-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.featured-content {
  padding: 4rem;
}

.featured-visual-panel {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 4rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.featured-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-check-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

.featured-badge {
  margin-bottom: 1rem;
}

/* --- General Products & Cards --- */
.products-filter-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-muted);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary);
  transition: var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.product-card:hover::before {
  width: 8px;
}

.product-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  background: rgba(0, 87, 184, 0.08);
  color: var(--secondary);
  transition: var(--transition-normal);
}

.product-card:hover .product-card-icon {
  background: var(--secondary);
  color: var(--white);
}

.product-card-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.product-card-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.product-card-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.product-card-features li {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card-features li i {
  color: var(--accent);
  font-size: 0.75rem;
}

/* --- Industries & Grid --- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-normal);
}

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

.industry-icon {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.industry-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- Forms & General Modals --- */
.form-group {
  margin-bottom: 1.25rem;
}

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

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="time"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--light);
  transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--secondary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.1);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- Demo Booking Center --- */
.demo-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.demo-form-panel {
  padding: 4rem;
}

.demo-info-panel {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.demo-info-panel h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.demo-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.demo-step-num {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Download Center --- */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.download-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.download-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.download-type-icon {
  font-size: 2.25rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.download-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.download-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.trial-cta-banner {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 3rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
}

.trial-cta-text h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.trial-cta-text p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* --- Licensing Portal --- */
.licensing-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
}

.licensing-tabs {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  border: 1px solid var(--border);
  height: fit-content;
}

.licensing-tab-btn {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: none;
  background: transparent;
  text-align: left;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  margin-bottom: 0.5rem;
}

.licensing-tab-btn:last-child {
  margin-bottom: 0;
}

.licensing-tab-btn.active, .licensing-tab-btn:hover {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.licensing-tab-btn.active {
  border-left: 4px solid var(--primary);
}

.licensing-content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.license-status-result {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: none;
  animation: slideUp 0.3s ease;
}

.license-status-result.active-key {
  border-color: var(--accent);
  background: rgba(0, 184, 148, 0.03);
}

.license-status-result.expired-key {
  border-color: #dc2626;
  background: rgba(220, 38, 38, 0.03);
}

/* --- Customer Portal Dashboard --- */
.dashboard-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.dashboard-sidebar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  height: fit-content;
  box-shadow: var(--shadow-sm);
}

.dashboard-profile-box {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.dashboard-avatar {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}

.dashboard-profile-box h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.dashboard-profile-box p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.dashboard-nav-btn {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  text-align: left;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-fast);
  margin-bottom: 0.25rem;
}

.dashboard-nav-btn:hover, .dashboard-nav-btn.active {
  background: var(--light);
  color: var(--primary);
}

.dashboard-content-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  min-height: 500px;
}

.stat-grid-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dashboard-stat-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dashboard-stat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: rgba(0, 87, 184, 0.05);
  color: var(--secondary);
}

.dashboard-stat-val h3 {
  font-size: 1.5rem;
  line-height: 1.1;
}

.dashboard-stat-val p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

th, td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

th {
  background-color: var(--light);
  color: var(--dark);
  font-weight: 700;
}

tr:hover td {
  background-color: rgba(248, 250, 252, 0.5);
}

/* --- Support Desk & FAQs --- */
.faq-section {
  background-color: var(--light);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  padding: 1rem 1.5rem;
  transition: var(--transition-fast);
}

details[open] {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

summary {
  font-weight: 700;
  font-family: var(--font-headings);
  color: var(--dark);
  cursor: pointer;
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-normal);
}

details[open] summary::after {
  transform: rotate(180deg);
  color: var(--secondary);
}

details p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

.kb-search-box {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  position: relative;
}

.kb-search-box input {
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
}

.support-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.support-channel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.support-channel-card:hover {
  border-color: var(--secondary);
  transform: translateY(-3px);
}

.channel-icon {
  font-size: 1.75rem;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}

.channel-icon.whatsapp { color: #25D366; }

/* --- Contact Us Page --- */
.contact-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item-icon {
  width: 45px;
  height: 45px;
  background: rgba(0, 87, 184, 0.05);
  color: var(--secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-item-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-item-details p, .contact-item-details a {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-map-mock {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-color: var(--light);
  border: 1px solid var(--border);
  margin-top: 2rem;
}

.map-placeholder-bg {
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--border) 1px, transparent 0);
  background-size: 16px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  flex-direction: column;
  gap: 1rem;
}

/* --- Footer --- */
footer {
  background-color: #0B132B;
  color: #8F9BB3;
  padding: 5rem 0 2rem;
  border-top: 3px solid var(--gold);
}

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

.footer-col h3 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #8F9BB3;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo-text h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin: 0;
}

.footer-logo-text p {
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
}

/* --- Floating WhatsApp widget --- */
.whatsapp-chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-normal);
  cursor: pointer;
}

.whatsapp-chat-widget:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #128C7E;
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background: var(--white);
  color: var(--dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: var(--transition-normal);
}

.whatsapp-chat-widget:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* --- Dynamic View Render Animations --- */
.animate-view {
  animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-title { font-size: 2.75rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card-grid { grid-template-columns: 1fr; }
  .featured-visual-panel { order: -1; padding: 3rem; }
  .featured-content { padding: 3rem; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    z-index: 999;
  }
  
  .nav-menu.mobile-open {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    padding: 0.5rem 0;
  }
  
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-tagline { justify-content: center; }
  .hero-tagline::before { display: none; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; gap: 2rem; }
  
  .products-grid { grid-template-columns: 1fr; }
  .demo-split-grid { grid-template-columns: 1fr; }
  .demo-info-panel { padding: 3rem; }
  .demo-form-panel { padding: 3rem 1.5rem; }
  
  .licensing-layout { grid-template-columns: 1fr; }
  .dashboard-wrapper { grid-template-columns: 1fr; }
  .support-channels { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.25rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .featured-features-grid { grid-template-columns: 1fr; }
  .support-channels { grid-template-columns: 1fr; }
  .trial-cta-banner { padding: 2rem; flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* --- Theme Transition Rules --- */
body, header, main, section, footer, .product-card, .featured-card, 
.licensing-tabs, .licensing-content-card, .dashboard-sidebar, 
.dashboard-content-panel, .contact-info-card, details, input, select, textarea {
  transition: background-color var(--transition-normal), 
              border-color var(--transition-normal), 
              box-shadow var(--transition-normal),
              color var(--transition-normal);
}

/* Update header icons for dark mode theme button */
[data-theme="dark"] .theme-toggle-btn {
  color: var(--gold) !important;
}

/* --- Testimonials Slider --- */
.testimonials-section {
  position: relative;
  overflow: hidden;
  background: var(--light);
}

.testimonials-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 1rem;
}

.testimonial-card-expanded {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}

.testimonial-card-expanded::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 30px;
  font-size: 8rem;
  color: var(--border);
  font-family: serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-main);
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 0.75rem;
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.testimonial-author-org {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-nav-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
}

.testimonial-nav-dot.active {
  background: var(--primary);
  width: 24px;
}

/* --- System Diagnostics Dashboard --- */
.diagnostic-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.diagnostic-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--light);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
}

.diagnostic-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.diagnostic-icon-wrapper {
  font-size: 1.25rem;
  color: var(--primary);
}

.diagnostic-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.diagnostic-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.diagnostic-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
}

.diagnostic-status-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  position: relative;
}

.diagnostic-status-dot.green { background-color: var(--accent); }
.diagnostic-status-dot.orange { background-color: var(--gold); }
.diagnostic-status-dot.red { background-color: #EF4444; }

.diagnostic-status-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  animation: pulse 1.5s infinite;
}

.diagnostic-status-dot.green::after { border: 2px solid var(--accent); }
.diagnostic-status-dot.orange::after { border: 2px solid var(--gold); }
.diagnostic-status-dot.red::after { border: 2px solid #EF4444; }

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* --- WhatsApp Marketing Simulator Console --- */
.whatsapp-simulator-panel {
  border: 1px solid var(--border);
  background: var(--light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.simulator-workspace {
  padding: 2rem;
  border-right: 1px solid var(--border);
}

.simulator-live-chat {
  background: #E5DDD5;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 400px;
  position: relative;
}

.simulator-live-chat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M0 0h60v60H0z" fill="none"/><path d="M12 24c0-2.2 1.8-4 4-4h28c2.2 0 4 1.8 4 4v16c0 2.2-1.8 4-4 4H16c-2.2 0-4-1.8-4-4V24zm4-2c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h28c1.1 0 2-.9 2-2V24c0-1.1-.9-2-2-2H16z" fill="%23FFFFFF" fill-opacity="0.07"/></svg>');
  z-index: 0;
}

.chat-header-sim {
  background: #075E54;
  color: var(--white);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.chat-avatar-sim {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: #128C7E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.chat-body-sim {
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
  z-index: 1;
}

.chat-bubble-sim-in {
  background: var(--white);
  align-self: flex-start;
  max-width: 80%;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  border-top-left-radius: 0;
  font-size: 0.85rem;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  color: var(--dark);
}

.chat-bubble-sim-out {
  background: #DCF8C6;
  align-self: flex-end;
  max-width: 80%;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  border-top-right-radius: 0;
  font-size: 0.85rem;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1);
  color: #303030;
}

.campaign-progress-bar-wrapper {
  background: var(--border);
  height: 10px;
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 1rem;
  display: none;
}

.campaign-progress-bar-fill {
  background: var(--accent);
  height: 100%;
  width: 0%;
  transition: width 0.1s linear;
}

.analytics-grid-sim {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  display: none;
  animation: slideUp 0.3s ease;
}

.analytics-card-sim {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.analytics-card-sim h4 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.analytics-card-sim p {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .whatsapp-simulator-panel {
    grid-template-columns: 1fr;
  }
  .simulator-workspace {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}


/* ═══════════════════════════════════════════════════════════
   ENTERPRISE SAAS UPGRADE — TOP CONTACT BAR
════════════════════════════════════════════════════════════ */
.top-contact-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 0;
  position: relative;
  z-index: 1100;
}
.top-bar-inner { display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.top-bar-left, .top-bar-right { display:flex; align-items:center; gap:0.6rem; flex-wrap:wrap; }
.top-contact-bar a { color:rgba(255,255,255,0.85); text-decoration:none; display:inline-flex; align-items:center; gap:0.35rem; transition:color 0.2s; }
.top-contact-bar a:hover { color:var(--gold); }
.top-bar-divider { color:rgba(255,255,255,0.25); }
.top-bar-wa { color:#7fffc4 !important; font-weight:600; }
.top-bar-demo-link { background:var(--gold); color:#fff !important; padding:0.2rem 0.75rem; border-radius:var(--radius-full); font-weight:700; letter-spacing:0.3px; transition:background 0.2s; }
.top-bar-demo-link:hover { background:#b8860b; }

/* ═══════════════════════════════════════════════════════════
   LOGO IMAGE-BASED
════════════════════════════════════════════════════════════ */
.logo-img { height:56px; width:auto; object-fit:contain; display:block; filter:drop-shadow(0 2px 4px rgba(0,0,0,0.1)); }
.logo-fallback { display:flex; align-items:center; gap:0.75rem; }
.footer-logo-img { height:65px; width:auto; object-fit:contain; margin-bottom:1rem; filter:brightness(0) invert(1); opacity:0.9; }

/* ═══════════════════════════════════════════════════════════
   NAV — CALL NOW + DROPDOWN
════════════════════════════════════════════════════════════ */
.nav-right-group { display:flex; align-items:center; gap:0.75rem; }
.call-now-btn { display:flex; align-items:center; gap:0.6rem; background:rgba(10,61,145,0.06); border:1px solid rgba(10,61,145,0.15); border-radius:var(--radius-lg); padding:0.4rem 0.85rem; text-decoration:none; transition:all 0.2s; color:var(--dark) !important; }
.call-now-btn:hover { background:var(--primary); border-color:var(--primary); color:white !important; }
.call-icon-wrap { width:32px; height:32px; background:var(--primary); color:white; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:0.8rem; animation:phonePulse 2s infinite; }
@keyframes phonePulse { 0%,100%{box-shadow:0 0 0 0 rgba(10,61,145,0.4);} 50%{box-shadow:0 0 0 6px rgba(10,61,145,0);} }
.call-text { line-height:1.2; }
.call-text span { font-size:0.65rem; color:var(--text-muted); display:block; }
.call-text strong { font-size:0.82rem; color:var(--primary); }
.has-dropdown { position:relative; }
.dropdown-menu { display:none; position:absolute; top:calc(100% + 0.75rem); left:50%; transform:translateX(-50%); background:var(--white); border:1px solid var(--border); border-radius:var(--radius-xl); box-shadow:var(--shadow-xl); padding:0.75rem; min-width:240px; z-index:900; animation:dropdownFade 0.2s ease; }
@keyframes dropdownFade { from{opacity:0;transform:translateX(-50%) translateY(-8px);}to{opacity:1;transform:translateX(-50%) translateY(0);} }
.has-dropdown:hover .dropdown-menu { display:block; }
.dropdown-menu li a { display:flex; align-items:center; gap:0.6rem; padding:0.55rem 0.85rem; border-radius:var(--radius-md); font-size:0.85rem; font-weight:500; color:var(--text-main); transition:background 0.15s; }
.dropdown-menu li a:hover { background:var(--light); color:var(--primary); }
.dropdown-menu li a i { width:16px; text-align:center; }

/* LOADING SPINNER */
.loading-spinner-wrap { position:relative; width:80px; height:80px; }
.loading-ring { width:80px; height:80px; border-radius:50%; border:3px solid var(--border); border-top-color:var(--primary); border-right-color:var(--gold); animation:spin 1s linear infinite; position:absolute; top:0; left:0; }
.loading-logo { width:48px; height:48px; object-fit:contain; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); border-radius:8px; }

/* ═══════════════════════════════════════════════════════════
   PREMIUM HERO SECTION
════════════════════════════════════════════════════════════ */
.hero-enterprise { background:linear-gradient(135deg,#EBF2FF 0%,#F0F7FF 40%,#EAF9F5 100%); min-height:88vh; display:flex; align-items:center; position:relative; overflow:hidden; padding:5rem 0 4rem; }
.hero-enterprise::before { content:''; position:absolute; top:-100px; right:-100px; width:600px; height:600px; background:radial-gradient(circle,rgba(10,61,145,0.06) 0%,transparent 70%); pointer-events:none; }
.hero-layout { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; position:relative; z-index:1; }
.hero-tagline-strip { display:inline-flex; align-items:center; gap:0.5rem; font-size:0.82rem; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:1.25rem; }
.hero-tagline-dot { color:var(--primary); opacity:0.4; }
.hero-h1 { font-size:3.25rem; font-weight:900; line-height:1.1; color:#0A2459; margin-bottom:1rem; font-family:'Nunito Sans','Inter',sans-serif; }
.hero-h1 span { color:var(--secondary); }
.hero-sub-headline { font-size:1.2rem; font-weight:700; color:var(--secondary); margin-bottom:1rem; }
.hero-desc { font-size:1rem; color:var(--text-muted); line-height:1.75; margin-bottom:2rem; max-width:520px; }
.hero-cta-row { display:flex; flex-wrap:wrap; gap:0.75rem; margin-bottom:2.5rem; }

.btn-hero-primary { background:var(--primary); color:white; padding:0.85rem 1.6rem; border-radius:var(--radius-md); font-weight:700; font-size:0.9rem; border:none; cursor:pointer; display:inline-flex; align-items:center; gap:0.5rem; box-shadow:0 6px 24px rgba(10,61,145,0.35); transition:all 0.25s; text-decoration:none; }
.btn-hero-primary:hover { background:#082d70; transform:translateY(-2px); box-shadow:0 10px 32px rgba(10,61,145,0.45); color:white; }
.btn-hero-gold { background:var(--gold); color:white; padding:0.85rem 1.6rem; border-radius:var(--radius-md); font-weight:700; font-size:0.9rem; border:none; cursor:pointer; display:inline-flex; align-items:center; gap:0.5rem; box-shadow:0 6px 24px rgba(212,160,23,0.35); transition:all 0.25s; text-decoration:none; }
.btn-hero-gold:hover { background:#b8860b; transform:translateY(-2px); color:white; }
.btn-hero-outline { background:transparent; color:var(--primary); padding:0.85rem 1.4rem; border-radius:var(--radius-md); font-weight:700; font-size:0.9rem; border:2px solid var(--primary); cursor:pointer; display:inline-flex; align-items:center; gap:0.5rem; transition:all 0.25s; text-decoration:none; }
.btn-hero-outline:hover { background:var(--primary); color:white; transform:translateY(-2px); }
.btn-hero-wa { background:#25D366; color:white; padding:0.85rem 1.4rem; border-radius:var(--radius-md); font-weight:700; font-size:0.9rem; border:none; cursor:pointer; display:inline-flex; align-items:center; gap:0.5rem; box-shadow:0 6px 24px rgba(37,211,102,0.35); transition:all 0.25s; text-decoration:none; }
.btn-hero-wa:hover { background:#1ebe5a; transform:translateY(-2px); color:white; }

.hero-stats-row { display:flex; gap:2rem; flex-wrap:wrap; }
.hero-stat-num { font-size:1.75rem; font-weight:900; color:var(--primary); line-height:1; font-family:'Nunito Sans',sans-serif; }
.hero-stat-num span { color:var(--gold); }
.hero-stat-label { font-size:0.72rem; color:var(--text-muted); font-weight:600; text-transform:uppercase; letter-spacing:0.5px; margin-top:2px; }
.hero-visual { position:relative; display:flex; justify-content:center; align-items:center; }
.hero-dashboard-img { width:100%; max-width:580px; border-radius:var(--radius-xl); box-shadow:0 30px 80px rgba(10,61,145,0.2); animation:heroFloat 4s ease-in-out infinite; }
@keyframes heroFloat { 0%,100%{transform:translateY(0px);} 50%{transform:translateY(-12px);} }
.trust-badge { position:absolute; bottom:24px; right:-10px; background:linear-gradient(135deg,#D4A017,#c8941c); color:white; border-radius:var(--radius-xl); padding:1rem 1.25rem; text-align:center; box-shadow:0 10px 30px rgba(212,160,23,0.4); animation:badgePop 3s ease-in-out infinite; min-width:110px; }
@keyframes badgePop { 0%,100%{transform:scale(1) rotate(-2deg);} 50%{transform:scale(1.04) rotate(-2deg);} }
.trust-badge .trust-stars { font-size:0.75rem; letter-spacing:2px; margin-bottom:0.25rem; }
.trust-badge .trust-num { font-size:1.6rem; font-weight:900; line-height:1; }
.trust-badge .trust-label { font-size:0.65rem; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; opacity:0.9; }

/* ═══════════════════════════════════════════════════════════
   FEATURES STRIP
════════════════════════════════════════════════════════════ */
.features-strip { background:linear-gradient(90deg,#0A2459 0%,#0A3D91 50%,#0A2459 100%); padding:1.75rem 0; }
.features-strip-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:1rem; align-items:center; }
.feature-strip-item { display:flex; align-items:center; gap:0.75rem; color:white; padding:0.5rem 0.75rem; border-right:1px solid rgba(255,255,255,0.1); }
.feature-strip-item:last-child { border-right:none; }
.feature-strip-icon { width:38px; height:38px; background:rgba(255,255,255,0.1); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:1rem; color:var(--gold); flex-shrink:0; }
.feature-strip-text strong { display:block; font-size:0.8rem; font-weight:700; line-height:1.2; }
.feature-strip-text span { font-size:0.68rem; color:rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════════════════════
   TRUST STATISTICS SECTION
════════════════════════════════════════════════════════════ */
.trust-stats-section { background:var(--white); padding:4rem 0; border-bottom:1px solid var(--border); }
.trust-stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; text-align:center; }
.trust-stat-card { padding:2rem 1rem; border-radius:var(--radius-xl); background:var(--light); border:1px solid var(--border); transition:all 0.3s; position:relative; overflow:hidden; }
.trust-stat-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--primary),var(--gold)); }
.trust-stat-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.trust-stat-icon { width:52px; height:52px; background:rgba(10,61,145,0.08); color:var(--primary); border-radius:var(--radius-full); display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin:0 auto 1rem; }
.trust-stat-number { font-size:2.5rem; font-weight:900; color:var(--primary); line-height:1; font-family:'Nunito Sans',sans-serif; }
.trust-stat-label { font-size:0.85rem; font-weight:600; color:var(--text-muted); margin-top:0.4rem; }

/* ═══════════════════════════════════════════════════════════
   PRODUCT SHOWCASE UPGRADED CARDS
════════════════════════════════════════════════════════════ */
.product-showcase-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:1.75rem; }
.product-showcase-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-xl); overflow:hidden; transition:all 0.3s; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; }
.product-showcase-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-xl); border-color:transparent; }
.product-card-header { padding:1.5rem; display:flex; align-items:center; gap:1rem; border-bottom:1px solid var(--border); }
.product-card-icon-lg { width:50px; height:50px; border-radius:var(--radius-lg); display:flex; align-items:center; justify-content:center; font-size:1.4rem; flex-shrink:0; }
.product-card-body { padding:1.25rem 1.5rem; flex:1; }
.product-card-features-list { list-style:none; padding:0; margin:0.75rem 0; }
.product-card-features-list li { display:flex; align-items:center; gap:0.5rem; font-size:0.82rem; color:var(--text-main); padding:0.25rem 0; }
.product-card-features-list li i { color:var(--accent); font-size:0.7rem; }
.product-card-footer { padding:1rem 1.5rem; border-top:1px solid var(--border); display:flex; gap:0.5rem; background:var(--light); }

/* ═══════════════════════════════════════════════════════════
   CTA CONVERSION BANNER
════════════════════════════════════════════════════════════ */
.cta-conversion-section { background:linear-gradient(135deg,var(--primary) 0%,#0A2459 100%); padding:5rem 0; text-align:center; position:relative; overflow:hidden; }
.cta-conversion-section::before { content:''; position:absolute; top:-50%; left:-10%; width:50%; height:200%; background:radial-gradient(ellipse,rgba(212,160,23,0.12) 0%,transparent 60%); pointer-events:none; }
.cta-conversion-section h2 { color:white; font-size:2.5rem; font-weight:900; margin-bottom:1rem; }
.cta-conversion-section p { color:rgba(255,255,255,0.75); font-size:1.1rem; margin-bottom:2.5rem; }
.cta-buttons-row { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; }

/* ═══════════════════════════════════════════════════════════
   FOOTER ENTERPRISE
════════════════════════════════════════════════════════════ */
.footer-gstin { font-size:0.78rem; color:rgba(255,255,255,0.5); margin-top:0.5rem; display:flex; align-items:center; gap:0.4rem; }
.footer-social-row { display:flex; gap:0.6rem; margin-top:1.25rem; }
.footer-social-row a { width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,0.1); color:rgba(255,255,255,0.7); display:flex; align-items:center; justify-content:center; font-size:0.85rem; transition:all 0.2s; }
.footer-social-row a:hover { background:var(--gold); color:white; }
.footer-links li a { display:flex; align-items:center; gap:0.4rem; padding:0.22rem 0; font-size:0.85rem; }
.footer-links li a i { font-size:0.45rem; color:var(--gold); }
.footer-office-block { position:relative; padding-left:1rem; border-left:2px solid rgba(255,255,255,0.15); }
.footer-office-badge { position:absolute; top:0; left:-18px; font-size:0.6rem; font-weight:800; padding:0.1rem 0.3rem; border-radius:4px; letter-spacing:0.5px; }
.footer-office-hq { background:var(--primary); color:white; }
.footer-office-biz { background:var(--gold); color:white; }
.footer-office-title { font-size:0.82rem; font-weight:700; color:rgba(255,255,255,0.9); margin-bottom:0.25rem; display:flex; align-items:center; gap:0.4rem; }
.footer-office-title i { color:var(--gold); }
.footer-office-addr { font-size:0.78rem; color:rgba(255,255,255,0.55); margin:0; line-height:1.5; }
.footer-office-appt { font-size:0.72rem; color:var(--gold); margin-top:0.4rem; font-weight:600; display:flex; align-items:center; gap:0.4rem; }
.footer-contact-row { display:flex; flex-direction:column; gap:0.4rem; margin-top:1.25rem; }
.footer-contact-row a { font-size:0.8rem; color:rgba(255,255,255,0.7); display:flex; align-items:center; gap:0.4rem; }
.footer-contact-row a:hover { color:var(--gold); }
.footer-contact-row a i { color:var(--gold); width:14px; }
.footer-bottom-bar { background:rgba(0,0,0,0.3); border-top:1px solid rgba(255,255,255,0.08); }

/* ═══════════════════════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-h1 { font-size:2.5rem; }
  .features-strip-grid { grid-template-columns:repeat(3,1fr); }
  .trust-stats-grid { grid-template-columns:repeat(2,1fr); }
  .call-now-btn .call-text { display:none; }
  .call-now-btn { padding:0.4rem; border:none; background:transparent; }
}
@media (max-width: 768px) {
  .top-bar-left { display:none; }
  .top-bar-right { width:100%; justify-content:center; }
  .hero-layout { grid-template-columns:1fr; gap:2.5rem; text-align:center; }
  .hero-h1 { font-size:2rem; }
  .hero-cta-row { justify-content:center; }
  .hero-stats-row { justify-content:center; }
  .trust-badge { right:0; bottom:10px; }
  .features-strip-grid { grid-template-columns:repeat(2,1fr); }
  .feature-strip-item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); }
  .trust-stats-grid { grid-template-columns:repeat(2,1fr); }
  .nav-right-group .call-now-btn { display:none; }
  .hero-desc { max-width:100%; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size:1.65rem; }
  .features-strip-grid { grid-template-columns:1fr 1fr; }
  .trust-stats-grid { grid-template-columns:1fr 1fr; }
  .btn-hero-primary,.btn-hero-gold,.btn-hero-outline,.btn-hero-wa { font-size:0.82rem; padding:0.75rem 1.1rem; }
  .cta-conversion-section h2 { font-size:1.75rem; }
  .top-contact-bar { display:none; }
}

/* ═══════════════════════════════════════════════════════════
   5-COLUMN TRUST STATS GRID
════════════════════════════════════════════════════════════ */
.trust-stats-5 {
  grid-template-columns: repeat(5, 1fr) !important;
}
.trust-stats-5 .trust-stat-number sup {
  font-size: 1rem;
  font-weight: 900;
  vertical-align: super;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS CARD GRID (Category-Filtered)
════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.testimonial-card-enhanced {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.testimonial-card-enhanced::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 16px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.06;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card-enhanced:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,61,145,0.15);
}

/* Licensing tabs upgrade for 5 tabs */
.licensing-tabs {
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS FOR NEW COMPONENTS
════════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .trust-stats-5 { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
  .trust-stats-5 { grid-template-columns: repeat(2, 1fr) !important; }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .trust-stats-5 { grid-template-columns: 1fr 1fr !important; }
}

/* ═══════════════════════════════════════════════════════════
   RESOURCES DROPDOWN — WIDER FOR LICENSING LINKS
════════════════════════════════════════════════════════════ */
.has-dropdown:nth-last-child(5) .dropdown-menu {
  min-width: 260px;
  left: auto;
  right: 0;
  transform: none;
}
/* Resources dropdown specifically */
.nav-menu li.has-dropdown:has(#nav-downloads) .dropdown-menu {
  min-width: 265px;
}
/* Separator line between Downloads section and Licensing section */
.dropdown-menu li:nth-child(2):has(a[href*="trial"]) {
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.35rem;
  margin-bottom: 0.35rem;
}
