/* ==========================================================================
   USYS Technology - Modern SaaS Design System (Linear / Stripe / Vercel style)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Color Palette */
  --color-brand-primary: #6366f1;
  --color-brand-primary-hover: #4f46e5;
  --color-brand-accent: #f97316;
  --color-brand-accent-hover: #ea580c;
  --color-brand-cyan: #06b6d4;
  --color-brand-blue: #3b82f6;

  /* Neutral Dark Theme */
  --bg-dark-base: #07090e;
  --bg-dark-surface: #0f172a;
  --bg-dark-card: #131c31;
  --bg-dark-card-hover: #1e293b;

  /* Neutral Light Theme (Glassmorphism) */
  --bg-light-base: #ffffff;
  --bg-light-surface: rgba(248, 250, 252, 0.75);
  --bg-light-card: rgba(255, 255, 255, 0.78);
  --bg-light-card-hover: rgba(241, 245, 249, 0.88);

  /* Text Colors */
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light-muted: #94a3b8;
  --text-white: #ffffff;

  /* Borders & Glass */
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(15, 23, 42, 0.75);
  --glass-border: rgba(255, 255, 255, 0.12);

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 12px 35px -10px rgba(99, 102, 241, 0.25);
  --shadow-accent-glow: 0 12px 35px -10px rgba(249, 115, 22, 0.25);

  /* Layout & Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --max-width: 1240px;
}

/* --- Base Reset & Global Styles --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--bg-light-base);
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  -webkit-font-smoothing: antialiased;
}

section,
[id] {
  scroll-margin-top: 100px;
}

body {
  overflow-x: hidden;
}

a {
  color: var(--color-brand-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--color-brand-primary-hover);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --- Utility Classes --- */
.text-gradient {
  background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-accent {
  background: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-dark {
  background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-dark {
  background-color: rgba(7, 9, 14, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--text-white);
}

.bg-dark-surface {
  background-color: rgba(15, 23, 42, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--text-white);
}

.bg-light-surface {
  background-color: rgba(248, 250, 252, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* --- Badges & Pills --- */
.badge-saas {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-saas-primary {
  background: rgba(99, 102, 241, 0.1);
  color: var(--color-brand-primary);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.badge-saas-accent {
  background: rgba(249, 115, 22, 0.1);
  color: var(--color-brand-accent);
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.badge-saas-dark {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  border: 1px solid var(--border-dark);
}

/* --- Buttons --- */
.btn-saas {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-saas-primary {
  background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-primary-hover) 100%);
  color: var(--text-white) !important;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

.btn-saas-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
  color: var(--text-white) !important;
}

.btn-saas-accent {
  background: linear-gradient(135deg, var(--color-brand-accent) 0%, var(--color-brand-accent-hover) 100%);
  color: var(--text-white) !important;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.btn-saas-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  color: var(--text-white) !important;
}

.btn-saas-secondary {
  background: var(--bg-light-base);
  color: var(--text-main) !important;
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-saas-secondary:hover {
  background: var(--bg-light-surface);
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.btn-saas-ghost {
  background: transparent;
  color: var(--text-white) !important;
  border-color: var(--border-dark);
}

.btn-saas-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Scoped override for Hero Sections (light background) */
.saas-hero .btn-saas-ghost,
.hero .btn-saas-ghost {
  color: var(--text-main) !important;
  border-color: #cbd5e1;
}

.saas-hero .btn-saas-ghost:hover,
.hero .btn-saas-ghost:hover {
  background: rgba(15, 23, 42, 0.06);
  border-color: #94a3b8;
  color: var(--text-main) !important;
}

.btn-saas-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-saas-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* --- Top Utility Bar --- */
.top-utility-bar {
  background-color: var(--bg-dark-base) !important;
  color: var(--text-light-muted);
  font-size: 0.8125rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  z-index: 1001;
}

.top-utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-utility-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.top-utility-social {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  list-style: none;
}

.top-utility-links a {
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  font-weight: 500;
}

.top-utility-links a:hover {
  color: var(--text-white);
  transform: translateY(-1px);
}

/* Icon Color Accents */
.top-utility-links .icon-phone {
  color: var(--color-brand-cyan);
  font-size: 0.95rem;
}

.top-utility-links .icon-whatsapp {
  color: #25d366;
  font-size: 1rem;
}

.top-utility-links .icon-email {
  color: var(--color-brand-accent);
  font-size: 0.95rem;
}

.top-utility-social a {
  color: #ffffff;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.top-utility-social a:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.top-utility-social a.social-fb:hover {
  color: #ffffff;
  background: #1877f2;
  border-color: #1877f2;
}

.top-utility-social a.social-insta:hover {
  color: #ffffff;
  background: #e1306c;
  border-color: #e1306c;
}

.top-utility-social a.social-yt:hover {
  color: #ffffff;
  background: #ff0000;
  border-color: #ff0000;
}

@media (max-width: 768px) {
  .top-utility-bar .container {
    justify-content: center;
  }

  .top-utility-links {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-utility-social {
    display: none;
  }
}


/* --- Navigation Header --- */
.saas-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  transform: translateZ(0);
}

.saas-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.saas-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.saas-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.saas-logo img {
  height: 42px;
  width: auto;
}

.saas-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

.saas-logo-text span {
  color: var(--color-brand-primary);
}

.saas-nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.saas-nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  position: relative;
}

.saas-nav-link:hover,
.saas-nav-link.active {
  color: var(--color-brand-primary);
}

.saas-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-brand-primary);
  border-radius: 2px;
}

.saas-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}

/* --- Hero Section --- */
.saas-hero {
  position: relative;
  padding: 5rem 0 6rem 0;
  /* Semi-transparent (not solid) so the site-wide animated network
     background shows through consistently on every page, matching the
     homepage. A soft white wash keeps hero text/images readable. */
  background: radial-gradient(100% 100% at 50% 0%, rgba(99, 102, 241, 0.08) 0%, rgba(255, 255, 255, 0) 100%), rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.saas-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-title {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  margin-top: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  letter-spacing: -0.035em;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-dark);
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.hero-mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-dark);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red {
  background-color: #ef4444;
}

.dot-yellow {
  background-color: #f59e0b;
}

.dot-green {
  background-color: #10b981;
}

.mockup-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mockup-stat-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  color: var(--text-white);
}

.mockup-stat-label {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  margin-bottom: 0.4rem;
}

.mockup-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-brand-cyan);
}

/* --- Section Formatting --- */
.section-saas {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.section-subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand-primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* --- Metrics Band --- */
.metrics-band {
  background: rgba(15, 23, 42, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 3.5rem 0;
  color: var(--text-white);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.metric-item {
  padding: 1rem;
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  font-weight: 500;
}

/* --- Feature & Capability Cards --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-light-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card .feature-link,
.feature-card .btn-saas,
.feature-card .feature-cta,
.feature-card>a {
  margin-top: auto !important;
  padding-top: 1.25rem;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.3);
  box-shadow: var(--shadow-glow);
}

.feature-card-dark {
  background: rgba(19, 28, 49, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-white);
}

.feature-card-dark:hover {
  background: rgba(30, 41, 59, 0.88);
  border-color: rgba(99, 102, 241, 0.4);
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(99, 102, 241, 0.1);
  color: var(--color-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.08);
}

.feature-title {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.feature-card-dark .feature-description {
  color: var(--text-light-muted);
}

.feature-link {
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- How it Works / Timeline Steps --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  position: relative;
  padding: 2rem;
  background: var(--bg-light-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(99, 102, 241, 0.2);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
}

/* --- Product Cards --- */
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.product-saas-card {
  background: var(--bg-light-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-saas-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.product-img-wrapper {
  width: 100%;
  height: 240px;
  background: rgba(241, 245, 249, 0.35);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-saas-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-saas-body {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-saas-body>.btn-saas,
.product-saas-body>a.btn-saas,
.product-saas-body>a {
  margin-top: auto !important;
  align-self: flex-start;
}

.product-badge {
  align-self: flex-start;
  margin-bottom: 0.75rem;
}

.product-saas-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.product-saas-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.product-spec-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.product-spec-list li {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.product-spec-list li i {
  color: var(--color-brand-primary);
}

/* --- Contact & Support Section --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-info-card {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
}

.contact-info-card h3 {
  color: var(--text-white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: var(--text-light-muted);
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-brand-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-details label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light-muted);
  letter-spacing: 0.05em;

}

.info-details p,
.info-details a {
  color: var(--text-white);
  font-size: 0.975rem;
  font-weight: 500;
}

.saas-form-card {
  background: var(--bg-light-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
}

.form-control-saas {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: var(--bg-light-surface);
  color: var(--text-main);
  transition: all 0.2s ease;
  outline: none;
}

.form-control-saas:focus {
  border-color: var(--color-brand-primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

textarea.form-control-saas {
  resize: vertical;
  min-height: 130px;
}

/* --- Footer --- */
.saas-footer {
  background: rgba(7, 9, 14, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--text-light-muted);
  padding: 5rem 0 2.5rem 0;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.footer-heading {
  color: var(--text-white);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light-muted);
  font-size: 0.925rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: var(--color-brand-primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

/* --- Mobile Drawer Navigation --- */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-white);
  z-index: 2000;
  padding: 2.5rem 2rem;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-dark);
}

.drawer-close-btn {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.drawer-menu {
  list-style: none;
  margin-bottom: 2rem;
}

.drawer-menu li {
  margin-bottom: 1.25rem;
}

.drawer-menu a {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-light-muted);
}

.drawer-menu a:hover,
.drawer-menu a.active {
  color: var(--color-brand-cyan);
}

/* --- Animations --- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Breakpoints --- */
@media (min-width: 993px) and (max-width: 1200px) {
  .saas-nav-menu {
    gap: 1.25rem;
  }
}

@media (max-width: 992px) {
  .saas-nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .saas-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section-saas {
    padding: 3.5rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(1.85rem, 6vw, 2.5rem);
  }

  .product-saas-body {
    padding: 1.25rem;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
    font-size: 26px;
  }
}

@media (max-width: 390px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .top-utility-links {
    gap: 0.75rem;
    font-size: 0.75rem;
  }

  .btn-saas {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* --- Floating WhatsApp Live-Chat Button --- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
  color: #ffffff !important;
}

/* --- Animated Gradient Mesh Hero Background --- */
@keyframes meshGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.saas-hero-mesh {
  background: linear-gradient(-45deg, rgba(99, 102, 241, 0.12), rgba(6, 182, 212, 0.08), rgba(249, 115, 22, 0.08), rgba(255, 255, 255, 0));
  background-size: 400% 400%;
  animation: meshGlow 15s ease infinite;
}

/* --- Browser Frame / Device Mockup Container --- */
.browser-mockup {
  border-radius: var(--radius-lg);
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-dark);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.browser-mockup:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.45);
}

.browser-address-bar {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 6px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-light-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-grow: 1;
  max-width: 320px;
}

/* --- Stagger Delays --- */
[data-stagger="1"] {
  transition-delay: 0.1s;
}

[data-stagger="2"] {
  transition-delay: 0.2s;
}

[data-stagger="3"] {
  transition-delay: 0.3s;
}

[data-stagger="4"] {
  transition-delay: 0.4s;
}

/* --- Accessibility: Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --- Trust Logo Bar --- */
.trust-bar {
  background: rgba(248, 250, 252, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.75rem 0;
}

.trust-flex {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0.75;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--color-brand-primary);
  font-size: 1.2rem;
}

/* --- FAQ Accordion --- */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-light-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: var(--color-brand-primary);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  color: var(--color-brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--color-brand-primary);
  color: #ffffff;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* --- Breadcrumbs --- */
.saas-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  justify-content: center;
}

.saas-breadcrumbs a {
  color: var(--text-muted);
}

.saas-breadcrumbs a:hover {
  color: var(--color-brand-primary);
}

.saas-breadcrumbs span {
  color: var(--text-main);
  font-weight: 600;
}

/* --- Partner & Client Logo Grid & Marquee --- */
.logo-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}

.logo-marquee-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.logo-marquee-container::-webkit-scrollbar {
  display: none;
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  background: var(--bg-light-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  min-width: 165px;
  max-width: 200px;
  height: 80px;
  flex-shrink: 0;
}

.logo-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-brand-primary);
  box-shadow: var(--shadow-md);
}

.logo-item img {
  max-height: 55px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
}


/* --- Hero Image Carousel Slider --- */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: flex-end;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
  padding: 1.25rem 1.5rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Main Content Anchor Target Offset --- */
#main-content {
  scroll-margin-top: 120px;
}

/* --- Back to Top Button --- */
.back-to-top-btn {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--color-brand-primary);
  color: #ffffff;
  border: 1px solid var(--color-brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background: #4f46e5;
  color: #ffffff;
  border-color: #4f46e5;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.45);
}

@media (max-width: 480px) {
  .back-to-top-btn {
    bottom: 80px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Expandable Partner Category Cards & Sub-type Accordion */
.expandable-card {
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  user-select: none;
}

.expandable-card:hover {
  border-color: var(--color-brand-cyan);
  box-shadow: var(--shadow-md);
}

.expandable-card:focus-visible {
  outline: 2px solid var(--color-brand-cyan);
  outline-offset: 2px;
}

.card-expand-icon {
  font-size: 0.95rem;
  color: var(--color-brand-cyan);
  transition: transform 0.3s ease;
}

.expandable-card.expanded .card-expand-icon {
  transform: rotate(180deg);
}

.card-expand-toggle-bar {
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--border-light);
  color: var(--color-brand-primary);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s ease;
}

.expandable-card:hover .card-expand-toggle-bar {
  color: var(--color-brand-cyan);
}

.card-expand-toggle-bar i {
  transition: transform 0.3s ease;
}

.expandable-card.expanded .card-expand-toggle-bar i {
  transform: rotate(180deg);
}

/* Accordion Container for Sub-types */
.card-subtype-accordion {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  padding: 0;
}

.expandable-card.expanded .card-subtype-accordion {
  opacity: 1;
  padding-top: 1rem;
}

.subtype-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  padding-top: 0.5rem;
}

.subtype-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.subtype-card>.btn-saas,
.subtype-card>a {
  margin-top: auto !important;
  align-self: flex-start;
}

.subtype-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(6, 182, 212, 0.4);
}

.subtype-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.subtype-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.subtype-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.subtype-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.subtype-features li i {
  color: var(--color-brand-cyan);
  margin-top: 0.15rem;
  font-size: 0.8rem;
}

/* --- Live Pulse Dot for Raise Request --- */
.raise-request-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.live-pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.live-pulse-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: raise-request-pulse 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes raise-request-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  100% {
    transform: translate(-50%, -50%) scale(3);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-pulse-dot::before {
    animation: none;
  }
}

/* ==========================================================================
   Site-Wide Canvas Particle Network Background
   ========================================================================== */
#bg-network-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  display: block;
}

/* Fallback Ambient Blob Styles */
.site-ambient-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  will-change: transform;
}

.ambient-blob-1 {
  width: 520px;
  height: 520px;
  top: -10%;
  left: -8%;
  background: var(--color-brand-primary);
  animation: ambientDrift1 28s ease-in-out infinite;
}

.ambient-blob-2 {
  width: 460px;
  height: 460px;
  top: 40%;
  right: -10%;
  background: var(--color-brand-cyan);
  animation: ambientDrift2 34s ease-in-out infinite;
}

.ambient-blob-3 {
  width: 400px;
  height: 400px;
  bottom: -12%;
  left: 30%;
  background: var(--color-brand-accent);
  animation: ambientDrift3 40s ease-in-out infinite;
}

@keyframes ambientDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 80px) scale(1.1); }
}

@keyframes ambientDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-70px, 50px) scale(1.15); }
}

@keyframes ambientDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -60px) scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-blob {
    animation: none;
  }
}

@media (max-width: 768px) {
  .ambient-blob {
    filter: blur(60px);
    opacity: 0.12;
  }
}

