/* ==========================================================================
   MANUAL2SOFT - PREMIUM BUSINESS DESIGN SYSTEM & STYLESHEET
   Aesthetics: Navibyte.in Inspired, Clean Slate & Radiant Sky Blue, Glassmorphic
   ========================================================================== */

/* -----------------------------
   1. Design Tokens & Variables
   ----------------------------- */
:root {
  --primary: #0284c7;             /* Radiant Sky Blue */
  --primary-hover: #0369a1;
  --primary-dark: #075985;
  --primary-light: #e0f2fe;
  --primary-gradient: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  --accent-gradient: linear-gradient(135deg, #0ea5e9 0%, #6366f1 100%);
  --glow-color: rgba(2, 132, 199, 0.25);
  
  --secondary: #0f172a;           /* Deep Slate / Midnight */
  --secondary-light: #1e293b;
  --accent: #10b981;              /* Emerald Green */
  --accent-light: #d1fae5;
  --warning: #f59e0b;             /* Amber */
  --warning-light: #fef3c7;
  
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-subtle: #f1f5f9;
  --border-color: #e2e8f0;
  --border-focus: #93c5fd;
  
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.09), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
  --shadow-primary: 0 10px 25px -5px rgba(2, 132, 199, 0.35);
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --container-max: 1280px;
}

[data-theme="dark"] {
  --bg-page: #090d16;
  --bg-card: #0f172a;
  --bg-subtle: #1e293b;
  --border-color: #334155;
  --border-focus: #38bdf8;
  
  --text-main: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #94a3b8;
  --text-light: #64748b;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 28px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.7);
}

[data-theme="dark"] .header {
  background: rgba(15, 23, 42, 0.95) !important;
  border-bottom-color: rgba(51, 65, 85, 0.8) !important;
}

[data-theme="dark"] .top-bar {
  background: #050810 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[data-theme="dark"] .hero {
  background-color: #090d16 !important;
}

[data-theme="dark"] .service-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .portfolio-card,
[data-theme="dark"] .client-card-item,
[data-theme="dark"] .calc-option,
[data-theme="dark"] .calc-checkbox-item,
[data-theme="dark"] .form-card,
[data-theme="dark"] .value-card,
[data-theme="dark"] .perk-card,
[data-theme="dark"] .job-card,
[data-theme="dark"] .tech-item {
  background: #0f172a !important;
  border-color: #334155 !important;
  color: #f8fafc !important;
}

[data-theme="dark"] .nav-link {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .nav-link:hover,
[data-theme="dark"] .nav-link.active {
  color: #38bdf8 !important;
  background-color: rgba(56, 189, 248, 0.12) !important;
}

[data-theme="dark"] .trust-item {
  background: #0f172a !important;
  border-color: #334155 !important;
  color: #cbd5e1 !important;
}

[data-theme="dark"] .mobile-drawer {
  background: #0f172a !important;
  color: #f8fafc !important;
}

[data-theme="dark"] .drawer-link {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .service-title,
[data-theme="dark"] .client-name-text,
[data-theme="dark"] .section-title,
[data-theme="dark"] .brand-title-main {
  color: #ffffff !important;
}

[data-theme="dark"] .brand-subtitle-tag {
  color: #38bdf8 !important;
}

.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: var(--bg-subtle);
  border-color: var(--primary);
  color: var(--primary);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.bg-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(2, 132, 199, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  overflow: hidden;
}

.ambient-glow-top {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 960px;
  max-width: 100vw;
  height: 520px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.16) 0%, rgba(37, 99, 235, 0.08) 50%, transparent 80%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-right {
  position: absolute;
  top: 350px;
  right: -120px;
  width: 550px;
  max-width: 100vw;
  height: 550px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 768px) {
  .ambient-glow-top {
    width: 100%;
    left: 0;
    transform: none;
  }
  .ambient-glow-right {
    display: none;
  }
}

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

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

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

button {
  cursor: pointer;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  z-index: 1;
}

/* -----------------------------
   3. Sections, Badges & Buttons
   ----------------------------- */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section-subtle {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: rgba(2, 132, 199, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
  color: var(--text-main);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(2, 132, 199, 0.45);
  color: var(--text-white) !important;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: var(--border-focus);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-white);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

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

.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
}

.badge-primary {
  background: rgba(2, 132, 199, 0.1);
  color: var(--primary);
  border: 1px solid rgba(2, 132, 199, 0.2);
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-live {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-size: 0.75rem;
  padding: 3px 10px;
  font-weight: 700;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #10b981;
  position: relative;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background-color: #10b981;
  animation: pulse-ring 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.8; }
  70% { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* -----------------------------
   4. Header & Navigation
   ----------------------------- */
.top-bar {
  background: #0b1329;
  color: #cbd5e1;
  font-size: 0.84rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 101;
  line-height: 1.4;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.top-bar-link svg {
  color: #38bdf8;
  flex-shrink: 0;
}

.top-bar-link:hover {
  color: #38bdf8;
}

.top-bar-badges {
  display: flex;
  gap: 16px;
  align-items: center;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all var(--transition-normal);
}

.header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #0284c7 25%, #38bdf8 50%, #10b981 75%, transparent 100%);
  opacity: 0.85;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

.brand-logo-symbol {
  height: 44px;
  width: auto;
  max-width: 78px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(2, 132, 199, 0.2));
}

.brand-logo-symbol-sm {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title-main {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.6px;
  line-height: 1;
}

.brand-title-num {
  color: var(--primary);
}

.brand-subtitle-tag {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 3px;
  line-height: 1;
}

/* Footer Brand Styling */
.footer-brand-logo .brand-title-main {
  color: #ffffff;
}

.footer-brand-logo .brand-title-num {
  color: #38bdf8;
}

.footer-brand-logo .brand-subtitle-tag {
  color: #94a3b8;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background-color: rgba(2, 132, 199, 0.06);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 4px;
}

.nav-link svg {
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Mega Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 580px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-color);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--transition-normal);
  z-index: 100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.dropdown-card:hover {
  background: var(--bg-subtle);
  transform: translateY(-1px);
}

.dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.dropdown-content h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-main);
}

.dropdown-content p {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-subtle);
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--bg-card);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  z-index: 200;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

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

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

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

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
}

.drawer-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-main);
}

.drawer-link:hover, .drawer-link.active {
  background: var(--bg-subtle);
  color: var(--primary);
}

/* -----------------------------
   5. Hero Section (Ultra-Polished 2-Column Layout)
   ----------------------------- */
.hero-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero {
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #f8fafc;
  background-image: 
    radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(16, 185, 129, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(2, 132, 199, 0.08) 0%, transparent 50%),
    linear-gradient(to right, rgba(2, 132, 199, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(2, 132, 199, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  animation: heroGridShift 30s ease-in-out infinite alternate;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 8%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.18) 0%, rgba(56, 189, 248, 0.06) 50%, transparent 70%);
  filter: blur(70px);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: floatGlowLeft 14s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 5%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(2, 132, 199, 0.06) 50%, transparent 70%);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  animation: floatGlowRight 16s ease-in-out infinite alternate;
}

@keyframes heroGridShift {
  0% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0 0, 0 0;
  }
  100% {
    background-position: 40% 30%, -20% 70%, 20% 80%, 40px 40px, 40px 40px;
  }
}

@keyframes floatGlowLeft {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(45px, -30px) scale(1.12);
  }
  100% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

@keyframes floatGlowRight {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-50px, 35px) scale(1.15);
  }
  100% {
    transform: translate(25px, -15px) scale(0.92);
  }
}

.floating-card-anim {
  animation: cardFloatAnim 4s ease-in-out infinite alternate;
}

@keyframes cardFloatAnim {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge-wrap {
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.14;
  margin-bottom: 18px;
  color: var(--text-main);
}

.hero-title-highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
  font-size: 0.82rem;
  color: var(--text-body);
  font-weight: 500;
}

.trust-icon-check {
  color: #10b981;
  flex-shrink: 0;
}

/* -----------------------------
   6. Visual Showcase & Overlays
   ----------------------------- */
.visual-showcase-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(226, 232, 240, 0.8);
  background: #0f172a;
  height: 480px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
}

.visual-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.6s ease;
}

.visual-showcase-wrap:hover .visual-showcase-img {
  transform: scale(1.03);
}

.visual-overlay-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* -----------------------------
   7. Page Banner & Breadcrumbs
   ----------------------------- */
.page-banner {
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-subtle) 100%);
  padding: 44px 0 48px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.page-banner-dark {
  background: linear-gradient(135deg, #090e17 0%, #0f172a 50%, #1e293b 100%);
  padding: 52px 0 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb-link:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  color: var(--text-light);
}

.breadcrumb-current {
  color: var(--text-main);
  font-weight: 700;
}

.page-title {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--text-main);
}

.page-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.6;
}

/* Dark Page Banner High-Contrast Styles */
.page-banner-dark .page-title,
.page-banner[style*="background"] .page-title {
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.page-banner-dark .page-subtitle,
.page-banner[style*="background"] .page-subtitle {
  color: #cbd5e1 !important;
}

.page-banner-dark .breadcrumb-link,
.page-banner[style*="background"] .breadcrumb-link {
  color: #94a3b8 !important;
}

.page-banner-dark .breadcrumb-link:hover,
.page-banner[style*="background"] .breadcrumb-link:hover {
  color: #38bdf8 !important;
}

.page-banner-dark .breadcrumb-sep,
.page-banner[style*="background"] .breadcrumb-sep {
  color: #64748b !important;
}

.page-banner-dark .breadcrumb-current,
.page-banner[style*="background"] .breadcrumb-current {
  color: #38bdf8 !important;
  font-weight: 700;
}

/* -----------------------------
   8. Client Logos & Trust Showcase
   ----------------------------- */
.client-logos-section {
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-subtle) 100%);
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.client-logos-header {
  text-align: center;
  margin-bottom: 32px;
}

.client-logos-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  background: rgba(2, 132, 199, 0.08);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 8px;
  border: 1px solid rgba(2, 132, 199, 0.15);
}

.client-logos-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.4px;
}

.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.client-card-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: all var(--transition-normal);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.client-card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: var(--primary-gradient);
  transition: height var(--transition-fast);
}

.client-card-item:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 0 16px 32px -8px rgba(2, 132, 199, 0.2);
  background: #ffffff;
}

.client-card-item:hover::before {
  height: 100%;
}

.client-logo-avatar {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  transition: transform var(--transition-fast);
}

.client-card-item:hover .client-logo-avatar {
  transform: scale(1.06);
}

.client-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
}

.client-info-block {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex-grow: 1;
  gap: 3px;
}

.client-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.client-name-text {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.client-link-icon {
  font-size: 0.9rem;
  color: var(--primary);
  opacity: 0.75;
  flex-shrink: 0;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.client-card-item:hover .client-link-icon {
  opacity: 1;
  transform: translate(3px, -3px);
}

.client-category-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: #0284c7;
  background: rgba(2, 132, 199, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  width: fit-content;
  max-width: 100%;
}

.client-desc-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}

.client-logo-name {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* -----------------------------
   9. Domain Knowledge & Insights Callout
   ----------------------------- */
.knowledge-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 44px;
  margin: 10px 0 40px;
  box-shadow: var(--shadow-xl);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.knowledge-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.knowledge-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #38bdf8;
  letter-spacing: 0.5px;
}

.knowledge-card h4 {
  color: #ffffff;
  font-size: 1.12rem;
  margin-bottom: 4px;
}

.knowledge-card p {
  color: #94a3b8;
  font-size: 0.86rem;
  line-height: 1.55;
}

/* -----------------------------
   10. Portfolio & Case Studies Cards
   ----------------------------- */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

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

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(2, 132, 199, 0.3);
}

.case-preview {
  min-height: 220px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  padding: 20px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.case-preview-bg-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.25) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.case-preview-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
}

.case-client-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.case-preview-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.case-client-identity {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  min-width: 0;
}

.case-avatar-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  overflow: hidden;
  padding: 6px;
}

.case-avatar-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.case-identity-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.case-preview-title {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.case-preview-url {
  color: #38bdf8;
  font-size: 0.82rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.case-screenshot-mockup {
  width: 230px;
  height: 142px;
  background: #0f172a;
  border-radius: 10px 10px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: none;
  box-shadow: -6px -4px 24px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.case-card:hover .case-screenshot-mockup {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: -8px -6px 30px rgba(2, 132, 199, 0.3);
}

.browser-bar {
  height: 18px;
  background: #1e293b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
  flex-shrink: 0;
}

.browser-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.browser-dot:nth-child(1) { background: #ef4444; }
.browser-dot:nth-child(2) { background: #f59e0b; }
.browser-dot:nth-child(3) { background: #10b981; }

.case-screenshot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
}

.case-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-category {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.case-headline {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
}

.case-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.case-problem-solution-box {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 18px;
  font-size: 0.85rem;
  line-height: 1.45;
}

.case-problem-solution-box strong {
  color: var(--text-main);
}

.case-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 18px;
}

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

.highlight-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
}

.highlight-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
}

.case-tech-stack {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tech-tag {
  background: var(--bg-subtle);
  color: var(--text-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.case-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* -----------------------------
   11. Services Grid
   ----------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(2, 132, 199, 0.25);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-features {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.service-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-body);
  font-weight: 500;
}

/* -----------------------------
   12. Calculator & Pricing Grid
   ----------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1140px;
  margin: 0 auto 60px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-xl), 0 0 30px rgba(2, 132, 199, 0.15);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-tier-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-tier-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 40px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 6px;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
}

.calculator-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xl);
  padding: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.calc-step {
  margin-bottom: 32px;
}

.calc-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.calc-option {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: var(--bg-page);
}

.calc-option:hover {
  border-color: var(--primary-hover);
  background: var(--primary-light);
}

.calc-option.selected {
  border-color: var(--primary);
  background: rgba(2, 132, 199, 0.08);
  box-shadow: 0 0 0 1px var(--primary);
}

.calc-option-icon {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.calc-option-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.calc-option-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.calc-checkboxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.calc-checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--bg-card);
  transition: all var(--transition-fast);
}

.calc-checkbox-item:hover {
  background: var(--bg-subtle);
  border-color: rgba(2, 132, 199, 0.4);
}

.calc-checkbox-item.checked {
  border-color: #0284c7;
  background: rgba(2, 132, 199, 0.06);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.08);
}

.custom-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.calc-checkbox-item.checked .custom-checkbox {
  background: #0284c7;
  border-color: #0284c7;
}

.calc-result-box {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.calc-result-info {
  display: flex;
  flex-direction: column;
}

.calc-result-label {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
}

.calc-result-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #38bdf8;
}

.calc-result-timeline {
  font-size: 0.85rem;
  color: #cbd5e1;
}

/* -----------------------------
   13. Career, Perks & Openings
   ----------------------------- */
.career-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.perk-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

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

.perk-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.perk-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.job-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(2, 132, 199, 0.35);
}

.job-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.job-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.job-tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  color: var(--text-muted);
}

/* -----------------------------
   14. About Page & Values
   ----------------------------- */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 48px 0;
}

.about-stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.about-stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 6px;
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.value-card h3 {
  font-size: 1.25rem;
  margin: 14px 0 8px;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -----------------------------
   15. Tech & Service Explorer Tabs
   ----------------------------- */
.tech-tabs-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tech-tab-btn {
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tech-tab-btn.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.tech-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 22px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all var(--transition-fast);
}

.tech-item:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.tech-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
}

.tech-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

/* -----------------------------
   16. Contact & Forms
   ----------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-info-card {
  background: #0f172a;
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-info-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.contact-info-desc {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #38bdf8;
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
}

.contact-method-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

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

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-page);
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

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

/* -----------------------------
   17. Footer
   ----------------------------- */
.footer {
  background: #070c18;
  color: #94a3b8;
  padding: 70px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 20px;
  max-width: 360px;
}

.footer-col-title {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.2px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: #cbd5e1;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1.4;
}

.footer-link:hover {
  color: #38bdf8;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 16px;
}

/* -----------------------------
   18. Floating Buttons, Modals & Toast
   ----------------------------- */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.float-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-fast);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-whatsapp {
  background: #25d366;
}

.float-top {
  background: var(--secondary);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.float-top.visible {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.modal-content {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: translateY(20px);
  transition: transform var(--transition-smooth);
}

.modal.open .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.modal-close:hover {
  background: #fee2e2;
  color: #ef4444;
}

.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-left: 4px solid var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  animation: slideInRight 0.3s ease;
}

.toast.success { border-left-color: #10b981; }
.toast.error { border-left-color: #ef4444; }

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* -----------------------------
   19. Responsive Breakpoints & Mobile Optimization
   ----------------------------- */
@media (max-width: 1150px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .career-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
  .client-logos-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr !important;
  }
}

.office-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media (max-width: 900px) {
  .nav-menu, .top-bar-badges, .header-cta {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
  }
  .hero {
    padding: 24px 0 40px !important;
  }
  .hero-grid {
    grid-template-columns: 1fr !important;
    align-items: flex-start !important;
    gap: 28px !important;
  }
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .client-logos-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .portfolio-grid {
    grid-template-columns: 1fr !important;
  }
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .calc-options-grid, .calc-checkboxes-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .office-showcase-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  /* Container & Global Spacing */
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding: 50px 0;
  }

  /* Top Bar */
  .top-bar {
    padding: 6px 0;
  }
  .top-bar-inner {
    justify-content: center;
  }
  .top-bar-links {
    justify-content: center;
    gap: 12px;
    font-size: 0.75rem;
    flex-wrap: wrap;
  }

  /* Header & Brand Logo */
  .navbar {
    height: 64px;
  }
  .brand-logo {
    gap: 8px;
    max-width: calc(100% - 52px);
  }
  .brand-logo-symbol {
    height: 36px;
    max-width: 52px;
  }
  .brand-title-main {
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: -0.4px;
  }
  .brand-subtitle-tag {
    font-size: 0.52rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-toggle {
    width: 42px;
    height: 42px;
    padding: 8px;
    flex-shrink: 0;
  }

  /* Hero Section */
  .hero {
    padding: 16px 0 32px !important;
  }
  .hero-grid {
    grid-template-columns: 1fr !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  .hero-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  .hero-badge-wrap {
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    width: 100%;
  }
  .hero-badge-wrap .badge {
    font-size: 0.72rem;
    padding: 6px 12px;
    white-space: normal;
    text-align: left;
    line-height: 1.35;
    display: inline-flex;
  }
  .hero-title {
    font-size: 2.05rem;
    letter-spacing: -0.6px;
    line-height: 1.16;
    word-break: break-word;
    margin-bottom: 12px;
  }
  .hero-title br {
    display: none;
  }
  .hero-subtitle {
    font-size: 0.98rem;
    line-height: 1.45;
    margin-bottom: 10px;
  }
  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    margin-bottom: 22px;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 24px;
    padding-right: 0;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 16px;
    font-size: 0.92rem;
  }
  .hero-trust-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 16px;
  }
  .trust-item {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.78rem;
    padding: 8px 12px;
  }

  /* Visual Showcases */
  .visual-showcase-wrap {
    border-radius: var(--radius-lg);
    min-height: 340px !important;
    height: 380px !important;
  }
  .visual-overlay-badge {
    position: static;
    margin: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 14px;
  }

  /* Client Logos Showcase */
  .client-logos-section {
    padding: 36px 0 44px;
  }
  .client-logos-header {
    margin-bottom: 24px;
  }
  .client-logos-title {
    font-size: 1.32rem;
    letter-spacing: -0.3px;
  }
  .client-logos-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .client-card-item {
    padding: 12px 14px;
    gap: 12px;
  }
  .client-logo-avatar {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    padding: 5px;
  }
  .client-name-text {
    font-size: 0.9rem;
  }
  .client-category-tag {
    font-size: 0.68rem;
  }
  .client-desc-sub {
    font-size: 0.72rem;
  }

  /* Section Typography */
  .page-title {
    font-size: 1.85rem;
  }
  .page-subtitle {
    font-size: 0.92rem;
  }
  .section-title {
    font-size: 1.7rem;
    letter-spacing: -0.4px;
  }
  .section-desc {
    font-size: 0.92rem;
  }
  .section-header {
    margin-bottom: 32px;
  }

  /* Services Grid - Horizontal Touch Scroll Carousel on Mobile */
  .services-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 16px !important;
    padding: 4px 4px 22px !important;
    width: 100% !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin;
  }
  .services-grid::-webkit-scrollbar {
    height: 4px;
  }
  .services-grid::-webkit-scrollbar-thumb {
    background: rgba(2, 132, 199, 0.4);
    border-radius: 4px;
  }
  .service-card {
    flex: 0 0 88% !important;
    min-width: 280px !important;
    scroll-snap-align: start !important;
    padding: 22px 18px;
    border-radius: var(--radius-lg);
  }
  .service-title {
    font-size: 1.22rem !important;
    word-break: break-word;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  .service-desc {
    font-size: 0.88rem;
    line-height: 1.5;
  }
  .service-card .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 14px;
    padding: 11px 16px;
    font-size: 0.88rem;
  }

  /* Knowledge Banner */
  .knowledge-banner {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
    margin: 10px 0 24px;
  }
  .knowledge-banner h2 {
    font-size: 1.45rem !important;
  }
  .knowledge-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }
  .knowledge-card {
    padding: 16px;
  }

  /* Portfolio & Case Studies */
  .portfolio-filters {
    gap: 6px;
    margin-bottom: 24px;
  }
  .filter-btn {
    font-size: 0.76rem;
    padding: 6px 14px;
  }
  .case-card {
    border-radius: var(--radius-lg);
  }
  .case-preview {
    height: auto;
    min-height: auto;
    padding: 16px 16px 0;
  }
  .case-preview-content {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .case-client-identity {
    margin-bottom: 0;
    gap: 12px;
  }
  .case-avatar-box {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    padding: 4px;
  }
  .case-preview-title {
    font-size: 1.1rem;
  }
  .case-screenshot-mockup {
    width: 100%;
    height: 135px;
    border-radius: 8px 8px 0 0;
    transform: none !important;
  }
  .case-body {
    padding: 20px 16px;
  }
  .case-headline {
    font-size: 1.12rem;
  }
  .case-desc {
    font-size: 0.86rem;
  }
  .case-problem-solution-box {
    padding: 12px;
    font-size: 0.82rem;
  }
  .case-highlights {
    gap: 8px;
    padding: 10px 12px;
  }
  .highlight-val {
    font-size: 0.95rem;
  }
  .highlight-lbl {
    font-size: 0.68rem;
  }
  .case-actions {
    flex-direction: column;
    gap: 8px;
  }
  .case-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Tech Tabs Explorer */
  .tech-tabs-wrap {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding-bottom: 8px;
    gap: 6px;
  }
  .tech-tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.78rem;
    padding: 8px 14px;
  }
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tech-card {
    padding: 18px 16px;
  }

  /* Pricing & Calculator */
  .pricing-card {
    padding: 24px 18px;
  }
  .calculator-card {
    padding: 18px 14px;
    border-radius: var(--radius-lg);
  }
  .calc-step-title {
    font-size: 0.98rem;
  }
  .calc-options-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .calc-scale-grid {
    grid-template-columns: 1fr !important;
  }
  .calc-option {
    padding: 14px 16px;
  }
  .calc-checkboxes-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .calc-checkbox-item {
    padding: 14px 16px;
  }
  .calc-result-box {
    padding: 18px 14px;
    border-radius: var(--radius-md);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .calc-result-price {
    font-size: 1.45rem;
  }
  .calc-result-box .btn {
    width: 100%;
    justify-content: center;
  }

  /* Office Showcase */
  .office-showcase-grid > div:first-child {
    padding: 24px 16px !important;
  }

  /* About & Career */
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .about-stat-card {
    padding: 18px;
  }
  .perks-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Contact Form */
  .form-card {
    padding: 22px 16px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .contact-info-card {
    padding: 22px 16px;
  }

  /* Footer */
  .footer {
    padding: 44px 0 24px;
  }
  .footer-top {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .footer-brand p {
    max-width: 100% !important;
    font-size: 0.88rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    align-items: center;
  }

  /* Floating Actions */
  .floating-actions {
    bottom: 14px;
    right: 14px;
    gap: 8px;
  }
  .float-whatsapp {
    width: 48px;
    height: 48px;
  }
  .float-whatsapp svg {
    width: 24px;
    height: 24px;
  }
  .float-top {
    width: 40px;
    height: 40px;
  }

  /* Modal */
  .modal {
    padding: 12px;
  }
  .modal-content {
    padding: 22px 16px;
    border-radius: var(--radius-lg);
    max-height: 88vh;
  }
}
