/* ========================================
   RESOURCES PAGE STYLES
   ======================================== */

/* Resources Main Layout */
.resources-main {
  position: relative;
  /*min-height: 100vh;*/
}

/* Hero Section */
.resources-hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Background Form Icon */
.background-form-icon {
  position: absolute;
  top: 72%;
  right: 90%;
  transform: translateY(-50%);
  opacity: 0.8 !important;
  animation: backgroundFormZoom 3s ease-in-out infinite;
  z-index: 2;
}
.pp-h2 { font-size: 1.35rem;
    text-align: left;
    margin-bottom: .75rem;}

@keyframes backgroundFormZoom {
  0%, 100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-50%) scale(1.1);
    opacity: 0.9;
  }
}

.background-form-icon svg {
  filter: drop-shadow(0 4px 20px rgba(225, 29, 72, 0.2));
  transition: all 0.3s ease;
}

.background-form-icon:hover {
  opacity: 0.8;
  transform: translateY(-50%) scale(1.1);
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { top: 40%; right: 15%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; right: 25%; animation-delay: 3s; }
.particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { top: 70%; left: 70%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.title-line {
  display: block;
}

.title-line.accent {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-search {
  margin-bottom: 48px;
}

.search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 16px 56px 16px 24px;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  outline: none;
  transition: all 0.3s ease;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: var(--primary-700);
  transform: translateY(-50%) scale(1.05);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}

/* Filter Section */
.resources-filter {
  padding: 40px 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 12px 24px;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: white;
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

/* Resources Section */
.resources-section {
  padding: 80px 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.resource-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}

.resource-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.resource-item:hover .resource-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  color: white;
  transform: scale(1.05);
}

.resource-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: auto;
  color: var(--text);
  transition: color 0.3s ease;
}

.resource-item:hover h3 {
  color: var(--primary);
}

/* Learning & Support Section */
.learning-support {
  padding: 60px 0;
  background: linear-gradient(145deg, #fff1f1a1, #ffdede9c);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin: auto;
  max-width: 800px;
}

.learning-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.learning-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-thumbnail {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.learning-card:hover .thumbnail-overlay {
  opacity: 1;
}

.play-button {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
}

.duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.thumbnail-placeholder {
  color: var(--primary);
  opacity: 0.6;
}

.learning-card .card-content {
  padding: 32px;
  text-align: center;
}

.card-category {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.learning-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.learning-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.meta-item svg {
  width: 16px;
  height: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .filter-tabs {
    gap: 4px;
  }
  
  .filter-tab {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .resource-item {
    padding: 12px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  
  .resource-icon {
    width: 36px;
    height: 36px;
  }
  
  .resource-item h3 {
    font-size: 0.9rem;
    line-height: 1.3;
    margin: 0;
  }
  
  .learning-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .learning-card .card-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .inner-hero {
    padding: 60px 0 40px;
  }
  
  .inner-hero h1 {
    font-size: 1.9rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .hero-subtitle {
    font-size: 1.15rem !important;
    line-height: 1.2 !important;
  }
  
  .resources-section {
    padding: 1.5rem 0;
  }
  
  .search-input {
    padding: 12px 48px 12px 20px;
    font-size: 14px;
  }
  
  .search-btn {
    width: 36px;
    height: 36px;
  }
  
  .card-icon {
    width: 48px;
    height: 48px;
  }
  
  .resource-card {
    padding: 20px;
  }
}

/* ========================================
   CSS CUSTOM PROPERTIES & THEME SYSTEM
   ======================================== */
:root {
  /* Color System */
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --bg-dark: #111827;
  --text: #0b1020;
  --text-light: #ffffff;
  --muted: #475569;
  --muted-light: #94a3b8;
  --primary: #e11d48; /* red-600 */
  --primary-50: #fef2f2;
  --primary-100: #fee2e2;
  --primary-200: #fecaca;
  --primary-300: #fca5a5;
  --primary-400: #f87171;
  --primary-500: #ef4444;
  --primary-600: #e11d48;
  --primary-700: #b91c1c;
  --primary-800: #991b1b;
  --primary-900: #7f1d1d;
  --grey: #efefef;
  --grey-50: #e1e1e1;
  --grey-100: #cbcbcb;
  --grey-200: #b6b6b6;
  --grey-300: #a3a3a3;
  --grey-400: #929292;
  --grey-500: #7f7f7f;
  --grey-600: #656565;
  --grey-700: #4f4f4f;
  --grey-800: #404040;
  --grey-900: #323232;
  --card: #ffffff;
  --card-dark: #1f2937;
  --border: #e5e7eb;
  --border-dark: #374151;
  --success: #16a34a;
  --success-light: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --info: #3b82f6;
  

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #ffffff !important;
    --bg-alt: #f8fafc !important;
    --text: #0b1020 !important;
    --muted: #475569 !important;
    --card: #ffffff !important;
    --border: #e5e7eb !important;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  :root {
    --transition-fast: 0ms;
    --transition-normal: 0ms;
    --transition-slow: 0ms;
  }
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 
               "Segoe UI", Roboto, "Noto Sans", Ubuntu, Cantarell, 
               "Helvetica Neue", sans-serif, "Apple Color Emoji", 
               "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: var(--text);
  /*background: radial-gradient(1200px 3600px at 20% -10%, #e11d4811, transparent),
              radial-gradient(1200px 3600px at 90% 0%, #b91c1c0e, transparent),
              var(--bg);*/
  background-image: radial-gradient(#ffffff 10%,  #ff86720f 70%); background-repeat:repeat; background-size: 2000px 1400px;			  
  line-height: 1.65;
  font-size: var(--text-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.text-center { text-align:center !important;}
.text-left { text-align:left;}
.text-right { text-align:right;}

.margin-top-0 { margin-top: 0rem !important;}
.margin-top-50 { margin-top: 0.5rem !important;}
.margin-top-100 { margin-top: 1.0rem !important;}
.margin-top-150 { margin-top: 1.5rem !important;}
.margin-top-200 { margin-top: 2.0rem !important;}
.margin-top-250 { margin-top: 2.5rem !important;}
.margin-top-300 { margin-top: 3.0rem !important;}
.margin-top-350 { margin-top: 3.5rem !important;}
.margin-top-400 { margin-top: 4.0rem !important;}
.margin-top-500 { margin-top: 5.0rem !important;}

.margin-bottom-0 { margin-bottom: 0rem !important;}
.margin-bottom-50 { margin-bottom: 0.5rem !important;}
.margin-bottom-100 { margin-bottom: 1.0rem !important;}
.margin-bottom-150 { margin-bottom: 1.5rem !important;}
.margin-bottom-180 { margin-bottom: 1.8rem !important;}
.margin-bottom-200 { margin-bottom: 2.0rem !important;}
.margin-bottom-250 { margin-bottom: 2.5rem !important;}
.margin-bottom-300 { margin-bottom: 3.0rem !important;}
.margin-bottom-350 { margin-bottom: 3.5rem !important;}
.margin-bottom-400 { margin-bottom: 4.0rem !important;}
.margin-bottom-500 { margin-bottom: 5.0rem !important;}

.padding-top-0 { padding-top: 0rem !important;}

.padding-bottom-0 { padding-bottom: 0rem !important;}
.padding-bottom-50 { padding-bottom: 0.5rem !important;}
.padding-bottom-250 { padding-bottom: 2.5rem !important;}

.d-color { color:#e11d48 !important;}
.c-color { color:#076ec3 !important;}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: var(--space-4);
  background: var(--primary);
  color: var(--text-light);
  padding: var(--space-2) var(--space-3);
  text-decoration: none;
  border-radius: var(--radius-md);
  z-index: var(--z-tooltip);
  font-weight: 600;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-4);
}
/* Screen reader only content */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Media elements */
img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove default button styles */
button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* Remove default list styles */
ul, ol {
  /*list-style: none;*/
  /*margin: 0;*/
  padding: 0;
  margin-left: 18px;
}

/* Remove default link styles */
a {
  color: inherit;
  text-decoration: none;
}

/* ========================================
   TYPOGRAPHY SYSTEM
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-4);
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  color: var(--text);
}

h1 { 
  font-size: var(--text-6xl);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h2 { 
  font-size: 3rem;
  letter-spacing: -0.01em;
}

h3 { 
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: 2.5rem;
}

h4 { 
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: 2rem;
}

h5 { 
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

h6 { 
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

p {
  margin: 0 0 var(--space-4);
  line-height: 1.7;
  color: var(--text);
}

small {
  font-size: var(--text-sm);
  color: var(--muted-light);
}

.sub {
  color: var(--muted);
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 2.5rem;
}

.lead {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--muted);
}

/* ========================================
   LAYOUT SYSTEM
   ======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--space-5);
  margin: 0 auto;
}

.container-sm {
  max-width: 1000px;
}

.container-lg {
  max-width: 1200px;
}

.visible-lg, .visible-md, .visible-sm, .visible-xs {
    display: none !important;
}
@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }
	.hidden-xs{display:none!important}
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-cols-1 { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /*border-bottom: 1px solid var(--border);*/
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: var(--space-4) 0;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: var(--text-xl);
  transition: color var(--transition-fast);
}

.brand:hover {
  color: var(--primary);
}

.brand.logo {
  display: inline-flex;
  align-items: center;
}

.brand.logo img {
  width: 220px;
  height: auto;
  display: block;
  transition: transform var(--transition-fast);
}

.brand.logo:hover img {
  transform: scale(1.02);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.nav-toggle:hover {
  background: var(--bg-alt);
  border-color: var(--primary);
}

.nav-menu {
  display: flex;
  gap: var(--space-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: var(--text-lg);
  font-weight: 500;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-menu a:hover {
  color: var(--text);
  background: var(--bg-alt);
}

.nav-menu a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ========================================
   BUTTON SYSTEM
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  background: var(--card);
  font-weight: 600;
  font-size: var(--text-sm);
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  border-color: var(--primary-300);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Button Variants */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  border-color: var(--primary-700);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-800));
  border-color: var(--primary-800);
  color: white;
  box-shadow: var(--shadow-lg);
}



.btn-ghost {
  background: linear-gradient(135deg, #64a1f7, #0654c1);
  border-color: #2970d3;
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  background: linear-gradient(135deg, #548ddd, #0348a9);
  border-color: #246dd2;
  color: white;
  box-shadow: var(--shadow-lg);
}

/* Hero Watch Demo Button */
.hero-ctas .btn-ghost {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-color: #cbd5e1;
  color: #475569;
}

.hero-ctas .btn-ghost:hover {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  border-color: #94a3b8;
  color: #334155;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.slash {
  margin: 0 0.1em 0 0;  /* adjust spacing as needed */
}

/* Hero Button Sizes */
.hero-ctas .btn {
  padding: 0.75rem 2.5rem;
  font-size: var(--text-2xl);
  font-weight: 700;
}

/* Header Get Started Button */
.header .btn-primary {
  color: white !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-700)) !important;
}

.header .btn-primary:hover {
  color: white !important;
  background: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn-xl {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

/* Button Modifiers */
.btn-block {
  width: 100%;
}

.btn-arrow .arrow {
  transition: transform var(--transition-fast);
}

.btn-arrow:hover .arrow {
  transform: translateX(4px);
}

.btn-elevated {
  box-shadow: var(--shadow-lg);
}

.btn-elevated:hover {
  box-shadow: var(--shadow-xl);
}

/* Hero */
.hero { 
  padding: 50px 0 18px; 
  /*border-bottom: 1px solid var(--border);*/
  position: relative;
  overflow: hidden;
}

/* Hero Background Elements */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

/* Graph Paper Background */
.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 
    20px 20px,
    20px 20px,
    4px 4px,
    4px 4px;
  background-position: 
    0 0,
    0 0,
    0 0,
    0 0;
  opacity: 0.3;
  z-index: 0;
}



/* Floating Charts */
.floating-charts {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.chart-element {
  position: absolute;
  background: transparent;
  border: none;
  border-radius: 12px;
  padding: 16px;
  box-shadow: none;
  backdrop-filter: none;
  animation: floatChart 25s infinite linear;
  opacity: 0.6;
}

.chart-1 {
  top: 20%;
  right: 8%;
  width: 80px;
  height: 60px;
  animation-delay: -5s;
}

.chart-2 {
  top: 78%;
  right: 20%;
  width: 60px;
  height: 60px;
  animation-delay: -12s;
}

.chart-bar {
  background: linear-gradient(180deg, var(--primary), var(--primary-700));
  width: 12px;
  margin: 0 2px;
  border-radius: 2px;
  display: inline-block;
  animation: pulseBar 3s infinite ease-in-out;
}

.chart-bar:nth-child(1) { animation-delay: 0s; }
.chart-bar:nth-child(2) { animation-delay: 0.5s; }
.chart-bar:nth-child(3) { animation-delay: 1s; }
.chart-bar:nth-child(4) { animation-delay: 1.5s; }

.pie-chart {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(
    var(--primary) 0deg 120deg,
    var(--primary-300) 120deg 240deg,
    var(--primary-100) 240deg 360deg
  );
  animation: rotatePie 8s infinite linear;
}

/* Floating Icons */
.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* Rupee Bag Icon */
.rupee-bag-icon {
  position: absolute;
  width: 55px;
  height: 55px;
  color: var(--primary);
  opacity: 0.3;
  animation: floatIcon 10s infinite linear;
  background: transparent;
  border-radius: 12px;
  padding: 8px;
  border: none;
  backdrop-filter: none;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.rupee-bag-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary);
  fill: none;
}

.software-icon {
  position: absolute;
  width: 36px;
  height: 36px;
  color: var(--primary);
  opacity: 0.6;
  animation: floatIcon 30s infinite linear;
  background: transparent;
  border-radius: 8px;
  padding: 6px;
  border: none;
  backdrop-filter: none;
}

.software-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--primary);
  fill: none;
}

.software-icon:nth-child(2) {
  top: 10%;
  left: 20%;
  animation-delay: -5s;
}

.software-icon:nth-child(3) {
  top: 46%;
  right: 25%;
  animation-delay: -10s;
}

.software-icon:nth-child(4) {
  top: 50%;
  left: 15%;
  animation-delay: -15s;
}

.software-icon:nth-child(5) {
  top: 70%;
  right: 10%;
  animation-delay: -20s;
}

.software-icon:nth-child(6) {
  top: 40%;
  left: 80%;
  animation-delay: -25s;
}

.software-icon:nth-child(7) {
  top: 92%;
  left: 68%;
  animation-delay: -30s;
}

/* Floating Dots */
.floating-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.6;
  animation: floatDot 35s infinite linear;
}

.dot-1 {
  top: 15%;
  left: 30%;
  animation-delay: 0s;
}

.dot-2 {
  top: 56%;
  right: 30%;
  animation-delay: -6s;
}

.dot-3 {
  top: 55%;
  left: 25%;
  animation-delay: -12s;
}

.dot-4 {
  top: 87%;
  right: 71%;
  animation-delay: -18s;
}

.dot-5 {
  top: 25%;
  left: 70%;
  animation-delay: -24s;
}

.dot-6 {
  top: 65%;
  left: 85%;
  animation-delay: -30s;
}

/* Animations */
@keyframes floatChart {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  33% {
    transform: translateY(-15px) scale(1.05);
    opacity: 0.8;
  }
  66% {
    transform: translateY(-8px) scale(0.95);
    opacity: 0.7;
  }
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.4;
  }
  20% {
    transform: translateY(-25px) rotate(5deg);
    opacity: 0.7;
  }
  40% {
    transform: translateY(-15px) rotate(-3deg);
    opacity: 0.6;
  }
  60% {
    transform: translateY(-20px) rotate(2deg);
    opacity: 0.8;
  }
  80% {
    transform: translateY(-10px) rotate(-1deg);
    opacity: 0.5;
  }
}

@keyframes floatDot {
  0%, 100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-25px) scale(1.1);
    opacity: 0.5;
  }
}

@keyframes pulseBar {
  0%, 100% {
    transform: scaleY(1);
    opacity: 0.8;
  }
  50% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}

@keyframes rotatePie {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Hero Fade-in Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}
.hero-fade-in-delay-1 {
  animation-delay: 0.2s;
}

.hero-fade-in-delay-2 {
  animation-delay: 0.4s;
}

.hero-fade-in-delay-3 {
  animation-delay: 0.6s;
}

/* Scroll-triggered Fade-in Animations */
@keyframes fadeInUpScroll {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.scroll-fade-in.animate {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUpScroll 0.8s ease-out forwards;
}
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; justify-items: center; position: relative; z-index: 10; }
.hero-copy { text-align: center; max-width: 900px; margin: 0 auto; }
.hero-ctas { justify-content: center; }
.hero-badge { display: inline-block; background: #f9dfe2; border: 1px solid #fca5a5; color: #7f1d1d; padding: 10px 16px; border-radius: 999px; font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.hero h1 { font-size: 4.75rem; line-height: 1; margin: 0 0 12px; padding-bottom: 0; }
.hero h1 .highlight { color: var(--primary); text-decoration: none; }
.hero-divider { display: none; }
.hero h1 .highlight { position: relative; display: inline-block; }
.hero h1 .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 4px;
  background: var(--primary);
  border-radius: 999px;
}
.hero p { color: var(--muted); margin: 50px 0 25px; }
.hero-copy > p:first-of-type { font-size: 1.5rem; line-height: 1.75rem; }
/* manual line-break in markup now controls wrapping */
.hero-ctas { display: flex; gap: 12px; margin: 0 0 14px; }
/* make primary CTAs visually wider */
.hero-ctas .btn-lg { min-width: 220px; }
.hero-bullets { margin: 0; padding: 0; list-style: none; color: var(--muted); display: grid; gap: 6px; }
.hero-art { display: grid; place-items: center; }
.dashboard-card { width: 100%; max-width: 420px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 16px; box-shadow: 0 10px 30px #0000001a; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.stat-label { color: #8b8b8b !important; font-size: 15px !important; }
.stat-value { font-weight: 700; font-size: 18px; }
.chart { height: 160px; background: linear-gradient(180deg, #fff1f2, transparent); border: 1px dashed #fecdd3; border-radius: 10px; }

/* Sections */
.section { padding: 50px 0; }
.section-alt { /*background: #FFF;*/ /*border-bottom: 1px solid var(--border);*/ }

/* Features section header like reference */
.features-section { /*background: var(--bg);*/ padding: 1rem 0 4rem 0; }

.feature-stats {
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--primary-200);
}

.section-head { text-align: center; max-width: 900px; margin: 0 auto 14px; }
.section-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: #fff1f2; border: 1px solid #fecdd3; color: #7f1d1d; font-weight: 600; margin-bottom: 12px; }
.section-badge .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 999px; display: inline-block; }
.section-head h2 { font-size: 3rem; line-height: 1.1; }
.section-head .accent { color: var(--primary); }
.section-head .lead { max-width: 800px; margin: 8px auto 4px; font-size: 18px; line-height: 1.7; }

.grid { display: grid; gap: 16px; }
.features-grid { grid-template-columns: repeat(3, 1fr); }
.features-bt-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.contact-card { 
  background: var(--card); 
  border: 1px solid var(--border); 
  border-radius: 16px; 
  padding: 30px; 
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-300);
}
.contact-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-200);
}
.contact-info {
  color: var(--text);
  line-height: 1.7;
}
.contact-info p {
  margin: 12px 0;
  font-size: 15px;
}
.contact-info strong {
  color: var(--text);
  font-weight: 600;
}
.contact-details {
  margin-top: 16px;
  /*padding-top: 16px;*/
  /*border-top: 1px solid var(--border);*/
}
.contact-details p {
  margin: 8px 0;
}
.contact-info a {
  color: #000;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.contact-info a:hover {
  text-decoration: underline;
}

.contact-card-wide {
  grid-column: span 2;
}

.map-wrapper {
  width: 100%;
  height: 350px;
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Download Center Styles */
.download-section {
  padding: 40px 0 80px;
  position: relative;
  z-index: 10;
  background: transparent;
}

.download-section .container {
  position: relative;
  z-index: 10;
}

.download-category {
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.download-category h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text, #0b1020);
  margin-bottom: 8px;
  padding-bottom: 2px;
  position: relative;
  z-index: 10;
}

.download-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border, #e5e7eb);
  background: var(--card, #ffffff);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
}

.download-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card, #ffffff);
}

.download-table thead {
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
}

.download-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  color: var(--text, #0b1020);
  font-size: 15px;
  border-bottom: 2px solid var(--primary-200, #fecdd3);
}

.download-table td {
  padding:12px 20px;
  border-bottom: 1px solid var(--border, #e5e7eb);
  color: var(--text, #0b1020);
  font-size: 16px;
  vertical-align: top;
}

.download-table tbody tr:hover {
  background: var(--bg-alt);
}

.download-table tbody tr:last-child td {
  border-bottom: none;
}

.forms-table td:first-child {
  white-space: nowrap;
}

.download-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all var(--transition-fast);
  display: inline-block;
}

.download-link:hover {
  background: var(--primary-50);
  color: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .download-category h2 {
    font-size: 1.35rem !important;
  }
  
  .download-table th,
  .download-table td {
    padding: 10px 8px;
    font-size: 12px;
  }
  
  .download-table-wrapper {
    border-radius: 8px;
  }
}

@media (max-width: 960px) {
  .contact-card-wide {
    grid-column: span 1;
  }
  
  .map-wrapper {
    height: 400px;
  }
}
.price { text-align: left; }
.price-amount { font-size: 28px; font-weight: 800; margin: 8px 0 10px; }
.price-amount span { color: var(--muted); font-size: 14px; font-weight: 500; }
.price ul { margin: 0 0 16px; padding-left: 18px; color: var(--muted); }
.price.highlighted { border-color: #2c63c6; box-shadow: 0 8px 32px #1a73e84d; }

.compliance { display: grid; grid-template-columns: 1.4fr 1fr; gap: 24px; align-items: start; }
.checklist { margin: 0; padding-left: 18px; }
.notice { background: #fff1f2; border: 1px solid #fecdd3; padding: 14px; border-radius: 10px; color: #7f1d1d; }

/* Accordion */
.accordion { 
  display: grid; 
  gap: 12px; 
}

.accordion-container {
  background: #ffffff; 
  border: 1px solid var(--border); 
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.accordion-container:has(.accordion-item[aria-expanded="true"]) {
  border: 1px solid #ff003830;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  background: #fff6f6;
}

.accordion-item { 
  width: 100%; 
  text-align: left; 
  background: transparent; 
  border: none; 
  color: var(--text); 
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.accordion-item:hover {
  background: #fef2f2;
}

.accordion-item[aria-expanded="true"] {
  background: transparent;
}

.chev {
  transition: transform 0.3s ease;
  font-size: 20px;
  color: var(--muted);
}

.accordion-item[aria-expanded="true"] .chev {
  transform: rotate(180deg);
  color: var(--primary);
}

.accordion-panel { 
  display: none; 
  padding: 0 16px 16px 16px; 
  color: var(--muted); 
  background: transparent;
  border: none;
  margin: 0;
  line-height: 1.7;
  font-size: 15px;
}

.accordion-panel.open { 
  display: block;
  animation: slideDown 0.3s ease-out;
}

.accordion-panel p {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #cdc9c9;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}
.join { margin-bottom: .5rem !important; color: #121212; font-size: var(--text-2xl); font-weight: 600;}
.join-iso { color: #707070; margin: 0 0 !important;}

/* ========================================
   FORM SYSTEM
   ======================================== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
}

.contact-info h3 {
  text-align: left;
  margin-bottom: var(--space-6);
  color: var(--text);
}

.contact-details {
  margin-top: var(--space-2);
}

.contact-item {
  /*margin-bottom: var(--space-3);*/
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.contact-item strong {
  color: var(--text);
  font-weight: 600;
  min-width: 60px;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-item a:hover {
  color: var(--primary-700);
  text-decoration: underline;
}

.form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

.form h3 {
  text-align: left;
  margin-bottom: var(--space-6);
  color: var(--text);
}

.form .field {
  display: grid;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form label {
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.form input,
.form textarea {
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--text);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
  width: 100%;
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.form input[aria-invalid="true"],
.form textarea[aria-invalid="true"] {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form .err {
  color: var(--error);
  font-size: var(--text-xs);
  min-height: var(--space-4);
  margin-top: var(--space-1);
}

.fine {
  color: var(--muted);
  font-size: var(--text-xs);
  margin-top: var(--space-2);
}

.form button[type="submit"] {
  margin-top: var(--space-4);
}

.form button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form button[type="submit"]:disabled:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  border-top: 1px solid var(--border-dark);
  background: var(--bg-dark);
  color: var(--muted-light);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  align-items: start;
  padding: var(--space-12) 0;
}

.foot-col {
  display: grid;
  gap: var(--space-4);
  color: var(--muted-light);
}

.foot-brand {
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: var(--space-2);
}

.foot-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.foot-head {
  color: var(--text-light);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}

.foot-col a {
  color: var(--muted-light);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.foot-col a:hover {
  color: var(--text-light);
}

.foot-tag {
  color: var(--muted-light);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.foot-certifications {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: 0;
}

.cert-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.cert-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.cert-text {
  display: flex;
  align-items: center;
  color: white;
  font-size: var(--text-sm);
}

.cert-image {
  max-width: 150px;
  height: auto;
  opacity: 0.9;
  transition: opacity var(--transition-fast);
}

.cert-image:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--muted-light);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.foot-bottom {
  border-top: 1px solid var(--border-dark);
  padding: var(--space-6) 0 var(--space-8);
  color: var(--muted-light);
  font-size: var(--text-sm);
}

.foot-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.foot-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.foot-links a {
  color: var(--muted-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.foot-links a:hover {
  color: var(--text-light);
}

.foot-links .separator {
  color: var(--border-dark);
}

/* Brands */
.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-image: linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px), linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);*/
    background-size: 20px 20px, 20px 20px, 4px 4px, 4px 4px;
    background-position: 0 2px, 0 0, 0 0, 0 0;
    opacity: 0.3;
    z-index: 0;
}
.brands { background:linear-gradient(135deg, #fef2f2c7 0%, #fee2e2c9 100%); padding: 15px 0; border-bottom:1px solid #ffd3d3; margin-bottom:30px; }
.brands-title { color: var(--text); margin-bottom: .35rem; font-size: 24px; font-weight: 500; letter-spacing: -0.01em; text-align: center; }
.brands-row { display: grid; grid-template-columns: repeat(8, minmax(0, 1fr)); gap: 20px; align-items: center; }
.brand-logo { 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  height: 80px; 
  background: transparent; 
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background:#FFF;
  border-radius:10px;
}
.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: filter 0.2s ease;
}
.brand-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* GeM Section */
.gem-section {
  margin-bottom: 25px;
}

.gem-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.gem-content:hover {
  text-decoration: underline;
}

.gem-content:focus {
  outline: 2px solid var(--primary, #e11d48);
  outline-offset: 2px;
  border-radius: 4px;
}

.gem-text {
  color: #626262;
  font-size: 24px;
  font-weight: 400;
  font-family: 'Poppins', 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

.gem-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gem-logo {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

/* Deployments */
#pricing .sub {
  text-align: center;
}

.deployments-grid { grid-template-columns: 1fr 1fr; align-items: stretch; gap: 32px; }
.deploy { 
  position: relative; 
  border-radius: 16px; 
  padding: 24px 32px; 
  box-shadow: 0 8px 32px #2222221f; 
  text-align: left; 
  border: 1px solid var(--border); 
  background: #ffffff;
  transition: all var(--transition-normal);
  overflow: hidden;
}
.deploy .flag { 
  position: absolute; 
  top: 0; 
  right: 0; 
  display: inline-block; 
  background: var(--primary); 
  color: #ffffff; 
  padding: 8px 12px; 
  border-radius: 0 16px 0 16px; 
  font-size: 12px; 
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3); 
  border: 0;
  z-index: 2;
}
.deploy .icon-badge { 
  width: 72px; 
  height: 72px; 
  border-radius: 18px; 
  background: linear-gradient(145deg, var(--primary-200), #ffffff); 
  display: grid; 
  place-items: center; 
  margin-bottom: 28px; 
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.15),
    -3px -3px 6px rgba(255, 255, 255, 0.8);
  border: 0px solid rgba(231, 231, 231, 0.2);
  transform: perspective(1000px) rotateX(5deg);
  transition: all 0.3s ease;
}

.deploy .icon-badge:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-3px);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.2),
    -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.deploy .icon-badge svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary);
  fill: none;
}

/* On-Premise Software specific styling */
.deploy:not(.highlighted) .icon-badge {
  background: linear-gradient(135deg, #d4e3ff, #ffffff);
}

.deploy:not(.highlighted) .icon-badge svg {
  stroke: #076ec3;
}
.deploy h3 { text-align: left; font-size: 28px; }
.deploy p { color: var(--muted); }
.deploy ul { margin: 16px 0; padding-left: 0; list-style: none; display: grid; gap: 14px; }
.deploy ul li { position: relative; padding-left: 34px; display: grid; }
.deploy ul li::before { content: "✔"; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; border-radius: 999px; background: #e8f7ee; color: var(--success); display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.deploy .li-title { font-weight: 700; color: var(--text); }
.deploy .li-sub { color: var(--muted); font-size: 14px; margin-top: -2px; }
.deploy .divider { border: 0; border-top: 1px solid var(--border); margin: 16px 0; }
.deploy-best { color: var(--muted); font-size: 14px; margin-top: 10px; }
.deploy.highlighted { border-color: var(--border); box-shadow: 0 8px 32px #2222221f; }

.deploy:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(21, 21, 21, 0.25);
  border-color: #5195f7;
}

.deploy.highlighted:hover {
  box-shadow: 0 12px 40px rgba(21, 21, 21, 0.25); border-color: var(--primary-400);
}

.deploy .btn { margin-top: 14px; }

/* Icon badges before card titles to resemble reference */
.deploy h3 { display: block; margin-bottom:1rem; }
.btn-arrow .arrow { transition: transform .15s ease; }
.btn-arrow:hover .arrow { transform: translateX(4px); }
.center { text-align: center; margin-top: 16px; }

/* Consultation callout - match reference */
.consult-callout { margin-top: 40px; padding: 36px 20px; background: linear-gradient(145deg, #ffffff, #f9dddd9c); border: 1px solid #f9e4e6; box-shadow: 0 8px 32px #2222221f; border-radius: 18px; text-align: center; }
.consult-callout h3 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 8px; text-align: center; }
.consult-callout .sub { max-width: 920px; margin: 0 auto 2.5rem; color: #334155; }
.btn-elevated { box-shadow: var(--shadow-sm); border: none; }

/* Integration */
.integration-panel { background: radial-gradient(800px 400px at 80% 20%, #95787845, #2e0f058c), #35324a; color: #e5e7eb; padding: 38px 20px 40px; border-radius: 24px; border: 1px solid #1f2937; box-shadow: inset 0 0 0 1px #11182740; text-align: center; }
.integration-panel h2 { color: #ffffff; font-size: 40px; }
.integration-panel .accent { color: #ff4565; }
.integration-sub { color: #d6d5df; max-width: 900px; margin: 6px auto 36px; }
.integration-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.integration-item { 
  display: grid; 
  grid-template-columns: 1fr; 
  grid-template-rows: auto auto; 
  gap: 25px; 
  align-items: start; 
  justify-items: center; 
  text-align: center;
  perspective: 1000px;
}

.integration-item h4 { 
  margin: 0; 
  color: #ffffff; 
  font-weight: 700;
}

.integration-item p { 
  margin: 0.35rem 0; 
  color: #d6d5df; 
}

.int-icon { 
  width: 72px; 
  height: 72px; 
  border-radius: 18px; 
  display: grid; 
  place-items: center; 
  background: linear-gradient(145deg, #ffcaca 0%, #fca5a5 100%); 
  font-size: 22px; 
  box-shadow: 
    0 12px 28px rgba(0, 0, 0, 0.4),
    0 6px 14px rgba(0, 0, 0, 0.3),
    inset 3px 3px 6px rgba(255, 255, 255, 0.4),
    inset -3px -3px 6px rgba(220, 38, 38, 0.2);
  border: 2px solid #fecaca;
  transform: perspective(800px) rotateX(10deg) rotateY(-5deg);
  transform-style: preserve-3d;
  transition: all 0.4s ease;
  position: relative;
}

.int-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
  border-radius: 18px;
  pointer-events: none;
}

.int-icon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 10%;
  right: 10%;
  height: 8px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.integration-item:hover .int-icon {
  transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateY(-8px) translateZ(20px);
  box-shadow: 
    0 18px 40px rgba(0, 0, 0, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.35),
    inset 4px 4px 8px rgba(255, 255, 255, 0.5),
    inset -4px -4px 8px rgba(220, 38, 38, 0.25);
}

.integration-item:hover .int-icon::after {
  opacity: 0.8;
  transform: scale(1.2);
}

/* Feature card (image 4) */
.feature-card .feature-inner { border-radius: 20px; padding: 24px; background: linear-gradient(180deg, #ffffff, #fff7f7); border: 1px solid #ffe0e5; box-shadow: 0 12px 30px rgba(21, 21, 21, 0.15); }
.feature-row { display: grid; grid-template-columns: 1.2fr 1fr; gap: 20px; align-items: center; }
.feature-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: #fff1f2; border: 1px solid #fecdd3; color: #7f1d1d; font-weight: 600; margin-bottom: 10px; }
.feature-badge .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 999px; display: inline-block; }
.feature-heading { display: flex; gap: 10px; margin-bottom: 14px; flex-direction: column; text-align: left; }
.feature-heading svg { width: 48px; height: 48px; color: var(--primary); }
.feature-heading h3 { margin: 0; font-size: 1.2rem; font-weight: 700; color: var(--secondary-900); text-align: left; }
.feature-copy h3 { text-align: left; font-size: 40px; margin-bottom: 10px; }
.feature-copy .lead { color: #334155; margin-bottom: 20px; }
.feature-actions { margin-top: 18px; display: flex; justify-content: center; }
.feature-actions .btn { display: inline-flex; align-items: center; gap: 6px; padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  margin: 12px 0 10px 0; }
.fbtlw { text-align:center; font-weight:300;}
.feature-actions .btn-desktop { background: #e11d48; border-color: #e11d48; color: #fff; }
.feature-actions .btn-desktop:hover { background: #be123c; border-color: #be123c; color: #fff; }
.feature-actions .btn-cloud { background: #2563eb; border-color: #2563eb; color: #fff; }
.feature-actions .btn-cloud:hover { background: #1d4ed8; border-color: #1d4ed8; color: #fff; }
.checklist2 { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 12px; }
.checklist2 li { position: relative; padding-left: 32px; }
.checklist2 li::before { content: "✔"; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 999px; background: #e8f7ee; color: var(--success); display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.checklist2 .title { font-weight: 700; color: var(--text); }
.checklist2 .sub { display: block; color: var(--muted); font-size: 14px; margin-bottom: 1rem; }

.checklist3 { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 12px; }
.checklist3 li { position: relative; padding-left: 32px; font-size: 15px; }
.checklist3 li::before { content: "✔"; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 999px; background: #e8f7ee; color: var(--success); display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.checklist3 .title { font-weight: 700; color: var(--text); }
.checklist3 .sub { display: block; color: var(--muted); font-size: 14px; margin-bottom: 1rem; }

/* TDS Rate Chart Styles */
.tds-rate-chart-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.rate-chart-year {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-normal);
}

.rate-chart-year:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-300);
}

.rate-chart-year h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  padding-bottom: 0;
}

.rate-chart-year h2 a {
  color: var(--text);
  text-decoration: none;
  display: block;
  transition: color var(--transition-normal);
}

.rate-chart-year h2 a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Center the last two boxes in the final row */
.rate-chart-year:nth-last-child(2) {
  grid-column: 2;
}

.rate-chart-year:last-child {
  grid-column: 3;
}

.rate-chart-placeholder {
  padding: 2rem;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  text-align: center;
  color: var(--muted);
  font-size: var(--text-base);
}

.feature-visual { 
  display: grid; 
  place-items: center; 
}

.validation-dashboard {
  width: 100%;
  max-width: 440px;
  animation: slideInRight 0.6s ease-out;
  perspective: 1200px;
}

.validation-card {
  background: linear-gradient(145deg, #ffe4df 0%, #ffffff 100%);
  border-radius: 18px;
  padding: 15px 18px;
  box-shadow: 
    0 15px 30px rgba(0, 0, 0, 0.25),
    0 15px 30px rgba(0, 0, 0, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.8),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1);
  border: 18px solid #4a3e4d;
  border-left-width: 22px;
  border-bottom-width: 22px;
  position: relative;
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform 0.4s ease;
}

.validation-card:hover {
  transform: rotateY(-5deg) rotateX(2deg) translateY(-5px);
}

.validation-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  animation: rotateGradient 15s linear infinite;
}
.validation-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 13px;
  border-radius: 12px;
  margin-bottom: 7px;
  background: white;
  position: relative;
  transition: all 0.3s ease;
  /*box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.05),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);*/
  border: 1px solid rgba(0, 0, 0, 0.15);
  z-index: 1;
  transform: translateZ(10px);
}

.validation-item:hover {
  transform: translateX(4px) translateZ(15px);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

.validation-item:last-of-type {
  margin-bottom: 7px;
}

.item-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  box-shadow: 
    0 6px 14px rgba(0, 0, 0, 0.2),
    0 3px 6px rgba(0, 0, 0, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  transform: translateZ(20px);
}

.blue-icon {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 100%);
  animation: pulseBlue 2s ease-in-out infinite;
  box-shadow: 
    0 8px 18px rgba(59, 130, 246, 0.5),
    0 4px 10px rgba(59, 130, 246, 0.3),
    0 0 20px rgba(59, 130, 246, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(37, 99, 235, 0.3);
}

.blue-icon svg path {
  fill: white;
}

.green-icon {
  background: linear-gradient(135deg, #4ade80 0%, #16a34a 100%);
  animation: successPulse 2s ease-in-out;
  box-shadow: 
    0 8px 18px rgba(34, 197, 94, 0.5),
    0 4px 10px rgba(34, 197, 94, 0.3),
    0 0 20px rgba(34, 197, 94, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(22, 163, 74, 0.3);
}

.red-icon {
  background: linear-gradient(135deg, #f87171 0%, #dc2626 100%);
  animation: shake 0.5s ease-in-out infinite, glowRed 1.5s ease-in-out infinite;
  box-shadow: 
    0 8px 18px rgba(239, 68, 68, 0.5),
    0 4px 10px rgba(239, 68, 68, 0.3),
    0 0 20px rgba(239, 68, 68, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(220, 38, 38, 0.3);
}

.item-content {
  flex: 1;
}

.item-label {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.item-value {
  font-size: 13px;
  font-weight: 700;
}

.green-text {
  color: #16a34a;
  /*text-shadow: 0 1px 2px rgba(34, 197, 94, 0.2);*/
}

.red-text {
  color: #dc2626;
  /*text-shadow: 0 1px 2px rgba(239, 68, 68, 0.2);*/
  animation: textBlink 2s ease-in-out infinite;
}

.progress-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  animation: progressAnimation 2.5s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.blue-fill {
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #93c5fd 100%);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.blue-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 1.5s infinite;
}

.item-status {
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 13px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blue-status {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
  border: 1px solid #93c5fd;
  animation: statusPulse 2s ease-in-out infinite;
}

.pulse-dot {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulseDot 1.5s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
}

.summary-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 15px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  border-radius: 11px;
  border: 1px solid #d32323;
  box-shadow: 
    0 6px 16px rgba(173, 173, 173, 0.4),
    0 3px 8px rgba(209, 209, 209, 0.3),
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    inset 0 -2px 4px rgba(147, 147, 147, 0.4);
  position: relative;
  overflow: hidden;
  transform: translateZ(15px);
}

.summary-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: slideShine 3s infinite;
}

.summary-badge span {
  font-size: 14px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  /*text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);*/
  position: relative;
  z-index: 1;
}

.summary-badge svg {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseBlue {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 4px 12px rgba(59, 130, 246, 0.4),
      0 0 20px rgba(59, 130, 246, 0.2),
      0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 
      0 6px 16px rgba(59, 130, 246, 0.5),
      0 0 30px rgba(59, 130, 246, 0.3),
      0 0 0 12px rgba(59, 130, 246, 0);
  }
}

@keyframes successPulse {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(-3px) rotate(-3deg);
  }
  75% {
    transform: translateX(3px) rotate(3deg);
  }
}

@keyframes glowRed {
  0%, 100% {
    box-shadow: 
      0 4px 12px rgba(239, 68, 68, 0.4),
      0 0 20px rgba(239, 68, 68, 0.3);
  }
  50% {
    box-shadow: 
      0 6px 16px rgba(239, 68, 68, 0.6),
      0 0 30px rgba(239, 68, 68, 0.5);
  }
}

@keyframes progressAnimation {
  0% {
    width: 0%;
  }
  50% {
    width: 75%;
  }
  100% {
    width: 100%;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

@keyframes statusPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes textBlink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes pulseDot {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  50% {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@keyframes slideShine {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 200%;
  }
}
/* ========================================
   PRICING SUMMARY SECTION
   ======================================== */
.pricing-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: visible;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.cloud {
  border-color: var(--border);
    box-shadow: 0 8px 32px #2222221f;
}

.pricing-card.cloud:hover {
  box-shadow: 0 12px 40px rgba(21, 21, 21, 0.25);
  border-color: var(--primary-400);
}

.pricing-header {
  margin-bottom: var(--space-6);
  position: relative;
}

.pricing-header h3 {
  margin-bottom: .5rem;
}

.pricing-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  display: block;
}

.pricing-card h3 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.pricing-badge {
  position: absolute;
  top: -var(--space-4);
  right: -var(--space-4);
  background: var(--primary);
  color: var(--text-light);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-md);
}

.pricing-card .icon-badge { 
  width: 72px; 
  height: 72px; 
  border-radius: 18px; 
  background: linear-gradient(145deg, var(--primary-200), #ffffff); 
  display: grid; 
  place-items: center; 
  margin: 1rem auto 2.5rem; 
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.15),
    -3px -3px 6px rgba(255, 255, 255, 0.8);
  border: 0px solid rgba(231, 231, 231, 0.2);
  transform: perspective(1000px) rotateX(5deg);
  transition: all 0.3s ease;
}

.pricing-card .icon-badge:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-3px);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.2),
    -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.pricing-card .icon-badge svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary);
  fill: none;
}

.pricing-card:not(.cloud) .icon-badge {
  background: linear-gradient(135deg, #d4e3ff, #ffffff);
}

.pricing-card:not(.cloud) .icon-badge svg {
  stroke: #076ec3;
}

.feature-card .icon-badge { 
  width: 72px; 
  height: 72px; 
  border-radius: 18px; 
  background: linear-gradient(145deg, var(--primary-200), #ffffff); 
  display: grid; 
  place-items: center; 
  margin: 1rem auto 2.5rem; 
  box-shadow: 
    6px 6px 12px rgba(0, 0, 0, 0.15),
    -3px -3px 6px rgba(255, 255, 255, 0.8);
  border: 0px solid rgba(231, 231, 231, 0.2);
  transform: perspective(1000px) rotateX(5deg);
  transition: all 0.3s ease;
}

.feature-card .icon-badge:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-3px);
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.2),
    -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.feature-card .icon-badge svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary);
  fill: none;
}

.feature-card:not(.cloud) .icon-badge {
  background: linear-gradient(135deg, #d4e3ff, #ffffff);
}

.feature-card:not(.cloud) .icon-badge svg {
  stroke: #076ec3;
}

.pricing-amount {
  margin-bottom: var(--space-4);
}

.currency {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--muted);
  vertical-align: top;
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin: 0 var(--space-1);
}

.period {
  font-size: var(--text-base);
  color: var(--muted);
  font-weight: 500;
}

.pricing-description {
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.pricing-features {
  list-style: none;
  margin: 0 0 var(--space-8) 0;
  padding: 0;
  text-align: left;
}

.pricing-features li {
  padding: var(--space-2) 0;
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.pricing-features li::before {
  content: "✅";
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.pricing-card .btn {
  margin-top: .5rem;
}

/* ========================================
   CALL-TO-ACTION SECTION
   ======================================== */
.cta-card {
  background: linear-gradient(145deg, #ffffff, #f9dddd9c);
  border: 1px solid #fecdd3;
  box-shadow: 0 8px 32px #2222221f;
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-10);
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  background: radial-gradient(circle, rgba(225, 29, 72, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-card h2 {
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 1;
}

.cta-card .sub {
  font-size: 1.3rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-buttons .btn {
  min-width: 180px;
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
  font-weight: 600;
}

/* ========================================
   STATISTICS SECTION
   ======================================== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

#stats {
  /*background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);*/
  border-top: 0px solid var(--border);
  border-bottom: 0px solid var(--border);
}

.stat-card {
  background: linear-gradient(145deg, #f9dddd9c, #ffffff);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius-2xl);
  padding: var(--space-10) var(--space-3);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.stat-card-grey {
  background: linear-gradient(145deg, #dfdfdf9c, #ffffff);
  border: 1px solid var(--grey-50);
}

/*.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-700));
}*/

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.stat-card .big {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.0;
  margin-bottom: var(--space-3);
  display: block;
}
.stat-card .big-g {
  font-size: 2rem;
  font-weight: 700;
  color: var(--grey-600);
  line-height: 1.0;
  margin-bottom: var(--space-3);
  display: block;
}

.stat-card .muted {
  color: var(--muted);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 2;
}

.form-card {
  /*background: linear-gradient(145deg, #f9dddd9c, #ffffff);*/
  /*border: 1px solid var(--primary-100);*/
  border-radius: var(--radius-2xl);
  padding: 0 1.8rem 1.4rem 1.8rem;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.form-card:hover {
  /*border: 1px solid var(--primary-200);*/
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}
.form-card .big {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.0;
  margin-bottom: var(--space-3);
  display: block;
}
.form-card .muted {
  color: var(--muted);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.4;
}
.btn-form { display: inline-flex; gap: var(--space-2); margin-top:.6rem; color: var(--primary); font-weight:600;}

/* ========================================
   VIDEO SECTION
   ======================================== */
.video-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.video-thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.play-button {
  position: relative;
  z-index: 2;
  transition: all var(--transition-normal);
}

.play-button:hover {
  transform: scale(1.1);
}
.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: var(--space-6);
  color: white;
  z-index: 2;
}

.video-info h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: white;
}

.video-info p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-2);
}

.video-duration {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: white;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-700));
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-dark {
  background: white;
  /*border-color: #4b5563;*/
  color: var(--text);
}

.testimonial-dark::before {
  background: linear-gradient(90deg, #6b7280, #4b5563);
}

/*.testimonial-dark:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}*/

.testimonial-dark .avatar {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  color: white;
}

.testimonial-dark p {
  color: var(--text);
}

.testimonial-dark .name {
  color: var(--text);
}

.testimonial-dark .role {
  color: var(--muted);
}



.testimonial-rating {
  margin-bottom: var(--space-5);
}

.stars {
  display: flex;
  gap: var(--space-1);
}

.star {
  color: #fbbf24;
  font-size: var(--text-3xl);
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.star-gts {
  color: #fbbf24;
  font-size: var(--text-2xl);
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.testimonial p {
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.5;
  margin-bottom: var(--space-6);
  font-style: italic;
  position: relative;
}

.testimonial p::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-200);
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: serif;
  line-height: 1;
}

.who {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-4);
}

.avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--text-light);
  display: grid;
  place-items: center;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-sm);
  box-shadow: var(--shadow-md);
}

.name {
  font-weight: 700;
  color: var(--text);
  font-size: var(--text-lg);
  /*margin-bottom: var(--space-1);*/
}

.role {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1;
}

/* Feature tiles (image 5) */
.feature-tiles .tiles-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 25px; 
  perspective: 1000px;
}

.tile { 
  background: linear-gradient(180deg, #ffffff, #fff7f7); 
  border: 1px solid #dfdfdf; 
  border-radius: 18px; 
  padding: 22px; 
  box-shadow: 
    0 12px 30px rgba(21, 21, 21, 0.15),
    0 6px 15px rgba(0, 0, 0, 0.08),
    inset 0 2px 4px rgba(255, 255, 255, 0.8),
    inset 0 -2px 4px rgba(0, 0, 0, 0.05);
  text-align: left;
  transform: translateZ(0);
  transition: all 0.4s ease;
}

.tile:hover { 
  border: 2px solid #fca5a5; 
  box-shadow: 
    0 18px 40px rgba(0, 0, 0, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.12),
    inset 0 2px 4px rgba(255, 255, 255, 0.9);
  transform: translateY(-8px) translateZ(20px);
}

.tile-icon { 
  width: 56px; 
  height: 56px; 
  border-radius: 14px; 
  display: grid; 
  place-items: center; 
  font-size: 22px; 
  margin-bottom: 16px;
  box-shadow: 
    8px 8px 16px rgba(0, 0, 0, 0.15),
    -4px -4px 8px rgba(255, 255, 255, 0.8),
    inset 2px 2px 4px rgba(255, 255, 255, 0.5),
    inset -2px -2px 4px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateX(8deg) rotateY(-3deg);
  transform-style: preserve-3d;
  transition: all 0.4s ease;
  position: relative;
}

.tile-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  border-radius: 14px;
  pointer-events: none;
}

.tile:hover .tile-icon {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateY(-4px) translateZ(10px);
  box-shadow: 
    12px 12px 24px rgba(0, 0, 0, 0.2),
    -6px -6px 12px rgba(255, 255, 255, 0.9),
    inset 3px 3px 6px rgba(255, 255, 255, 0.6),
    inset -3px -3px 6px rgba(0, 0, 0, 0.15);
}

.tile-icon-red {
  background: linear-gradient(145deg, #fee2e2, #fca5a5);
  color: #dc2626;
  border: 2px solid #fecaca;
}

.tile-icon-grey {
  background: linear-gradient(145deg, #e5e7eb, #d1d5db);
  color: #374151;
  border: 2px solid #d1d5db;
}

.tile h4 { 
  text-align: left; 
  font-size: 20px; 
  margin-bottom: 8px; 
  font-weight: 700;
}

.tile p { 
  color: var(--muted); 
  line-height: 1.6;
}

.tile .learn { 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
  color: var(--primary); 
  text-decoration: none; 
  font-weight: 600; 
  margin-top: 6px; 
}

.tile .learn:hover { 
  text-decoration: underline; 
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop */
@media (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
  
  .hero h1 {
    font-size: 4.75rem;
  }
  
  .section-head h2 {
    font-size: 3.5rem;
  }

  .section-head h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
}

/* Desktop */
@media (max-width: 1200px) {
  .container {
    padding: 0 var(--space-6);
  }
  
  .hero h1 {
    font-size: 5rem;
  }
  
  .section-head h2 {
    font-size: 3rem;
  }

  .section-head h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
}

/* Tablet */
@media (max-width: 960px) {
  .container {
    padding: 0 var(--space-5);
  }
  
  .hero-inner {
    grid-template-columns: 1fr;
  }
  
  .background-form-icon {
    right: 5%;
    opacity: 0.5;
  }
  
  .background-form-icon svg {
    width: 45px;
    height: 45px;
  }
  
  .brand.logo img {
    width: 180px;
  }
  
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .hero p {
    margin: var(--space-8) 0 var(--space-10);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-head h2 {
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  .section-head .lead {
    font-size: var(--text-base);
  }
  
  .features-grid,
  .pricing-grid,
  .deployments-grid,
  .integration-grid,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .feature-tiles .tiles-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .compliance {
    grid-template-columns: 1fr;
  }
  
  .contact {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  
  .brands-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
  }
  
  .gem-content {
    gap: 12px;
    flex-wrap: nowrap;
  }
  
  .gem-text {
    font-size: 16px;
  }
  
  .gem-logo {
    max-height: 50px;
  }
  
  .feature-row {
    grid-template-columns: 1fr;
  }
  
  .feature-copy h3 {
    font-size: 2rem;
    text-align: center;
  }

  .validation-dashboard {
    max-width: 380px;
    transform: rotate(-2deg);
  }

  .validation-card {
    padding: 14px 16px;
    border-width: 16px;
  }

  .validation-item {
    padding: 10px 12px;
    gap: 10px;
    margin-bottom: 6px;
  }

  .item-icon {
    width: 36px;
    height: 36px;
  }

  .item-icon svg {
    width: 16px;
    height: 16px;
  }

  .item-label {
    font-size: 13px;
  }

  .item-value {
    font-size: 12px;
  }

  .item-status {
    font-size: 10px;
    padding: 4px 8px;
  }

  .progress-bar {
    height: 5px;
  }

  .summary-badge {
    padding: 10px 14px;
  }

  .summary-badge span {
    font-size: 14px;
  }

  .summary-badge svg {
    width: 24px;
    height: 24px;
  }
  
  .integration-panel h2 {
    font-size: 2rem;
  }
  
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .int-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .int-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .pricing-summary-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .pricing-card {
    padding: var(--space-8);
  }

  .section-head h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
}

/* Mobile Large */
@media (max-width: 768px) {
  /* Reduce background elements on mobile for better performance */
  .hero-background {
    opacity: 0.6;
  }
  
  .section-head h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .contact-card {
    padding: 24px;
  }
  
  .contact-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .contact-info p {
    font-size: 15px !important;
  }
  
  .software-icon {
    width: 18px;
    height: 18px;
    padding: 3px;
  }
  
  .rupee-bag-icon {
    width: 40px;
    height: 40px;
    padding: 6px;
  }
  
  .chart-element {
    width: 60px;
    height: 45px;
    padding: 12px;
  }
  
  .chart-2 {
    width: 45px;
    height: 45px;
  }
  
  .pie-chart {
    width: 30px;
    height: 30px;
  }
  .stat-card .big {
  font-size: 1.5rem !important;
}
.stat-card .muted {
  line-height: 1.15 !important;
}
  
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-sm);
    font-weight: 500;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    right: var(--space-4);
    top: 72px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    flex-direction: column;
    gap: var(--space-2);
    box-shadow: var(--shadow-xl);
    min-width: 200px;
  }
  
  .nav-menu.open {
    display: flex;
  }
  
  .brand.logo img {
    width: 160px;
  }
  
  .hero h1 {
    font-size: 3.5rem;
  }
  
  .section-head h2 {
    font-size: 2rem;
  }
  
  .section-head .lead {
    font-size: var(--text-sm);
  }
  
  .features-grid,
  .pricing-grid,
  .deployments-grid,
  .integration-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .feature-tiles .tiles-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }
  
  .foot-bottom {
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
  }
  
  .foot-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .foot-links {
    justify-content: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .foot-certifications {
    align-items: center;
  }
  
  .cert-item {
    align-items: center;
  }
  
  .cert-content {
    align-items: center;
  }
  
  .cert-text {
    justify-content: center;
  }
  
  .brands-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
  
  .gem-content {
    gap: 10px;
    flex-wrap: nowrap;
  }
  
  .gem-text {
    font-size: 17px;
  }
  
  .gem-logo {
    max-height: 45px;
  }
  
  .feature-copy h3 {
    font-size: 1.75rem;
  }

  .validation-dashboard {
    max-width: 320px;
    transform: rotate(-2deg);
  }

  .validation-card {
    padding: 12px 14px;
    border-width: 12px;
  }

  .validation-item {
    padding: 8px 10px;
    gap: 8px;
    margin-bottom: 6px;
  }

  .item-icon {
    width: 34px;
    height: 34px;
  }

  .item-icon svg {
    width: 14px;
    height: 14px;
  }

  .item-label {
    font-size: 12px;
  }

  .item-value {
    font-size: 11px;
  }

  .item-status {
    font-size: 9px;
    padding: 3px 6px;
  }

  .progress-bar {
    height: 5px;
  }

  .summary-badge {
    padding: 10px 12px;
    gap: 8px;
  }

  .summary-badge svg {
    width: 22px;
    height: 22px;
  }

  .summary-badge span {
    font-size: 13px;
  }
  
  .integration-panel h2 {
    font-size: 1.75rem;
  }

  .int-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    transform: perspective(800px) rotateX(8deg) rotateY(-4deg);
  }

  .int-icon svg {
    width: 34px;
    height: 34px;
  }

  .integration-item:hover .int-icon {
    transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateY(-6px) translateZ(15px);
  }
  
  .contact {
    gap: var(--space-6);
  }
  
  .form {
    padding: var(--space-6);
  }
  
  .cta-card {
    padding: var(--space-12) var(--space-8);
  }
  
  .cta-card h2 {
    font-size: var(--text-3xl);
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .cta-buttons .btn {
    width: 100%;
    min-width: auto;
  }

  .features-grid { grid-template-columns: 1fr; }
  h2 { 
  font-size: 2rem !important;
}
}

/* Mobile */
@media (max-width: 600px) {
  .floating-charts {
    display: none;
  }
}
/* Mobile Small */
@media (max-width: 480px) {
  /* Further reduce background elements on small mobile */
  .hero-background {
    opacity: 0.4;
  }
  
  .background-form-icon {
    right: 2%;
    opacity: 0.4;
  }
  
  .background-form-icon svg {
    width: 30px;
    height: 30px;
  }
  
  
  .software-icon {
    width: 16px;
    height: 16px;
    padding: 2px;
    opacity: 0.3;
  }
  
  .rupee-bag-icon {
    width: 32px;
    height: 32px;
    padding: 4px;
  }
  
  .chart-element {
    width: 50px;
    height: 35px;
    padding: 8px;
  }
  
  .chart-2 {
    width: 35px;
    height: 35px;
  }
  
  .pie-chart {
    width: 25px;
    height: 25px;
  }
  
  .dot {
    width: 4px;
    height: 4px;
  }
  
  .container {
    padding: 0 var(--space-4);
  }
  
  .feature-stats p { font-size:.9rem !important; }
  
  .hero-ctas {
    flex-direction: column;
    gap: var(--space-3);
  }
  
  .btn-lg {
    /*width: 100%;*/
  }
  
  .hero h1 {
    font-size: 2.6rem;
  }
  
  .section-head h2 {
    font-size: 1.7rem !important;
  }
  .feature-copy h3 {
        font-size: 1.5rem !important;
    }
	.sub {
    font-size: 1.1rem;
}
.join-iso {
    font-size: .9rem !important;
}
.form-card {
    padding: 0.5rem 0.9rem 1.2rem 0.9rem !important;
}
.form-card .big {
    font-size: 1.5rem !important;
}
.stat-card .big {
        font-size: 1.3rem !important;
    }
	.btn-form {
    font-size: .9rem !important;
}
    .footer-inner {
        padding-top: var(--space-8) !important;
        padding-bottom: var(--space-8) !important;
    }

    .foot-bottom {
        padding-top: var(--space-6) !important;
        padding-bottom: var(--space-6) !important;
    }
	.features-header .hero-subtitle {
    font-size: 1.05rem !important;
}
    .ftwl {
        margin-left: -3px !important;
    }
	.download-link {
    padding: .2rem .4rem !important;
	}
  
  .brands-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  
  .gem-section {
    padding: 0px 0;
  }
  
  .gem-content {
    gap: 8px;
    flex-wrap: nowrap;
  }
  
  .gem-text {
    font-size: 14px;
  }
  
  .gem-logo {
    max-height: 40px;
  }
  .hero-copy > p:first-of-type { font-size: 1.35rem !important; }
  
  /*.stats {
    grid-template-columns: 1fr;
  }*/
  
  .testimonial {
    padding: var(--space-6);
  }
  
  .stat-card {
    padding: var(--space-6);
  }
  
  .video-container {
    max-width: 100%;
  }
  
  .video-info h3 {
    font-size: var(--text-lg);
  }
  
  .play-button svg {
    width: 60px;
    height: 60px;
  }
  
  .form {
    padding: var(--space-5);
  }
  
  .contact {
    gap: var(--space-5);
  }
  
  .cta-card {
    padding: var(--space-10) var(--space-6);
  }
  
  .cta-card h2 {
    font-size: var(--text-2xl);
  }
  
  .cta-card .sub {
    font-size: var(--text-base);
  }
  
  .pricing-card {
    padding: var(--space-6);
  }
  
  .pricing-card h3 {
    font-size: var(--text-xl);
  }
  
  .price {
    font-size: 2.5rem;
  }

  
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .brand.logo img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Print Styles */
@media print {
  .site-header,
  .site-footer,
  .btn,
  .nav-toggle {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .container {
    max-width: none !important;
    padding: 0 !important;
  }
}

/* ========================================
   MODAL / POPUP STYLES
   ======================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-modal);
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: var(--z-modal-backdrop);
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  max-width: 420px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
  z-index: var(--z-modal);
  animation: slideUp 0.3s ease-out;
}

.modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--muted);
}

.modal-close:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(90deg);
}

.modal-content h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
  text-align: center;
}

.modal-description {
  text-align: center;
  color: var(--muted);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.form-field label {
  font-weight: 600;
  color: var(--text);
  font-size: var(--text-sm);
}

.required {
  color: var(--primary);
}

.form-field input {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  background: var(--bg);
}

.form-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.form-field input[aria-invalid="true"] {
  border-color: var(--error);
}

.field-error {
  color: var(--error);
  font-size: var(--text-xs);
  min-height: var(--space-4);
  display: block;
}

/* Modal animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Success Modal Styles */
.success-modal-content {
  max-width: 400px;
  padding: var(--space-10);
  text-align: center;
}

.success-title {
  font-size: var(--text-6xl);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-4);
  text-align: center;
  line-height: 1.1;
}

.success-subtitle {
  color: var(--muted);
  font-size: var(--text-base);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  text-align: center;
}

.success-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  border-color: var(--primary-700);
  color: white;
  font-weight: 600;
  padding: var(--space-2) var(--space-5);
  margin: 0 auto;
  min-width: 80px;
  font-size: var(--text-sm);
  display: inline-flex;
}

.success-btn:hover {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-800));
  border-color: var(--primary-800);
  color: white;
}

/* Responsive modal */
@media (max-width: 768px) {
  .modal-content {
    padding: var(--space-6);
    margin: var(--space-4);
  }

  .modal-content h2 {
    font-size: var(--text-xl);
  }

  .success-modal-content {
    padding: var(--space-8);
  }

  .success-title {
    font-size: var(--text-5xl);
  }

  .success-subtitle {
    font-size: var(--text-sm);
  }
}

@media (max-width: 480px) {
  .modal {
    padding: var(--space-2);
  }

  .modal-content {
    padding: var(--space-5);
    max-height: 95vh;
  }

  .modal-content h2 {
    font-size: var(--text-lg);
  }

  .success-modal-content {
    padding: var(--space-6);
  }

  .success-title {
    font-size: var(--text-4xl);
  }

  .success-subtitle {
    font-size: var(--text-xs);
  }

  .success-btn {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
  }
}

/* ========================================
   QUIZ PAGE STYLES
   ======================================== */

/* Recommendation Section Styles */
.recommendation-content {
  text-align: left;
}

.recommendation-header {
  margin-bottom: 2rem;
}

.recommendation-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.recommendation-header p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.6;
}

.trust-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badge {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
}

.comparison-table {
  margin-bottom: 2rem;
}

.comparison-table h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
  text-align: left;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid #e5e7eb;
}

.comparison-table th {
  background: #fdf9f9;
  font-weight: 600;
  color: #374151;
  border: 1px solid #e5e7eb;
}

.comparison-table td {
  color: #6b7280;
}

.download-section {
  margin-top: 1rem;
}

.download-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  text-align: left;
}

.download-section > p {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

.download-form {
  background: #f9fafb;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  max-width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.form-group input {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.checkbox-group {
  margin: 1.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.download-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.download-process {
  text-align: center;
  padding: 2rem;
}

.download-process h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.download-link {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: .25rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  margin: 0rem 0;
  transition: background-color 0.2s ease;
}

.download-link:hover {
  background: var(--primary-700);
}

.email-note {
  color: #6b7280;
  margin: 1rem 0;
}

.final-cta {
  margin-top: 2rem;
}

.final-cta p {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 1rem;
}

.final-cta .btn {
  margin: 0.5rem;
}

/* Responsive Design for Recommendation */
@media (max-width: 768px) {
  .trust-badges {
    flex-direction: column;
  }
  .inner-hero {
    padding: 1.25rem 0 1rem !important;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .download-actions {
    flex-direction: column;
  }
  
  .comparison-table {
    overflow-x: auto;
  }
  
  .comparison-table table {
    min-width: 500px;
  }
}
.inner-hero {
  padding: 3rem 0 1rem;
  text-align: center;
}

.hero-content {
  max-width: 1020px;
  margin: 0 auto;
}

.hero-gets { font-size:3rem; font-weight:800; margin-top:2rem; text-align: center;}
.hero-gets span { color:var(--primary);}

.inner-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.inner-hero .hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
}

.features-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.features-header .brand-highlight {
  color: var(--primary);
}
.brand-highlight {
  color: var(--primary);
}
.features-header .hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.quiz-section {
  padding: 1rem 0 4rem;
}

.quiz-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}


.progress-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.step.active .step-circle {
  background: var(--primary);
  color: white;
  border: 3px solid var(--primary);
}

.step:not(.active) .step-circle {
  background: white;
  color: #6b7280;
  border: 3px solid #e5e7eb;
}

.step-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  text-align: center;
}

.step.active .step-text {
  color: var(--primary);
  font-weight: 600;
}

.step-indicator {
  display: flex;
  align-items: center;
}

.step-indicator span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.quiz-content {
  margin-top: 1rem;
}

.quiz-form {
  width: 100%;
  text-align: left;
}

.question-group {
  display: none;
  margin-bottom: 2rem;
  text-align: left;
}

.question-group.active {
  display: block;
}
.quiz-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.summary-content {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  text-align: center;
}

.summary-content p {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.6;
}

.restart-section {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
  text-align:center;
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.question-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
  margin-bottom: 1.5rem;
  border: none;
}

.question-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.options-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.option-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.option-label:hover {
  border-color: var(--primary);
  background: #fef2f2;
}

.option-radio {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

.option-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
}

.option-label:has(.option-radio:checked) {
  border-color: var(--primary);
  background: var(--primary);
}

.option-label:has(.option-radio:checked) .option-text {
  color: white;
  font-weight: 600;
}

.quiz-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary {
  background: white;
  border: 2px solid #e5e7eb;
  color: #6b7280;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: #d1d5db;
  background: #f9fafb;
  color: #374151;
}

/* Responsive Design */
@media (max-width: 768px) {
  .quiz-hero h1 {
    font-size: 2rem;
  }
  
  .quiz-hero .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .quiz-card {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
  
  .progress-steps {
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .step-circle {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .step-text {
    font-size: 0.75rem;
  }
  
  .options-group {
    gap: 0.75rem;
  }
  
  .option-label {
    padding: 0.875rem 1rem;
  }
  
  .quiz-actions {
    flex-direction: column;
  }

  .quiz-navigation {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .nav-buttons {
    flex-direction: row;
    gap: 0.75rem;
  }

  .nav-buttons .btn {
    flex: 1;
  }

  .summary-content {
    text-align: center;
  }
  
  .btn-large,
  .btn-secondary {
    width: 100%;
  }
  .inner-hero .hero-subtitle {
  line-height: 1.2;
}
}

@media (max-width: 480px) {
  .quiz-section {
    padding: 2rem 0;
  }
  
  .quiz-card {
    padding: 1.5rem 1rem;
    margin: 0.5rem;
  }
  
  .quiz-title {
    font-size: 1.75rem;
  }
  
  .progress-steps {
    gap: 0.5rem;
  }
  
  .step-circle {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* ========================================
   GET STARTED PAGE STYLES
   ======================================== */
.get-started-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  text-align: center;
}

.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.breadcrumb-link:hover {
  color: var(--primary);
}

.get-started-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 1180px !important;
  margin: 0 auto;
}

.main-content-section {
  padding: 1rem 0;
  /*background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);*/
}

.content-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: start;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stats-section {
  margin-top: 1rem;
}

.rate-section {
  margin: .2rem auto 0 auto;
}

.rate-label { font-size:1.1rem; color: #333;; text-align:center;
}

.cc { font-size: .8rem;
    color: #727272;
    line-height: .75rem;
    margin-top: .75rem;
    text-align: center;}

.right-column {
  position: sticky;
  top: 6rem;
  margin-top:2.5rem;
}

.toggle-section {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.toggle-container {
  display: inline-flex;
  background: #f8fafc;
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.toggle-btn {
  padding: 5px 26px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  min-width: 120px;
  text-align: center;
}

.toggle-btn.active {
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Desktop (on-premise) selected - Red background */
.toggle-btn[data-option="on-premise"].active {
  background: #dc2626; /* Red color */
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

/* Cloud selected - Blue background */
.toggle-btn[data-option="cloud"].active {
  background: #2563eb; /* Blue color */
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.toggle-btn:not(.active):hover {
  background: #f1efef;
  color: #374151;
}

/* Desktop hover state - darker red */
.toggle-btn[data-option="on-premise"].active:hover {
  background: #b91c1c; /* Darker red */
}

/* Cloud hover state - darker blue */
.toggle-btn[data-option="cloud"].active:hover {
  background: #1d4ed8; /* Darker blue */
}

.trust-section {
  padding: 0;
  background: transparent;
  border-bottom: none;
}

.trust-section h2 {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 600;
  color: #717172;
  margin-bottom: 1.45rem;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.company-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem;
  background: #ffffff00;
  border-radius: 6px;
  transition: transform var(--transition-fast);
}

.company-logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.company-logo img {
  max-width: 100px;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter var(--transition-fast);
}

.company-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

.recognition-section {
  padding: 0;
  background: transparent;
}

.recognition-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.recognition-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast);
}

.recognition-item:hover {
  transform: translateY(-4px);
}

.recognition-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.recognition-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.recognition-item p {
  color: var(--muted);
  font-weight: 600;
}

.stats-section {
  padding: 0;
  background: transparent;
  border-bottom: none;
}

.stats-section h2 {
  text-align: center;
  font-size: 1.45rem;
  font-weight: 600;
  color: #717172;
  margin-bottom: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: .5rem;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.35rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.form-section {
  padding: 0;
  background: transparent;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.download-form {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid #d2d2d2;
  max-width: 400px;
  margin: 0 auto 3rem auto;
}

/* Quiz page download form - full width */
.quiz-card .download-form {
  max-width: 100%;
  margin: 0;
}

/* 3D Icon Styling for All Pages */
.rupee-bag-icon,
.software-icon,
.floating-icons .software-icon {
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.2));
  transform: perspective(1000px) rotateX(10deg) rotateY(5deg);
  transition: all 0.3s ease;
}

.rupee-bag-icon:hover,
.software-icon:hover,
.floating-icons .software-icon:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(0deg) translateY(-2px);
  filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.3));
}

/* 3D styling for pricing icons */
.pricing-icon {
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.15));
  transform: perspective(1000px) rotateX(5deg);
  transition: all 0.3s ease;
}

.pricing-icon:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-2px);
  filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.25));
}

/* 3D styling for integration icons */
.int-icon {
  filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.1));
  transform: perspective(1000px) rotateX(3deg);
  transition: all 0.3s ease;
}

.int-icon:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-1px);
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}

/* Cloud pricing section - dark grey buttons and prices */
#cloud-pricing-section .btn-primary {
  background: linear-gradient(135deg, #64a1f7, #0654c1) !important;
  border-color: #2970d3 !important;
  color: white !important;
}

#cloud-pricing-section .btn-primary:hover {
  background: linear-gradient(135deg, #548ddd, #0348a9) !important;
  border-color: #246dd2 !important;
  color: white !important;
}

#cloud-pricing-section .price {
  color: #076ec3 !important;
}

#cloud-pricing-section .currency {
  color: #374151 !important;
}

/* Cloud pricing section - grey theme for popular badge */
#cloud-pricing-section .popular-badge {
  background: #0278d9 !important;
  color: white !important;
  border: 2px solid white !important;
  top: -21px !important;
  z-index: 20 !important;
  padding: 6px 24px !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
  border-radius: 25px !important;
  min-width: 140px !important;
}

#cloud-pricing-section .pricing-inner-card.popular {
  border-color: #5195f7 !important;
  box-shadow: 0 8px 32px rgba(107, 114, 128, 0.15) !important;
}

#cloud-pricing-section .pricing-inner-card.popular:hover {
  box-shadow: 0 12px 40px rgba(107, 114, 128, 0.5) !important;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 800;
  /*text-transform: uppercase;*/
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.form-title.download-style {
  color: var(--primary);
}

.form-title.demo-style {
  color: #076ec3;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 0rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0rem;
  font-size: 0.95rem;
  line-height: 1.25rem;
}

.download-form .form-group {
  margin-bottom: .75rem;
}

.download-form input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: all var(--transition-fast);
  background: white;
  box-sizing: border-box;
}

.download-form input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.download-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.download-form input.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.captcha-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
}

.terms-checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 6px;
}

.terms-checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.terms-checkbox-group label {
  font-size: 0.75rem;
  color: #393939;
  cursor: pointer;
  margin: 0;
  font-weight: 400;
  user-select: none;
}

.terms-checkbox-group .terms-link {
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
}

.terms-checkbox-group .terms-link:hover {
  color: #000000;
  text-decoration: underline;
}

/* Terms of Service Modal */
.terms-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.terms-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.terms-modal-content {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10001;
  animation: modalFadeIn 0.3s ease-out;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.terms-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.terms-modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.terms-modal-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.2s ease;
  line-height: 1;
}

.terms-modal-close:hover {
  background: #f3f4f6;
  color: var(--text);
}

.terms-modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
  line-height: 1.8;
}

.terms-modal-body p {
  margin: 0 0 1rem 0;
  color: var(--text);
  font-size: 0.95rem;
}

.terms-modal-body p:last-child {
  margin-bottom: 0;
}

.terms-modal-body strong {
  font-weight: 600;
  color: var(--text);
}

.terms-modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: flex-end;
}

.terms-modal-button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.terms-modal-button:hover {
  background: var(--primary-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
}

@media (max-width: 768px) {
  .terms-modal-content {
    max-width: 100%;
    max-height: 95vh;
  }
  
  .terms-modal-header {
    padding: 1.25rem 1.5rem;
  }
  
  .terms-modal-header h2 {
    font-size: 1.25rem;
  }
  
  .terms-modal-body {
    padding: 1.5rem;
  }
  
  .terms-modal-footer {
    padding: 1.25rem 1.5rem;
  }
}

.captcha-image {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.25rem 1rem;
  position: relative;
  height: 36px;
  box-sizing: border-box;
}

.captcha-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 2px;
  background: linear-gradient(45deg, transparent 25%, rgba(0,0,0,0.1) 25%, rgba(0,0,0,0.1) 50%, transparent 50%, transparent 75%, rgba(0,0,0,0.1) 75%);
  background-size: 8px 8px;
  padding: 0.25rem 1rem;
  border-radius: 4px;
}

.captcha-refresh {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.captcha-refresh:hover {
  background: #e5e7eb;
  color: #374151;
}

.captcha-refresh svg {
  display: block;
}

.captcha-input {
  flex: 1;
}

.captcha-input input {
  margin-bottom: 0;
}

.download-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  border: 1px solid var(--primary-700);
  color: white;
  padding: 0.25rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: .25rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  height: 40px;
  box-sizing: border-box;
}

.download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.download-btn:hover::before {
  left: 100%;
}

.download-btn:hover {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-800));
  border-color: var(--primary-800);
  color: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.download-btn:active {
  transform: translateY(0);
}

.demo-btn {
  width: 100%;
  background: linear-gradient(135deg, rgb(100, 161, 247), rgb(6, 84, 193));
  border: 1px solid rgb(41, 112, 211);
  color: white;
  padding: 0.25rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: .25rem;
  box-shadow: 0 2px 4px rgba(107, 114, 128, 0.2);
  position: relative;
  overflow: hidden;
  height: 40px;
  box-sizing: border-box;
}

.demo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.demo-btn:hover::before {
  left: 100%;
}

.demo-btn:hover {
  background: linear-gradient(135deg, #64a1f7, #0654c1);
  border-color: #2970d3;
  color: white;
  box-shadow: 0 4px 8px rgba(107, 114, 128, 0.3);
  transform: translateY(-1px);
}

.demo-btn:active {
  transform: translateY(0);
}

.phone-input {
  position: relative;
  display: flex;
  align-items: center;
}

.country-code {
  position: absolute;
  left: 1rem;
  font-size: 1.2rem;
  z-index: 1;
}

.phone-input input {
  padding-left: 3rem;
}

.checkbox-group {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: white;
}

.checkbox-item:hover {
  border-color: var(--primary);
  background: #fef2f2;
}

.checkbox-item input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.checkbox-content strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.checkbox-content p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.checkbox-single {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all var(--transition-fast);
  background: white;
}

.checkbox-single:hover {
  border-color: var(--primary);
  background: #fef2f2;
}

.checkbox-single input[type="checkbox"] {
  display: none;
}

.checkbox-single .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  position: relative;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.checkbox-single input[type="checkbox"]:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-single input[type="checkbox"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.form-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2rem;
}

.contact-section {
  padding: 3rem 0;
  background: white;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 0rem;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}

.contact-item strong {
  color: var(--muted);
  font-weight: 600;
  font-size: 1.2rem;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color var(--transition-fast);
}

.contact-item a:hover {
  color: var(--primary-700);
  text-decoration: underline;
}

/* Responsive Design for Get Started Page */
@media (max-width: 768px) {
  .get-started-hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .right-column {
    position: static;
    order: -1;
  }
  
  .left-column {
    order: 1;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .company-logo {
    padding: 0.75rem;
  }
  
  .company-logo img {
    max-width: 80px;
    max-height: 40px;
  }
  
  .recognition-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .download-form {
    padding: 2rem;
    max-width: 100%;
  }
  
  .captcha-group {
    flex-direction: row;
    align-items: stretch;
    gap: 1rem;
  }
  
  .captcha-image {
    justify-content: center;
  }
  
  .toggle-container {
    width: 100%;
    max-width: 300px;
  }
  
  .toggle-btn {
    flex: 1;
    min-width: auto;
  }
  
  .contact-info {
    flex-direction: column;
    gap: .2rem;
  }
  .features-bt-grid { grid-template-columns: 1fr !important; }
  .faq-item { padding: 0rem .75rem !important; }
}

@media (max-width: 480px) {
  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .company-logo {
    padding: 0.5rem;
  }
  
  .company-logo img {
    max-width: 60px;
    max-height: 30px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .download-form {
    padding: 1.5rem;
  }
  
  .checkbox-item {
    padding: 1rem;
  }
  
  .checkbox-content strong {
    font-size: 1rem;
  }
  
  .checkbox-content p {
    font-size: 0.85rem;
  }
}

/* ========================================
   PRICING PAGE STYLES
   ======================================== */

.pricing-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-header {
  text-align: center;
  margin-bottom: .5rem;
}

.pricing-header h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.pricing-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-toggle {
  display: inline-flex;
  background: #ffffff;
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 0rem;
}

.pricing-validity-text {
  text-align: center;
  font-size: 1.1rem;
  color: #121212;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.pricing-section {
  margin-bottom: 3rem;
  overflow: visible;
}

.pricing-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.toggle-btn {
  padding: 5px 26px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.toggle-btn.active {
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Desktop (on-premise) selected - Red background */
.toggle-btn[data-plan="on-premise"].active {
  background: #dc2626; /* Red color */
  box-shadow: 0 2px 4px rgba(220, 38, 38, 0.3);
}

/* Cloud selected - Blue background */
.toggle-btn[data-plan="cloud"].active {
  background: #2563eb; /* Blue color */
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.toggle-btn:not(.active):hover {
  background: #f1f5f9;
  color: #374151;
}

/* Desktop hover state - darker red */
.toggle-btn[data-plan="on-premise"].active:hover {
  background: #b91c1c; /* Darker red */
}

/* Cloud hover state - darker blue */
.toggle-btn[data-plan="cloud"].active:hover {
  background: #1d4ed8; /* Darker blue */
}

/* Plan type text styling */
.plan-type-text {
  transition: color 0.3s ease;
}

.plan-type-text.desktop {
  color: #dc2626; /* Red color for Desktop */
}

.plan-type-text.cloud {
  color: #2563eb; /* Blue color for Cloud */
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 1rem 2rem 1.5rem 2rem;
  box-shadow: 0 8px 32px #2222221f;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 335px;
  overflow: visible;
}

.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(21, 21, 21, 0.25);
  border-color: #5195f7;
}

.pricing-card.popular {
  border-color: var(--primary);
}

.pricing-card.popular:hover {
  transform: translateY(-4px);
}

.pricing-inner-card.popular {
  border-color: var(--primary);
}

.pricing-inner-card.popular:hover {
  transform: translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 6px 24px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 20;
  white-space: nowrap;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

.plan-header {
  text-align: center;
  margin-bottom: .5rem;
}

.plan-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .75rem;
}

.plan-price {
  margin-bottom: 0rem;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.price-period {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.pricing-inner-card {
  background: white;
  border-radius: 16px;
  padding: 2rem .85rem 1.5rem .85rem;
  box-shadow: 0 8px 32px #2222221f;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 335px;
  overflow: visible;
}

.pricing-inner-card:hover {
  box-shadow: 0 12px 40px rgba(21, 21, 21, 0.25);
  transform: translateY(-4px);
}
.gst-note {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

.plan-features {
  margin-bottom: 1rem;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-label {
  font-weight: 400;
  color: var(--muted);
}

.feature-value {
  font-weight: 400;
  color: var(--primary);
}
#cloud-pricing-section .feature-value {
  font-weight: 400;
  color: #037add;
}

.plan-key-features {
  margin-bottom: 1.5rem;
  flex-grow: 1;
  text-align:left;
}

.plan-key-features h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: left;
}

.plan-key-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan-key-features li {
  padding: 6px 0;
  color: var(--muted);
  position: relative;
  padding-left: 18px;
  line-height: 1.25;
}
.plan-key-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

#cloud-pricing-section .plan-key-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #028afb;
  font-weight: bold;
}

.plan-btn {
  width: 100%;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: auto;
}

.scroll-indicator {
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 3rem;
}

.custom-solution {
  text-align: center;
  background: white;
  border-radius: 16px;
  padding: 3rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.custom-solution h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.custom-solution p {
  color: var(--muted);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.custom-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-section {
  padding: 4rem 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.faq-header p {
  font-size: 1.125rem;
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.faq-item {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1rem 2rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

.faq-cta {
  text-align: center;
  background: var(--primary);
  color: white;
  border-radius: 16px;
  padding: 3rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.faq-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-cta p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.faq-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-buttons .btn {
  background: white;
  color: var(--primary);
  border: none;
}

.faq-buttons .btn:hover {
  background: #f8fafc;
}

.pricing-cta {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
  color: white;
  text-align: center;
}

.pricing-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.pricing-cta p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
}

.cta-buttons .btn-primary {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-800));
  color: var(--text-light);
  border: none;
}

.cta-buttons .btn-primary:hover {
  /*background: #f8fafc;*/
}

.cta-buttons .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: var(--primary);
}

/* Accordion Styles */
.accordion-section {
  margin-bottom: 2rem;
}

.accordion-header {
  width: 100%;
  background: #ffffff;
  border: 1px solid #a7a7a7;
  border-radius: 12px;
  padding: .5rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}

.accordion-header:hover {
  background: #f5e6e6;
  border-color: var(--primary);
}

.accordion-header.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.accordion-icon {
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}

.accordion-title {
  flex: 1;
}

/* Blue theme for Compare Features when cloud toggle is active */
body.cloud-active .accordion-header {
  border-color: #3b82f6;
  color: #2563eb;
}

body.cloud-active .accordion-header .accordion-icon {
  color: #2563eb;
}

body.cloud-active .accordion-header .accordion-title {
  color: #2563eb;
}

body.cloud-active .accordion-header:hover {
  background: #dbeafe;
  border-color: #2563eb;
}

body.cloud-active .accordion-header.active {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

body.cloud-active .accordion-header.active .accordion-icon {
  color: white;
}

body.cloud-active .accordion-header.active .accordion-title {
  color: white;
}

/* Animated Background Objects for Non-Home Pages */
.animated-background {
  position: relative;
  overflow: hidden;
}

.animated-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(225, 29, 72, 0.02) 0%, rgba(59, 130, 246, 0.02) 100%);
  pointer-events: none;
  z-index: 0;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity:.5;
}

.shape {
  position: absolute;
  opacity: 0.1;
  animation: float 20s infinite linear;
}

.shape-1 {
  width: 35px;
  height: 35px;
  background: linear-gradient(45deg, #e11d48, #3b82f6);
  border-radius: 15px;
  top: -100px;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 15s;
}

.shape-2 {
  width: 25px;
  height: 25px;
  background: linear-gradient(45deg, #3b82f6, #e11d48);
  border-radius: 50%;
  top: -100px;
  right: 10%;
  animation-delay: -2s;
  animation-duration: 18s;
}

.shape-3 {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #e11d48, #f59e0b);
  border-radius: 12px;
  top: -100px;
  left: 82%;
  animation-delay: -4s;
  animation-duration: 16s;
}

.shape-4 {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #3b82f6, #10b981);
  border-radius: 50%;
  top: -100px;
  right: 45%;
  animation-delay: -6s;
  animation-duration: 20s;
}

.shape-5 {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #f59e0b, #e11d48);
  border-radius: 12px;
  top: -100px;
  left: 55%;
  animation-delay: -8s;
  animation-duration: 17s;
}

.shape-6 {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #10b981, #3b82f6);
  border-radius: 15px;
  top: -100px;
  right: 65%;
  animation-delay: -10s;
  animation-duration: 19s;
}

.shape-7 {
  width: 32px;
  height: 32px;
  background: linear-gradient(45deg, #e11d48, #10b981);
  border-radius: 50%;
  top: -100px;
  left: 95%;
  animation-delay: -12s;
  animation-duration: 21s;
}

.shape-8 {
  width: 36px;
  height: 36px;
  background: linear-gradient(45deg, #3b82f6, #f59e0b);
  border-radius: 12px;
  top: -100px;
  right: 85%;
  animation-delay: -14s;
  animation-duration: 22s;
}

@keyframes float {
  0% {
    transform: translateX(0px) translateY(-120px) rotate(0deg);
    opacity: 0.1;
  }
  10% {
    opacity: 0.15;
  }
  50% {
    transform: translateX(50px) translateY(calc(100vh + 120px)) rotate(180deg);
    opacity: 0.1;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translateX(0px) translateY(calc(100vh + 240px)) rotate(360deg);
    opacity: 0.1;
  }
}

/* Stationary objects with zoom effects */
.zoom-objects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity:.6;
}

.zoom-object {
  position: fixed;
  opacity: 0.06;
  animation: zoomPulse 4s ease-in-out infinite;
}

.zoom-object-1 {
  width: 55px;
  height: 55px;
  background: linear-gradient(45deg, #e11d48, #ffdddd);
  border-radius: 50%;
  top: 15%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 5s;
}

.zoom-object-2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #693bf6, #b91010);
  border-radius: 15px;
  top: 28%;
  right: 8%;
  animation-delay: -1s;
  animation-duration: 4.5s;
}

.zoom-object-3 {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #f59e0b, #e11d48);
  border-radius: 10px;
  top: 70%;
  left: 12%;
  animation-delay: -2s;
  animation-duration: 6s;
}

.zoom-object-4 {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #b91010, #8c3bf6);
  border-radius: 50%;
  top: 65%;
  right: 15%;
  animation-delay: -0.5s;
  animation-duration: 5.5s;
}

.zoom-object-5 {
  width: 65px;
  height: 65px;
  background: linear-gradient(45deg, #e11d48, #4f0bf5);
  border-radius: 25px;
  top: 46%;
  left: 8%;
  transform: translateY(-50%);
  animation-delay: -3s;
  animation-duration: 4.8s;
}

.zoom-object-6 {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #f63b3b, #d95e15ed);
  border-radius: 50%;
  top: 55%;
  right: 3%;
  animation-delay: -1.5s;
  animation-duration: 5.2s;
}

@keyframes zoomPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.08;
  }
  25% {
    transform: scale(1.2);
    opacity: 0.12;
  }
  50% {
    transform: scale(1.0);
    opacity: 0.08;
  }
  75% {
    transform: scale(0.9);
    opacity: 0.10;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.08;
  }
}

/* Ensure content stays above animated background */
.animated-background > * {
  position: relative;
  z-index: 1;
}

.animated-background .download-section,
.animated-background .inner-hero,
.animated-background .support-section {
  position: relative;
  z-index: 10;
}

/* Support Section Styles */
.support-section {
  padding: 40px 0 80px;
  position: relative;
  z-index: 10;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 0px;
}

.support-note {
  grid-column: 1 / -1;
  text-align: center;
  margin: 0px 0;
  padding: 15px 0 0 0;
}

.support-note p {
  color: var(--muted, #64748b);
  font-size: 1.35rem;
  line-height:1.35;
  font-weight: 600;
  margin: 0;
}

.support-cards-center-wrapper {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.support-cards-center-wrapper .support-card {
  flex: 0 1 350px;
  width: 350px;
  max-width: 350px;
}

.support-card {
  background: var(--card, #ffffff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 16px;
  padding: 30px 30px 24px 30px;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 10;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-300, #fca5a5);
}

.support-card-header {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary-200, #fecdd3);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.support-icon {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-50, #fff1f2), var(--primary-100, #ffe4e6));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary, #e11d48);
  flex-shrink: 0;
}

.support-icon svg {
  width: 42px;
  height: 42px;
  stroke: var(--primary, #e11d48);
}

.support-card-header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.support-card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text, #0b1020);
  margin: 6px 0 8px 0;
  text-align: left;
}

.support-subtitle {
  color: var(--muted, #64748b);
  font-size: 1.05rem;
  margin: 0;
}

.support-card-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text, #0b1020);
  margin: 0 0 16px 0;
}

.support-contact-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.support-contact-header h4 {
  margin: 0;
  white-space: nowrap;
}

.support-card-content h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text, #0b1020);
  margin: 20px 0 12px 0;
}

.support-contact-info {
  margin-bottom: 0;
}

.support-contact-info p {
  margin: 0px 0;
  font-size: 1rem;
  line-height: 1.4;
}

.support-contact-info a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.support-contact-info a:hover {
  text-decoration: underline;
}

.support-time-header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.support-time-header h5 {
  margin: 0;
  white-space: nowrap;
}

.support-time-info {
  flex: 1;
}

.support-time p {
  margin: 0px 0;
  color: var(--text, #0b1020);
  font-size: 0.95rem;
  line-height: 1.4;
}

.support-time strong {
  color: var(--text, #0b1020);
  font-weight: 600;
}

.support-email-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.support-email-header h4 {
  margin: 0;
  white-space: nowrap;
}

.support-email {
  margin: 0;
  line-height: 1.4;
}

.support-email a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color var(--transition-fast);
}

.support-email a:hover {
  text-decoration: underline;
}

.support-description {
  color: var(--muted, #64748b);
  line-height: 1.6;
  margin-bottom: 0px;
}

.support-card .btn {
  margin-top: 28px;
  font-size: 1rem;
}

.support-card-center .support-card-header {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.support-card-center .support-card-header-text {
  align-items: center;
  text-align: center;
}

.support-card-center .support-card-header h3 {
  text-align: center;
}

.support-card-center .support-subtitle {
  text-align: center;
}

.support-card-center .support-card-content {
  text-align: center;
}

.support-card-center .support-description {
  text-align: center;
}

.support-card-center .btn {
  display: inline-flex;
}

@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .support-card {
    padding: 24px;
  }
  
  .support-card-header h3 {
    font-size: 1.25rem;
  }
  
  .support-contact-header {
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .support-contact-header h4 {
    margin-bottom: 0;
  }
  
  .support-time-header {
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .support-time-header h5 {
    margin-bottom: 0;
  }
  
  .support-email-header {
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .support-email-header h4 {
    margin-bottom: 0;
  }
  
  .support-cards-center-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .support-cards-center-wrapper .support-card {
    width: 100%;
    max-width: 100%;
    flex: 0 1 230px;
  }
}

/* Resources Page Styles */
.resources-section {
  padding: 0 0 60px;
}

.resources-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1rem;
}

/* Center the last two items in the last row */
.resource-item:nth-last-child(2) {
  grid-column: 2 / 3;
}

.resource-item:nth-last-child(1) {
  grid-column: 3 / 4;
}

.resource-item {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.resource-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.resource-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.resource-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.25;
  text-align: center;
  height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.resource-item p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  line-height: 1.25;
  text-align:center;
}

.resource-item .btn {
  width: 100%;
  justify-content: center;
}

.additional-resources {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.additional-resources-content h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
}

.additional-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  max-width: 800px;
  margin: 0 auto;
}

.additional-item {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.additional-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.additional-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.additional-item p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.additional-item .btn {
  min-width: 150px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .resources-section {
    padding: 2rem 0;
  }
  
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  /* Reset nth-last-child rules for 2-column layout */
  .resource-item:nth-last-child(2),
  .resource-item:nth-last-child(1) {
    grid-column: auto;
  }
  
  .additional-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  
  .additional-resources {
    padding: 2rem 0;
  }
  
  .additional-resources-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
  }
  
  .resource-item {
    padding: 10px 8px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .resource-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
  }
  
  .resource-item h3 {
    font-size: 0.85rem;
    line-height: 1.3;
    text-align: center;
    margin: 0;
  }
}

.accordion-content {
  display: none;
  background: white;
  border: 1px solid #e2e8f0;
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 1.5rem;
  margin-top: -1px;
}
/* Feature Comparison Table */
.feature-comparison-table {
  /*overflow-x: auto;
  max-height: 400px;
  overflow-y: auto;*/
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}
.feature-comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.feature-comparison-table th,
.feature-comparison-table td {
  padding: 8px 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.feature-comparison-table th {
  background: #e2e8f0;
  font-weight: 600;
  color: var(--text);
  font-size: 0.875rem;
  position: sticky;
  top: 0;
  z-index: 10;
}

.feature-comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  background: #f8fafc;
  position: sticky;
  left: 0;
  z-index: 5;
}

.feature-comparison-table th:first-child {
  position: sticky;
  left: 0;
  z-index: 15;
}

.feature-comparison-table th:nth-child(2),
.feature-comparison-table th:nth-child(3),
.feature-comparison-table td:nth-child(2),
.feature-comparison-table td:nth-child(3) {
  min-width: 140px;
  width: 140px;
}

.feature-comparison-table td {
  color: var(--muted);
}

.feature-comparison-table td:contains("✓") {
  color: var(--primary);
  font-weight: 600;
}

.feature-comparison-table .buy-now-row {
  background: #f8fafc;
  border-top: 2px solid #e2e8f0;
}

.feature-comparison-table .buy-now-row td {
  padding: 16px 12px;
  text-align: center;
  vertical-align: middle;
}

.feature-comparison-table .buy-now-row td:first-child {
  background: #f8fafc;
  text-align: left;
  font-weight: 600;
  color: var(--text);
}

.feature-comparison-table .buy-now-row .btn {
  margin: 0;
  padding: 8px 16px;
  font-size: 0.875rem;
  min-width: 80px;
}

/* Cloud theme for Buy Now buttons */
.cloud-active .feature-comparison-table .buy-now-row .btn {
  background: #076ec3;
  border-color: #076ec3;
  color: white;
}

.cloud-active .feature-comparison-table .buy-now-row .btn:hover {
  background: #0656a0;
  border-color: #0656a0;
}

#cloud-pricing-section .accordion-header {
  width: 100%;
  background: #ffffff;
  border: 1px solid #a7a7a7;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.2s ease;
  font-size: 1.125rem;
  font-weight: 600;
  color: #076ec3;
}

.accordion-header:hover {
  background: #f5e6e6;
  border-color: var(--primary);
}

.accordion-header.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.accordion-icon {
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}

/* Multi-User Pricing */
.multi-user-pricing {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.multi-user-section {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1.5rem;
}

.multi-user-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.multi-user-section h4 {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: left;
}

.multi-user-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.multi-user-option:last-child {
  border-bottom: none;
}

.user-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.user-count {
  font-weight: 500;
  color: var(--text);
}

.user-names {
  font-size: 0.875rem;
  color: var(--text);
  margin-top: 4px;
  opacity: 0.8;
}

.multi-user-price {
  color: var(--primary);
  font-weight: 600;
  margin-right: 1rem;
  min-width: 80px;
  text-align: right;
}

/* Desktop view - move price column much more to the left */
@media (min-width: 769px) {
  .multi-user-price {
    margin-left: -250px;
    text-align: left;
  }
}

.multi-user-option .btn {
  padding: 8px 16px;
  font-size: 0.875rem;
  min-width: 100px;
}

/* Pricing Page Responsive */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-header h1 {
    font-size: 2rem;
  }
  
  .pricing-section-title {
    font-size: 1.75rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.popular:hover {
    transform: translateY(-4px);
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
  
  .custom-buttons,
  .faq-buttons,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .custom-buttons .btn,
  .faq-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .feature-comparison-table {
    font-size: 0.875rem;
    /*max-height: 300px;*/
	overflow-x: auto;
  }
  
  .feature-comparison-table th,
  .feature-comparison-table td {
    padding: 8px 12px;
  }
  
  .feature-comparison-table th {
    font-size: 0.8rem;
  }
  
  .feature-comparison-table .buy-now-row .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    min-width: 70px;
  }
  
  .feature-comparison-table .buy-now-row td {
    padding: 12px 8px;
  }
  
  .cloud-active .feature-comparison-table .buy-now-row .btn {
    padding: 6px 12px;
    font-size: 0.8rem;
    min-width: 70px;
  }
  
  .multi-user-option {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .multi-user-price {
    margin-right: 0;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .pricing-hero {
    padding: 2rem 0;
  }
  
  .pricing-header h1 {
    font-size: 1.75rem;
  }
  
  .pricing-section-title {
    font-size: 1.5rem;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .pricing-card {
    padding: 1.5rem;
    min-height: 350px;
  }
  
  .price {
    font-size: 2rem;
  }
  
  .faq-header h2 {
    font-size: 2rem;
  }
  
  .pricing-cta h2 {
    font-size: 2rem;
  }
}

/* quiz Page inline */
.content{padding:26px 22px}
  .q-text{font-size:20px;font-weight:700;margin-bottom:14px}
  .subtitle{color:var(--muted);margin:-6px 0 16px}
  .options{display:grid;gap:10px;margin:12px 0 8px}
  .opt{border:1px solid #dbdbdb;background:#fbfdff;padding:12px 14px;border-radius:12px;cursor:pointer;text-align:left;display:flex;gap:10px;align-items:flex-start}
  .opt:hover{border-color:var(--primary);background:#fff7f4}
  .opt.selected{border-color:var(--primary);background:#ffecea}
  .opt .rdo{width:18px;height:18px;border-radius:50%;border:2px solid var(--primary);margin-top:2px;flex:0 0 18px;background:#fff}
  .opt.selected .rdo{background:var(--primary)}
  .hint{margin-top:10px;background:#f7fafc;border:1px dashed #cbd5e1;color:#334155;padding:12px 12px;border-radius:10px;font-size:14px}
  .actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
  .q-btn{border:0;border-radius:10px;padding:8px 24px;font-weight:500;cursor:pointer;font-size: 1rem;}  
  .q-btn-primary{background:var(--primary);color:#fff}
  .q-btn-primary:hover { background: linear-gradient(135deg, var(--primary-500), var(--primary-800));border-color: var(--primary-800);color: white;box-shadow: var(--shadow-lg);}
  .q-btn-primary:disabled{background:#d1d5db;color:#9ca3af;cursor:not-allowed;opacity:0.6;}
  .q-btn-primary:disabled:hover{background:#d1d5db;color:#9ca3af;box-shadow:none;}
  .q-btn-soft{background:#eef4ff;color:var(--primary)}
  .q-btn-ghost{background: #FFF;border: 2px solid #e5e7eb;color:var(--muted)}
  .q-btn-ghost:hover { border-color: #d1d5db;background: #f9fafb;color: #374151;box-shadow: var(--shadow-md);}
  .q-btn-ghost:disabled{background:#f3f4f6;border-color:#e5e7eb;color:#9ca3af;cursor:not-allowed;opacity:0.6;}
  .q-btn-ghost:disabled:hover{border-color:#e5e7eb;background:#f3f4f6;color:#9ca3af;box-shadow:none;}
  .q-footer{padding:18px 22px;border-top:1px solid #e5e7eb;display:flex;justify-content:space-between;align-items:center;gap:10px;flex-wrap:wrap}
  .progress-text{color:var(--grey-500);font-size:14px}
  /* Inline capture */
  .inline-capture,.post-capture{margin-top:0px;background:#fdf9f9;border:1px solid #e5e7eb;border-radius:12px;padding:20px}
  .capture-row{display:flex; flex-direction: column;gap:15px;margin-top: 1rem;}
  .input{border:1px solid #e5e7eb;border-radius:10px;padding:10px 12px;font:inherit;width: 100%;}
  .input:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(11,114,231,.15)}
  .ok{color:var(--ok)}
  .muted{color:var(--muted)}
  .reference-code-text{font-size:18px;font-weight:600;margin:12px 0 0 0;color:var(--text);}
  .reference-code-value{font-weight:700;color:var(--primary);}
  /* Result card */
  .result{padding:16px 6px}
  .pill{display:inline-flex;color:var(--text);font-weight:700;font-size:20px; margin-bottom: 10px;}
  .rec-title{font-size:26px;font-weight:800;margin:0px;color: var(--primary);}
  .rec-variant{font-size:22px;font-weight:600;margin:0 0 22px 0;color:var(--text);}
  .variant-value{font-weight:700;color:var(--primary);}
  .rec-answer-code{font-size:22px;font-weight:600;margin:0 0 22px 0;color:var(--text);}
  .answer-code-value{font-weight:700;color:var(--primary);}
  .reason{color:var(--muted);margin:0 0 12px}
  .features{margin:12px 0 2px;padding-left:18px}
  .features li{margin:6px 0}
  .cta-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
  .result .cta-row .q-btn{font-size:1.25rem;padding:8px 32px}
  .divider{height:1px;background:#d0d0d0;margin:24px 0}
  .sr{position:absolute;left:-9999px}
  @media (max-width:680px){
    .capture-row{grid-template-columns:1fr;gap:8px}
    .title{font-size:16px}
    .q-text{font-size:18px}
  }

/* ========================================
   FAQ PAGE STYLES
   ======================================== */

.faq-section {
  padding: 10px 0 20px 0;
}

.faq-categories {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.faq-category {
  margin-bottom: 3rem;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  /*border-bottom: 2px solid var(--primary-100);*/
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  width: 100%;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-200);
  background: linear-gradient(145deg, #fff1f1a1, #ffdede9c);
}

.faq-question {
  /*padding: 0.5rem 0.75rem;*/
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  min-height: auto;
}

/*.faq-question:hover {
  background: var(--primary-50);
}*/

.faq-question h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  flex: 1;
  padding-right: 1rem;
  text-align: left;
  line-height: 1.4;
}

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
  min-width: 24px;
  text-align: center;
}
.faq-item.open {
  background: linear-gradient(145deg, #fff1f1a1, #ffdede9c);
  border-color: var(--primary-200);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid transparent;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  border-top: 1px solid #ff9797;
  padding: 1rem 0rem;
  margin-top: .5rem;
}

.faq-answer p {
  margin: 0 0 1rem 0;
  color: var(--text);
  line-height: 1.6;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: var(--text);
}

.faq-answer li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-answer strong {
  color: var(--primary);
  font-weight: 600;
}

.contact-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--primary-100) 100%);
}

.contact-content {
  text-align: center;
  /*max-width: 600px;*/
  margin: 0 auto;
}

.contact-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-content p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 0rem;
  line-height: 1.6;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-actions .btn {
  min-width: 150px;
}

/* Experience Section */

.exp-section {
  margin-bottom: 0.5rem;
  margin-top: 1.75rem;
}

.exp-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted-dark);
  line-height: 1.4;
  margin: auto;
  padding: .6rem 1rem;
  text-align: center;
  background: white;
  border: 1px solid #d2d2d2;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  max-width: 550px;
}

.testimonial-section {
  /*background: white;*/
  /*border: 2px solid #e2e8f0;*/
  border-radius: 12px;
  padding: .5rem  2rem 0 2rem;
  margin-bottom: 0rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  /*box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);*/
}

.testimonial-content {
  position: relative;
  flex: 1;
  text-align: left;
}

.testimonial-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  text-align: left;
  margin-bottom: 0rem;
  font-style: italic;
  position: relative;
  border-left: #bcbcbc 1px solid;
  padding-left: 25px;
}

/*.testimonial-text p::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
  top: -20px;
  left: 10px;
  font-family: serif;
}*/

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.testimonial-main { padding: 2rem 0 1rem 0;}

.author-info {
  text-align: center;
}

.author-name {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.author-title {
  color: var(--muted);
  font-size: 0.9rem;
}

.author-logo {
  width: 96px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: white;*/
  border-radius: 8px;
  /*padding: 0.5rem;*/
  /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
  margin:0 auto;
}

.author-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0;
  }
  
  .faq-categories {
    max-width: 100%;
  }
  
  .faq-question {
    padding: 0.5rem;
  }
  
  .faq-question h3 {
    font-size: 0.9rem;
  }
  
  .faq-toggle {
    font-size: 1.25rem;
  }  
  .exp-section {
  margin-bottom: 0rem !important;
  margin-top: 0rem !important;
}


/* Hero Section in Left Column */
.hero-section { margin:0 auto;}

.hero-section .hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-align: left;
  line-height: 1.2;
}

.hero-section .hero-content .tdsman-red {
  color: var(--primary);
}

.hero-section .hero-content .hero-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.testimonial-text p {
  border-left: none !important;
  padding-left:0 !important;
  text-align:center !important;
}
.form-title {
    font-size: 1.55rem !important;
}

/* Form Layout Adjustments */
.main-content-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.right-column {
  position: sticky;
  top: 2rem;
  margin: 1.5rem auto !important;
}
.toggle-section {
    margin-bottom: 0.5rem !important;
}
.download-form {
    margin: 0 auto 0rem auto !important;
	min-width:280px !important;
}
.testimonial-main {
    padding: 0rem 0 0rem 0 !important;
}

.form-section {
  /*background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0;
  overflow: hidden;*/
}

  .contact-content h2 {
    font-size: 1.5rem;
  }
  
  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  /* Testimonial Responsive */
  .testimonial-section {
    padding: 1.5rem;
    margin-bottom: 0;
    max-width: 100%;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .testimonial-text p {
    font-size: 1.1rem;
  }

  .testimonial-author {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .author-logo {
    width: auto;
    height: 70px;
  }

  .experience-text {
    font-size: 0.8rem;
  }

  /* Hero Section Responsive */
  .hero-section .hero-content h1 {
    font-size: 2rem;
	text-align:center;
  }

  .hero-section .hero-content .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* Form Layout Responsive */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .right-column {
    position: static;
  }
  }
  
  .contact-actions .btn {
    width: 100%;
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .faq-question {
    padding: 0.4rem;
  }
  
  .faq-question h3 {
    font-size: 0.85rem;
    padding-right: 0.5rem;
  }
  
  .faq-toggle {
    font-size: 1.1rem;
    min-width: 20px;
  }
  
  .contact-content h2 {
    font-size: 1.25rem;
  }
  
  .contact-content p {
    font-size: 1rem;
  }
}
/* ========================================
   AWARDS & ACCOLADES PAGE STYLES
   ======================================== */

.awards-hero {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.awards-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.awards-hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.awards-section {
  padding: 1rem 0 4rem 0;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 0rem;
}

.award-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.award-image {
  width: auto;
  height: 225px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: white;*/
  /*border-radius: 8px;*/
  /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);*/
  /*padding: 12px;*/
}

.award-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.award-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0rem;
  line-height: 1.2;
}

.award-organization {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.award-date {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
}


.achievements-section {
  background: linear-gradient(145deg, #fff1f1a1, #ffdede9c);
  padding: 3rem 0 4rem 0;
}

.achievements-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.achievements-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  font-weight: 700;
}

.achievements-content p {
  font-size: 1.125rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.awards-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.awards-stat-item {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
}

.awards-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0rem;
}

.awards-stat-label {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.2;
}

/* Responsive Design for Awards Page */
@media (max-width: 768px) {
  .awards-hero {
    padding: 3rem 0;
  }

  .awards-hero h1 {
    font-size: 2rem;
  }

  .awards-section {
    padding: 2rem 0;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .award-card {
    padding: 1.5rem;
  }

  .achievements-section {
    padding: 2rem 0;
  }

  .achievements-content h2 {
    font-size: 1.5rem;
  }

  .awards-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .awards-stat-item {
    padding: 1.5rem;
  }

  .awards-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .awards-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   REGISTER SOFTWARE PAGE STYLES
   ======================================== */

.registration-steps-section {
  padding: 1rem 0;
  /*background: white;*/
}

.steps-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.step-item.active {
  opacity: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.step-item.active .step-number {
  background: var(--primary);
  color: white;
}

.step-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--muted);
  font-size: 0.875rem;
}

.registration-form-section {
  padding: 0 0 4rem 0;
}

.registration-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-step {
  display: none;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.form-step.active {
  display: block;
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--muted);
  font-size: 1rem;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
/*  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;*/
}

.completion-content {
  text-align: center;
}

.activation-number {
  background: #f8fafc;
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.activation-number label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.activation-display {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Courier New', monospace;
  letter-spacing: 2px;
}

.completion-message {
  margin-bottom: 2rem;
}

.completion-message h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.completion-message p {
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.next-steps {
  text-align: left;
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.next-steps h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.next-steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.next-steps li {
  padding: 0.5rem 0;
  color: var(--muted);
  position: relative;
  padding-left: 1.5rem;
}

.next-steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Responsive Design for Registration Page */
@media (max-width: 768px) {
  .steps-container {
    flex-direction: row;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
    flex: 1 1 0;
    min-width: 0;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .form-actions .btn {
    width: 100%;
  }
  
  .registration-form-container {
    margin: 0 1rem;
  }
  
  .form-step {
    padding: 1.5rem;
  }
  
  .activation-display {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .steps-container {
    gap: 0.5rem;
  }
  
  .step-item {
    gap: 0.4rem;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-content h3 {
    font-size: 1rem;
  }
  
  .step-content p {
    font-size: 0.8rem;
  }
  
  .form-step {
    padding: 1rem;
  }
  
  .form-header h2 {
    font-size: 1.7rem !important;
  }
  
  .activation-display {
    font-size: 1.25rem;
  }
}

/* ========================================
   PARTNERS NETWORK PAGE STYLES
   ======================================== */

.partners-network-section {
  padding: 1rem 0 3rem 0;
}

.state-accordion {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width:900px;
  margin: 0 auto 1rem;
}

.state-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #efefef 100%);
  cursor: pointer;
  transition: all 0.3s ease;
  /*border-bottom: 1px solid #cdcdcd;*/
}

.state-header:hover {
  background: linear-gradient(135deg, #f9e9e9a6 0%, #f7e0e0 100%);
}

.state-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  /*text-transform: uppercase;*/
  letter-spacing: 1px;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.state-content {
  padding: 0;
  background: white;
  transition: all 0.3s ease;
}

.city-section {
  margin-bottom: 2rem;
  padding: 0 2rem;
}

.city-section:first-child {
  padding-top: 2rem;
}

.city-section:last-child {
  padding-bottom: 0rem;
}

.city-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  padding-left: 1rem;
  /*border-left: 4px solid var(--primary);*/
}

.partner-card {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #d3d3d3;
}

.partner-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.partner-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.4;
  text-align:left;
}

.partner-address {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.partner-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-value a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-value a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Responsive Design for Partners Network Page */
@media (max-width: 768px) {
  .partners-network-section {
    padding: 2rem 0;
  }
  
  .state-accordion {
    margin-bottom: 0.75rem;
  }
  
  .state-header {
    padding: 1.25rem 1.5rem;
  }
  
  .state-title {
    font-size: 1.25rem;
  }
  
  .accordion-icon {
    width: 25px;
    height: 25px;
    font-size: 1.25rem;
  }
  
  .city-section {
    padding: 0 1.5rem;
  }
  
  .city-section:first-child {
    padding-top: 1.5rem;
  }
  
  .city-section:last-child {
    padding-bottom: 0rem;
  }
  
  .city-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  
  .partner-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .partner-name {
    font-size: 1rem;
  }
  
  .partner-address {
    font-size: 0.9rem;
  }
  
  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  
  .contact-label {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }
  
  .contact-value {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .partners-network-section {
    padding: 1.5rem 0;
  }
  
  .state-accordion {
    margin-bottom: 0.5rem;
  }
  
  .state-header {
    padding: 1rem 1.25rem;
  }
  
  .state-title {
    font-size: 1rem;
  }
  
  .accordion-icon {
    width: 22px;
    height: 22px;
    font-size: 1.125rem;
  }
  
  .city-section {
    padding: 0 1.25rem;
  }
  
  .city-section:first-child {
    padding-top: 1.25rem;
  }
  
  .city-section:last-child {
    padding-bottom: 1.25rem;
  }
  
  .city-title {
    font-size: 1rem;
    padding-left: 0.75rem;
    border-left-width: 3px;
  }
  
  .partner-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .partner-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }
  
  .partner-name {
    font-size: 0.95rem;
  }
  
  .partner-address {
    font-size: 0.85rem;
  }
  
  .contact-row {
    gap: 0.125rem;
  }
  
  .contact-label {
    font-size: 0.75rem;
  }
  
  .contact-value {
    font-size: 0.85rem;
  }
}

/* ========================================
   POPULAR CALCULATORS PAGE STYLES
   ======================================== */

.calculators-section {
  padding: 1rem 0 4rem 0;
}

.calculators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.calculator-card {
  background: white;
  border-radius: 16px;
  padding: 1.25rem .75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.calculator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.calculator-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.calculator-card:hover::before {
  transform: scaleX(1);
}

.calculator-icon {
  width: 66px;
  height: 66px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .75rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.calculator-card:hover .calculator-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.3);
}

.calculator-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.f-c-icon {
  width: 66px;
  height: 66px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .75rem;
  color: var(--primary);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 37, 37, 0.3);
}
.f-c-icon:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 25px rgba(225, 29, 72, 0.3);
}

.calculator-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .4rem;
  line-height: 1.4;
}

.calculator-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.25;
  margin: 0 1rem .85rem;
  flex: 1;
}

.calculator-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.calculator-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.calculator-link:hover {
  /*background: var(--primary-dark);*/
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(82, 82, 82, 0.42);
}

.calculator-link:hover::before {
  left: 100%;
}

/* Icon-only calculator link styles */
.calculator-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.calculator-link:hover svg {
  transform: translateX(2px);
}

/* Responsive Design for Calculators Page */
@media (max-width: 768px) {
  .calculators-section {
    padding: 2rem 0;
  }
  
  .calculators-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .calculator-card {
    padding: 1.5rem;
  }
  
  .calculator-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
  }
  
  .calculator-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  
  .calculator-description {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  
  .calculator-link {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .calculator-link svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 480px) {
  .calculators-grid {
    gap: 1.25rem;
    padding: 0 0.75rem;
  }
  
  .calculator-card {
    padding: 1.25rem;
  }
  
  .calculator-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .calculator-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .calculator-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .calculator-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  .calculator-link svg {
    width: 12px;
    height: 12px;
  }
}

/* Legal Content Section */
.legal-content-section {
  padding-bottom: 1rem;
  margin-bottom:1.5rem;
  line-height:1.25rem;
}
.legal-content-section p { line-height:1.25rem;}
.legal-content-section li { padding:8px 0;}

/* Channel Partner Application Form */
.form-section-c {
  padding: 1rem 0;
  /*background: #f8fafc;*/
}

.form-container-c {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.partner-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.required {
  color: #e11d48;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.checkbox-label,
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
  display: none;
}

.checkmark,
.radio-mark {
  width: 20px;
  height: 20px;
  border: 2px solid #c1c1c1;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.radio-mark {
  border-radius: 50%;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 12px;
}

.radio-label input[type="radio"]:checked + .radio-mark {
  background: var(--primary);
  border-color: var(--primary);
}

.radio-label input[type="radio"]:checked + .radio-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.verification-container {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.verification-container input {
  flex: 1;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.form-actions .btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

/* Responsive spacing for legal content */
@media (max-width: 768px) {
  .legal-content-section {
    padding-bottom: .5rem;
    margin-bottom: .5rem;
  }
}

@media (max-width: 480px) {
  .legal-content-section {
    padding-bottom: .5rem;
    margin-bottom: .5rem;
  }
}

/* Responsive styles for Channel Partner Form */
@media (max-width: 768px) {
  .form-section {
    padding: 0rem;
  }
  
  .form-container {
    padding: 2rem 0 0 0;
    margin: 0 1rem;
  }
  .form-container-c {
    padding: 2rem;
    margin: 0 1rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .checkbox-group,
  .radio-group {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .verification-container {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 480px) {
  .form-container-c {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.625rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .form-actions .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* end */
.clearout{height:20px;clear:both}#flexiselDemo1,#flexiselDemo2,#flexiselDemo3,#flexiselDemo4{display:none}.nbs-flexisel-container{position:relative;max-width:100%;margin:auto!important}.nbs-flexisel-ul{position:relative;width:9999px;margin:0;padding:0;list-style-type:none;text-align:center}.nbs-flexisel-inner{overflow:hidden;margin:auto;width:100%; height:100%; min-height:365px;}.nbs-flexisel-item{float:left;margin:0 auto;padding:0;cursor:default;position:relative;line-height:0}.nbs-flexisel-item img{position:relative;margin-top:10px;margin-bottom:10px;max-width:100%}.nbs-flexisel-nav-left,.nbs-flexisel-nav-right{width:22px;height:22px;position:absolute;cursor:default;z-index:100;opacity:.5}.nbs-flexisel-nav-left{left:10px}.nbs-flexisel-nav-right{right:10px}
.tst-w { width:100%; max-width:360px;}

/* ========================================
   INDUSTRY RECOGNITION SECTION
   ======================================== */

.industry-recognition-section {
  margin: 1.25rem 0;
}

.recognition-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  text-align: center;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 100%;
}

.recognition-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 1);
  border-radius: 8px;
  border: 1px solid rgba(125, 125, 125, 0.2);
  transition: all 0.3s ease;
}

.recognition-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.recognition-item-large {
  flex-direction: row !important;
  align-items: center;
  text-align: left;
  gap: .4rem;
}

.recognition-icon-large {
  width: 96px;
  height: auto;
  margin-bottom: 0;
  flex-shrink: 0;
}

.recognition-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recognition-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.recognition-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0rem 0;
}

.recognition-content p {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0 0 0.25rem 0;
}

.recognition-year {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.years-number {
  font-size: 3rem;
  font-weight: 900;
  color: #e11d48;
  line-height: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .content-grid {
    display: flex;
    flex-direction: column;
  }
  
  .left-column {
    order: 2;
  }
  
  .right-column {
    order: 1;
  }
  
  .recognition-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
  
  .recognition-item {
    padding: 0.5rem;
	width: 62%;
    margin: auto;
  }
  
  .recognition-icon {
    width: 32px;
    height: 32px;
  }
  
  .recognition-content h4 {
    font-size: 0.8rem;
  }
  
  .recognition-content p {
    font-size: 0.7rem;
  }
  
  .recognition-year {
    font-size: 0.7rem;
  }
  
  .tds-rate-chart-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  /* Reset grid-column for 2-column layout */
  .rate-chart-year:nth-last-child(2),
  .rate-chart-year:last-child {
    grid-column: auto;
  }
  
  /* Smaller text on mobile */
  .rate-chart-year h2 {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 480px) {
  .tds-rate-chart-content {
    grid-template-columns: 1fr;
  }
  
  /* Reset grid-column for 1-column layout */
  .rate-chart-year:nth-last-child(2),
  .rate-chart-year:last-child {
    grid-column: auto;
  }
  
  /* Even smaller text on very small mobile */
  .rate-chart-year h2 {
    font-size: 0.85rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .tds-rate-chart-content {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Center last 2 items in 3-column layout */
  .rate-chart-year:nth-last-child(2) {
    grid-column: 2;
  }
  
  .rate-chart-year:last-child {
    grid-column: 3;
  }
}
.google-maps{position:relative;height:auto;overflow:hidden;width:100%!important;margin-top:15px}.google-maps iframe{position:absolute;top:0;left:0;width:100%!important;height:100%!important;border:1px solid #9C9C9C}@media (min-width:992px){.google-maps{padding-bottom:80%}.google-maps iframe{padding:10px;border:1px solid #CCC!important}}@media (min-width:768px) and (max-width:991px){.google-maps{padding-bottom:40%}.google-maps iframe{padding:5px;border:1px solid #CCC!important}}@media (max-width:767px){.google-maps{padding-bottom:25%}.google-maps iframe{padding:2px;border:1px solid #CCC!important}}
.gtce { text-align:center; font-size:1.5rem; line-height:1; margin-bottom:2rem;}
.gtce a { color: #000;}
.gtce a:hover { text-decoration:underline;}
.ftwl { margin-left:85px;}
@media (max-width: 768px) { .gtce { font-size:1.2rem !important; line-height:1.4 !important; margin-top: 1rem;} }

@media (min-width: 769px) { .wbr { display:none;} .mbr { display:block;} }
@media (max-width: 768px) { .wbr { display:block;} .hero-ctas .btn-lg { min-width: 160px !important;} 
.hero-ctas .btn {padding: 0.75rem 1rem !important;  font-size: var(--text-xl) !important;} .mbr { display:none;} }	
@media (min-width: 481px) and (max-width: 769px) { .ftwl { margin-left:50px !important;}
.inner-hero h1 {
    font-size: 2.25rem !important;
    margin-bottom: .5rem !important;
  } }