/* ==========================================================================
   RISHABH GEHLOT — SENIOR TECH PARTNER & ARCHITECT
   Design System: Deep Space Slate / Linear & Vercel Aesthetic
   Fully Responsive (320px to 1440px+), High CRO, Zero Horizontal Overflow
   ========================================================================== */

:root {
  /* Surface & Background */
  --bg-main: #08090d;
  --bg-surface: #0e1118;
  --bg-surface-elevated: #141824;
  --bg-card: rgba(16, 20, 31, 0.72);
  --bg-card-hover: rgba(22, 28, 44, 0.88);
  --bg-glass: rgba(255, 255, 255, 0.03);

  /* Borders & Highlights */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.14);
  --border-focus: rgba(99, 102, 241, 0.5);
  --border-glow: rgba(99, 102, 241, 0.3);
  --specular-shine: inset 0 1px 0 0 rgba(255, 255, 255, 0.12);

  /* Brand Accents */
  --accent-primary: #6366f1;
  --accent-primary-hover: #4f46e5;
  --accent-cyan: #06b6d4;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;
  --accent-whatsapp: #22c55e;
  
  /* Gradients */
  --grad-brand: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  --grad-text: linear-gradient(180deg, #ffffff 15%, #cbd5e1 100%);
  --grad-heading-accent: linear-gradient(135deg, #ffffff 20%, #a5b4fc 60%, #38bdf8 100%);
  --grad-primary-btn: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
  --grad-card-glow: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 70%);

  /* Typography */
  --text-main: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dim: #475569;
  
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 45px -15px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 35px -5px rgba(99, 102, 241, 0.25);
  --shadow-emerald: 0 0 30px -5px rgba(16, 185, 129, 0.3);

  /* Layout & Sizing */
  --container-max: 1180px;
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.22s var(--ease);
}

/* ==========================================================================
   GLOBAL RESET & ACCESSIBILITY
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 15px;
  background-color: var(--bg-main);
  color: var(--text-main);
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: var(--font-sans);
  line-height: 1.6;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 100% 30%, rgba(6, 182, 212, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 0% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 40%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 64px;
}

@media (min-width: 769px) {
  body {
    padding-bottom: 0;
  }
}

img, svg, video, canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

p, span, a, h1, h2, h3, h4, h5, h6, button, li, td, th {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* ==========================================================================
   UTILITIES & CONTAINERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.text-center { text-align: center; }
.code-font { font-family: var(--font-mono); font-size: 0.82rem; }

.gradient-text {
  background: var(--grad-heading-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md), var(--specular-shine);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg), 0 0 25px -5px rgba(99, 102, 241, 0.15), var(--specular-shine);
}

/* Sleek Badge & Sub-header */
.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.22);
  border-radius: var(--radius-full);
  color: #a5b4fc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sub-badge svg {
  width: 13px;
  height: 13px;
  color: #818cf8;
}

.section-header {
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 48px;
  }
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #ffffff;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.45rem;
  }
}

.section-desc {
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   BUTTONS (PREMIUM MODERN FEEL)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  touch-action: manipulation;
  user-select: none;
  line-height: 1.3;
}

.btn svg {
  flex-shrink: 0;
}

.btn-primary {
  background: var(--grad-primary-btn);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35), var(--specular-shine);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.48), var(--specular-shine);
}

.btn-whatsapp {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.15);
}

.btn-whatsapp:hover {
  background: #22c55e;
  color: #041f0d;
  border-color: #22c55e;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-medium);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-sm {
  padding: 7px 13px;
  font-size: 0.8rem;
  border-radius: var(--radius-xs);
}

.btn-lg {
  padding: 13px 24px;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.pulse-glow {
  position: relative;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR (SUBTLE & REFINED)
   ========================================================================== */
.top-announcement {
  background: rgba(14, 17, 24, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  padding: 6px 0;
  width: 100%;
  position: relative;
  z-index: 101;
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.urgency-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  white-space: nowrap;
}

.urgency-text {
  font-weight: 500;
  color: #e2e8f0;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  box-shadow: 0 0 8px var(--accent-emerald);
  animation: pulseLight 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseLight {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.announcement-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(99, 102, 241, 0.12);
  color: #a5b4fc;
  font-weight: 600;
  font-size: 0.7rem;
  white-space: nowrap;
}

.text-link {
  color: #38bdf8;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.text-link:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .top-announcement {
    padding: 6px 0;
  }

  .announcement-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    text-align: center;
  }

  .urgency-tag {
    justify-content: center;
    font-size: 0.72rem;
  }

  .announcement-badge {
    display: none;
  }

  .announcement-cta {
    justify-content: center;
    font-size: 0.72rem;
  }

  .cta-phone-label {
    display: none;
  }
}

/* ==========================================================================
   NAVBAR (CLEAN, MINIMAL & STICKY)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 9, 13, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
  width: 100%;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  flex-shrink: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-xs);
  background: var(--grad-primary-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
}

.brand-name {
  color: #ffffff;
}

.brand-highlight {
  color: var(--accent-cyan);
}

.role-badge {
  font-size: 0.65rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

@media (max-width: 480px) {
  .role-badge {
    display: none;
  }
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 24px;
}

@media (min-width: 920px) {
  .nav-menu {
    display: flex;
  }
}

@media (max-width: 919px) {
  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 13, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    z-index: 150;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  }
}

.nav-link {
  font-size: 0.86rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link.highlight {
  color: #38bdf8;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .header-actions .btn-whatsapp-nav {
    display: none;
  }
}

.mobile-toggle {
  display: block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  color: var(--text-main);
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 920px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-nav-panel {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  width: 100%;
  background: rgba(10, 12, 18, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 14px;
  z-index: 99;
}

.mobile-nav-panel.open {
  display: flex;
}

.mobile-nav-panel .nav-link {
  font-size: 1.05rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   HERO SECTION (ELEGANT SILICON VALLEY / BENTO ARCHITECTURE)
   ========================================================================== */
.hero-section {
  padding: 44px 0 54px;
  width: 100%;
  position: relative;
}

@media (min-width: 920px) {
  .hero-section {
    padding: 72px 0 80px;
  }
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

@media (min-width: 960px) {
  .hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
  }
}

.hero-content {
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 11px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: var(--radius-full);
  color: #34d399;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 11px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.74rem;
  font-weight: 500;
}

.rating-badge svg {
  width: 14px;
  height: 14px;
  color: #38bdf8;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin-bottom: 18px;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.1rem;
    line-height: 1.14;
  }
}

.hero-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-subtitle strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 540px) {
  .hero-cta-group {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
}

.btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-text strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.btn-text small {
  font-size: 0.72rem;
  opacity: 0.8;
  font-weight: 400;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  color: #34d399;
}

/* ==========================================================================
   HERO APP MOCKUP CARD (ELEGANT DEVICE SHOWCASE)
   ========================================================================== */
.hero-visual {
  width: 100%;
}

.hero-app-mockup-card {
  position: relative;
  background: rgba(14, 18, 28, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: 
    0 25px 50px -15px rgba(0, 0, 0, 0.85),
    0 0 35px -5px rgba(99, 102, 241, 0.2),
    var(--specular-shine);
}

.mockup-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  opacity: 0.75;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #eab308; }
.dot-green { background-color: #22c55e; }

.mockup-title {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.badge-live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}

.mockup-visual-wrapper {
  position: relative;
  background: #090c13;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-hero-img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s var(--ease);
}

.hero-app-mockup-card:hover .mockup-hero-img {
  transform: scale(1.02);
}

.floating-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  background: rgba(13, 17, 26, 0.9);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.7), var(--specular-shine);
  z-index: 2;
}

.floating-badge.top-right {
  top: 14px;
  right: 14px;
}

.floating-badge.bottom-left {
  bottom: 14px;
  left: 14px;
}

.fb-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  flex-shrink: 0;
}

.fb-icon svg {
  width: 15px;
  height: 15px;
}

.floating-badge div {
  display: flex;
  flex-direction: column;
}

.floating-badge strong {
  font-size: 0.78rem;
  color: #ffffff;
  line-height: 1.2;
}

.floating-badge small {
  font-size: 0.68rem;
  color: var(--text-secondary);
}

.mockup-footer-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-value {
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.stat-name {
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   SOCIAL PROOF LOGO BAR (SUBTLE & REFINED)
   ========================================================================== */
.social-proof-bar {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 13, 19, 0.4);
}

.proof-label {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
  font-weight: 700;
}

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

@media (min-width: 640px) {
  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 960px) {
  .proof-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.proof-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.proof-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-xs);
  background: rgba(99, 102, 241, 0.1);
  color: #818cf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-icon svg {
  width: 15px;
  height: 15px;
}

.proof-item strong {
  display: block;
  font-size: 0.8rem;
  color: #ffffff;
  line-height: 1.2;
}

.proof-item small {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* ==========================================================================
   CASE STUDIES SHOWCASE (MODERN TECH BENTO GRID)
   ========================================================================== */
.case-studies-section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .case-studies-section {
    padding: 80px 0;
  }
}

.case-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
}

.filter-btn.active {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.4);
  color: #a5b4fc;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(99, 102, 241, 0.35);
  box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.8), 0 0 25px -5px rgba(99, 102, 241, 0.15);
}

.card-visual-media {
  position: relative;
  height: 200px;
  background: #090c13;
  overflow: hidden;
}

.card-img-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s var(--ease);
}

.case-card:hover .card-img-preview {
  transform: scale(1.04);
}

.media-overlay-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  background: rgba(10, 14, 22, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 600;
  color: #ffffff;
}

.btn-play-demo {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 6px 12px;
  background: rgba(10, 14, 22, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xs);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.9;
  transition: var(--transition);
}

.btn-play-demo:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  opacity: 1;
}

.card-body-content {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.tag-gov, .tag-iot, .tag-mobile, .tag-saas {
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag-gov { background: rgba(239, 68, 68, 0.12); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }
.tag-iot { background: rgba(245, 158, 11, 0.12); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.tag-mobile { background: rgba(16, 185, 129, 0.12); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.tag-saas { background: rgba(56, 189, 248, 0.12); color: #38bdf8; border: 1px solid rgba(56, 189, 248, 0.3); }

.tag-scale {
  font-size: 0.68rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 7px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
}

.case-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.case-client {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.case-client strong {
  color: var(--text-secondary);
}

.visual-pill-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.pill-metric {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  padding: 2px 7px;
  border-radius: var(--radius-xs);
  color: #cbd5e1;
}

.case-modal-trigger {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #818cf8;
  font-size: 0.82rem;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  text-align: left;
  transition: var(--transition);
}

.case-modal-trigger:hover {
  color: #a5b4fc;
  gap: 9px;
}

/* ==========================================================================
   TRANSPARENT ₹ PACKAGES (PREMIUM TIER CARDS)
   ========================================================================== */
.packages-section {
  padding: 60px 0;
  background: rgba(12, 15, 22, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
  .packages-section {
    padding: 80px 0;
  }
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 900px) {
  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.package-card {
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
}

.package-card.featured {
  background: rgba(18, 22, 36, 0.9);
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 20px 45px -10px rgba(99, 102, 241, 0.2), var(--specular-shine);
}

@media (min-width: 900px) {
  .package-card.featured {
    transform: scale(1.03);
  }
  .package-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
  }
}

.featured-pill {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--grad-primary-btn);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.pkg-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pkg-type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #818cf8;
  margin-bottom: 8px;
}

.pkg-header h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.pkg-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 16px;
  min-height: 40px;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pkg-price .currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.pkg-price .amount {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.pkg-price .period {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pkg-timeline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #34d399;
}

.pkg-timeline svg {
  width: 14px;
  height: 14px;
}

.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex-grow: 1;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.pkg-features li svg {
  width: 16px;
  height: 16px;
  color: #34d399;
  flex-shrink: 0;
  margin-top: 2px;
}

.pkg-action {
  margin-top: auto;
}

/* ==========================================================================
   INTERACTIVE PROJECT ESTIMATOR (MODERN FINTECH / SAAS CALCULATOR)
   ========================================================================== */
.estimator-section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .estimator-section {
    padding: 80px 0;
  }
}

.estimator-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
}

@media (min-width: 880px) {
  .estimator-card {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
  }
}

.estimator-steps {
  padding: 28px 20px;
}

@media (min-width: 640px) {
  .estimator-steps {
    padding: 36px 32px;
  }
}

.estimator-group {
  margin-bottom: 28px;
}

.step-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.2);
  color: #a5b4fc;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.option-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.option-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-medium);
}

.option-btn.active {
  background: rgba(99, 102, 241, 0.12);
  border-color: rgba(99, 102, 241, 0.5);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.15);
}

.opt-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.05);
  color: #818cf8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.option-btn.active .opt-icon {
  background: var(--accent-primary);
  color: #ffffff;
}

.opt-icon svg {
  width: 15px;
  height: 15px;
}

.opt-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.option-btn small {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Feature Chips */
.feature-chips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 500px) {
  .feature-chips {
    grid-template-columns: repeat(2, 1fr);
  }
}

.chip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.chip-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.chip-item input[type="checkbox"] {
  accent-color: var(--accent-primary);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.chip-item span {
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.chip-item span svg {
  width: 14px;
  height: 14px;
  color: #818cf8;
}

/* Speed Grid */
.speed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.speed-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.speed-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.speed-btn.active {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.15);
}

.speed-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #34d399;
  margin-bottom: 4px;
}

.speed-btn strong {
  font-size: 0.85rem;
  color: #ffffff;
}

.speed-btn small {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Estimator Summary Card */
.estimator-summary {
  background: rgba(10, 13, 20, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 880px) {
  .estimator-summary {
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 28px;
  }
}

.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.badge-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: #34d399;
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-weight: 600;
}

.badge-guarantee svg {
  width: 12px;
  height: 12px;
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.detail-row strong {
  color: #ffffff;
  font-size: 0.88rem;
  text-align: right;
}

.detail-row .highlight-green {
  color: #34d399;
}

.detail-row .highlight-price {
  font-size: 1.15rem;
  color: #38bdf8;
  font-weight: 800;
}

.summary-cta-box {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-microcopy {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 12px;
}

.estimator-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   WHY FOUNDERS CHOOSE ME (ELEGANT COMPARISON MATRIX)
   ========================================================================== */
.comparison-section {
  padding: 60px 0;
  background: rgba(11, 14, 21, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

@media (min-width: 768px) {
  .comparison-section {
    padding: 80px 0;
  }
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}

.comparison-table th, .comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.comparison-table th {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table th.highlight-cell {
  background: rgba(99, 102, 241, 0.12);
  color: #ffffff;
  border-left: 1px solid rgba(99, 102, 241, 0.3);
  border-right: 1px solid rgba(99, 102, 241, 0.3);
}

.comparison-table td.highlight-cell {
  background: rgba(99, 102, 241, 0.06);
  color: #ffffff;
  border-left: 1px solid rgba(99, 102, 241, 0.2);
  border-right: 1px solid rgba(99, 102, 241, 0.2);
}

/* Founder Profile Badges & Avatars */
.founder-micro-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #38bdf8;
  margin-right: 3px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.4);
}

.founder-th-profile {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.founder-th-avatar-wrap {
  position: relative;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.founder-th-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #818cf8;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.pulse-dot-mini {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  border: 1.5px solid #0b0e15;
}

.founder-th-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: none;
  letter-spacing: 0;
  display: block;
}

.founder-th-role {
  font-size: 0.68rem;
  font-weight: 600;
  color: #818cf8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 1px;
}

.contact-founder-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
  flex-shrink: 0;
}

.matrix-row-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #e2e8f0;
}

.matrix-row-title svg {
  width: 16px;
  height: 16px;
  color: #818cf8;
}

.status-badge-positive {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #34d399;
  font-weight: 600;
}

.status-badge-positive svg {
  width: 14px;
  height: 14px;
}

.status-badge-negative {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.status-badge-negative svg {
  width: 14px;
  height: 14px;
  color: var(--text-dim);
}

/* ==========================================================================
   FAQ SECTION (CLEAN ACCORDION)
   ========================================================================== */
.faq-section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 80px 0;
  }
}

.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-item.active {
  border-color: rgba(99, 102, 241, 0.35);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}

.faq-toggle-icon svg {
  width: 12px;
  height: 12px;
  color: #a5b4fc;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--accent-primary);
}

.faq-item.active .faq-toggle-icon svg {
  color: #ffffff;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ==========================================================================
   CONTACT SECTION & LEAD FORMS
   ========================================================================== */
.contact-section {
  padding: 60px 0 80px;
  background: radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
}

.contact-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 36px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--specular-shine);
}

@media (min-width: 640px) {
  .contact-card {
    padding: 44px 38px;
  }
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-size: 0.88rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   FORM VALIDATION & ERROR STATES
   ========================================================================== */
.form-group {
  position: relative;
  margin-bottom: 16px;
}

.form-control.is-invalid {
  border-color: #ef4444 !important;
  background: rgba(239, 68, 68, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18) !important;
}

.form-control.is-invalid:focus {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.28) !important;
}

.form-control.is-valid {
  border-color: rgba(16, 185, 129, 0.45);
}


.field-error-msg {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 500;
  color: #f87171;
  margin-top: 6px;
  line-height: 1.35;
  animation: errorSlideIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.field-error-msg svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: #ef4444;
}

@keyframes errorSlideIn {
  from {
    opacity: 0;
    transform: translateY(-3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   FOOTER (MODERN ENTERPRISE SAAS DESIGN)
   ========================================================================== */
.site-footer {
  padding: 56px 0 28px;
  background: #06080d;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 10;
}

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

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
  }
}

@media (min-width: 960px) {
  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1.1fr 1.2fr;
    gap: 40px;
  }
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer-bio {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 320px;
}

.footer-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: var(--radius-full);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 600;
}

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list li a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-list li a:hover {
  color: #38bdf8;
  transform: translateX(2px);
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-contact-link:hover {
  color: #ffffff;
}

.footer-contact-link svg {
  color: #818cf8;
  flex-shrink: 0;
}

.footer-whatsapp-link {
  color: #4ade80 !important;
}

.footer-whatsapp-link svg {
  color: #22c55e !important;
}

.footer-meta-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-meta-text svg {
  color: var(--text-dim);
  flex-shrink: 0;
}

/* Tech Ribbon */
.footer-tech-ribbon {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .footer-tech-ribbon {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.tech-ribbon-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.tech-ribbon-pills {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-ribbon-pills span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  color: #cbd5e1;
}

/* Bottom Bar */
.footer-bottom-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.footer-company-link {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-fast, 0.15s ease), text-decoration var(--transition-fast, 0.15s ease);
}

.footer-company-link:hover {
  color: #7dd3fc;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom-badges {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--text-secondary);
}

.badge-shield {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #34d399;
  font-weight: 600;
}

.badge-dot {
  color: var(--text-dim);
}

/* ==========================================================================
   MOBILE STICKY DOCK & FLOATING WHATSAPP
   ========================================================================== */
.mobile-sticky-dock {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(9, 11, 17, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 90;
}

@media (min-width: 769px) {
  .mobile-sticky-dock {
    display: none;
  }
}

.mobile-dock-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.floating-whatsapp-btn {
  display: none;
}

@media (min-width: 769px) {
  .floating-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 10px 16px;
    background: rgba(18, 24, 38, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: var(--radius-full);
    color: #4ade80;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.8), 0 0 20px -5px rgba(34, 197, 94, 0.25);
    z-index: 95;
    transition: var(--transition);
  }

  .floating-whatsapp-btn:hover {
    background: #22c55e;
    color: #041f0d;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px -5px rgba(34, 197, 94, 0.4);
  }
}

/* ==========================================================================
   MODALS & TOASTS
   ========================================================================== */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-box {
  width: 100%;
  max-width: 520px;
  background: #0f131d;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--specular-shine);
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  color: #ffffff;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #121724;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.toast-success {
  border-color: rgba(34, 197, 94, 0.4);
}

/* Modal Overlay & Dialog (Compatibility & Polish) */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 250;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal-dialog {
  width: 100%;
  max-width: 500px;
  background: #0d111a;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.9), var(--specular-shine);
  padding: 28px 24px;
  position: relative;
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.16) rgba(10, 13, 20, 0.85);
}

/* Luxury Custom Dark Scrollbar (Eliminates ugly white browser scrollbar) */
.modal-dialog::-webkit-scrollbar {
  width: 6px;
}

.modal-dialog::-webkit-scrollbar-track {
  background: rgba(10, 13, 20, 0.85);
  border-radius: 9999px;
  margin: 10px 0;
}

.modal-dialog::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 9999px;
  transition: background 0.2s ease;
}

.modal-dialog::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

.modal-dialog.modal-lg {
  max-width: 760px;
  padding: 0;
  border-radius: var(--radius-xl);
  background: #0b0e17;
}

.modal-dialog .modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  width: 34px;
  height: 34px;
  font-size: 1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.modal-dialog .modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
  color: #f87171;
  transform: scale(1.08);
}

/* Case Study Deep Dive Modal Luxury Styles */
.case-modal-hero {
  position: relative;
  width: 100%;
  height: 240px;
  background: #07090f;
  overflow: hidden;
}

.case-modal-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.case-modal-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 14, 23, 0.2) 0%, rgba(11, 14, 23, 0.95) 100%);
  pointer-events: none;
}

.case-modal-category {
  position: absolute;
  top: 16px;
  left: 18px;
  padding: 5px 12px;
  background: rgba(10, 13, 20, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #38bdf8;
  z-index: 2;
}

.case-modal-body {
  padding: 24px 28px 32px;
}

@media (max-width: 600px) {
  .case-modal-body {
    padding: 20px 18px 24px;
  }
}

.case-modal-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.case-modal-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.case-modal-meta strong {
  color: #ffffff;
}

.case-modal-abstract {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  color: #e2e8f0;
  font-size: 0.9rem;
  line-height: 1.6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.case-modal-section {
  background: rgba(14, 18, 28, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 18px;
  transition: var(--transition);
}

.case-modal-section:hover {
  border-color: var(--border-medium);
}

.case-modal-section.challenge {
  border-left: 3px solid #f87171;
}

.case-modal-section.solution {
  border-left: 3px solid #34d399;
}

.case-modal-section.architecture {
  border-left: 3px solid #818cf8;
}

.case-modal-section.impact {
  border-left: 3px solid #38bdf8;
}

.case-section-header {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.case-section-header.text-danger { color: #f87171; }
.case-section-header.text-success { color: #34d399; }
.case-section-header.text-indigo { color: #a5b4fc; }
.case-section-header.text-cyan { color: #38bdf8; }

.case-section-header svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.case-section-text {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.case-arch-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-arch-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: #cbd5e1;
  line-height: 1.45;
}

.case-arch-item svg {
  width: 15px;
  height: 15px;
  color: #818cf8;
  flex-shrink: 0;
  margin-top: 3px;
}

.case-impact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 580px) {
  .case-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.impact-metric-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: #e0e7ff;
  font-weight: 500;
}

.impact-metric-card svg {
  width: 16px;
  height: 16px;
  color: #38bdf8;
  flex-shrink: 0;
}

.case-tech-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.case-tech-chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  color: #38bdf8;
}

.case-modal-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 500px) {
  .case-modal-footer-actions {
    flex-direction: row;
    align-items: center;
  }
  .case-modal-footer-actions .btn {
    flex: 1;
  }
}


.modal-dialog .modal-header {
  padding: 0 0 16px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: block;
}

.modal-dialog .modal-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.modal-dialog .modal-header p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Legacy Toast Notification Support */
.toast-notification {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 350;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #111624;
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.8);
  transform: translateY(-40px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.toast-notification.show,
.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Sticky Bar Legacy Styles */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(9, 11, 17, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 90;
}

@media (min-width: 769px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mob-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  line-height: 1;
}

.mob-bar-btn.call {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: var(--border-subtle);
}

.mob-bar-btn.whatsapp {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.35);
}

.mob-bar-btn.quote {
  background: var(--grad-primary-btn);
  color: #ffffff;
}

/* Floating WhatsApp Desktop */
.floating-whatsapp {
  display: none;
}

@media (min-width: 769px) {
  .floating-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 95;
    text-decoration: none;
  }

  .whatsapp-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    position: relative;
    transition: transform 0.2s var(--ease);
  }

  .floating-whatsapp:hover .whatsapp-circle {
    transform: scale(1.08);
  }

  .whatsapp-tooltip {
    background: rgba(14, 18, 28, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-subtle);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    text-align: right;
    pointer-events: none;
    transition: var(--transition);
  }

  .whatsapp-tooltip strong {
    font-size: 0.78rem;
    color: #ffffff;
  }

  .whatsapp-tooltip span {
    font-size: 0.68rem;
    color: #34d399;
  }
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & COMPACT TYPOGRAPHY OPTIMIZATION (<= 768px)
   Eliminates oversized fonts, bloated spacing & excessive whitespace on phones
   ========================================================================== */
@media (max-width: 768px) {
  html {
    font-size: 14px; /* Calibrates whole rem-scale smoothly */
  }

  body {
    padding-bottom: 58px; /* Clean clearance for mobile bottom bar */
  }

  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  /* Compact Section Paddings */
  .hero-section {
    padding: 22px 0 28px;
  }

  .social-proof-bar {
    padding: 16px 0;
  }

  .case-studies-section,
  .packages-section,
  .estimator-section,
  .comparison-section,
  .faq-section {
    padding: 32px 0;
  }

  .contact-section {
    padding: 32px 0 46px;
  }

  .site-footer {
    padding: 24px 0 68px;
  }

  /* Section Headers & Sub-badges */
  .section-header {
    margin-bottom: 20px;
  }

  .sub-badge {
    font-size: 0.64rem;
    padding: 3px 9px;
    gap: 4px;
    margin-bottom: 8px;
  }

  .sub-badge svg {
    width: 11px;
    height: 11px;
  }

  .section-title {
    font-size: 1.4rem;
    line-height: 1.22;
    letter-spacing: -0.025em;
    margin-bottom: 8px;
  }

  .section-desc {
    font-size: 0.84rem;
    line-height: 1.5;
    max-width: 100%;
  }

  /* Top Urgency & Announcement Bar */
  .top-urgency-bar {
    padding: 5px 10px;
    font-size: 0.68rem;
  }

  .announcement-badge {
    font-size: 0.65rem;
    padding: 2px 6px;
  }

  /* Navbar */
  .site-header {
    padding: 8px 0;
  }

  .brand-logo {
    font-size: 0.95rem;
    gap: 6px;
  }

  .brand-mark {
    width: 24px;
    height: 24px;
  }

  .brand-mark svg {
    width: 13px;
    height: 13px;
  }

  .header-actions .btn {
    padding: 7px 11px;
    font-size: 0.74rem;
  }

  /* Hero Typography & Elements */
  .hero-container {
    gap: 20px;
  }

  .hero-eyebrow {
    margin-bottom: 10px;
    gap: 6px;
  }

  .badge-status,
  .rating-badge {
    padding: 3px 8px;
    font-size: 0.66rem;
  }

  .hero-title {
    font-size: 1.62rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.86rem;
    line-height: 1.52;
    margin-bottom: 16px;
  }

  .hero-cta-group {
    gap: 8px;
    margin-bottom: 14px;
  }

  .hero-cta-group .btn {
    padding: 10px 14px;
    width: 100%;
  }

  .btn-text strong {
    font-size: 0.84rem;
  }

  .btn-text small {
    font-size: 0.66rem;
  }

  .hero-trust-row {
    padding-top: 10px;
    gap: 8px 12px;
  }

  .trust-item {
    font-size: 0.7rem;
    gap: 4px;
  }

  .trust-item svg {
    width: 12px;
    height: 12px;
  }

  /* Hero Mockup Showcase */
  .hero-device-mockup {
    border-radius: 12px;
  }

  .mockup-window-header {
    padding: 8px 12px;
  }

  .mockup-header-title {
    font-size: 0.66rem;
  }

  .mockup-body-inner {
    padding: 12px;
  }

  .hero-telemetry-badge {
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  .hero-stat-pill {
    padding: 4px 8px;
    font-size: 0.68rem;
  }

  /* Social Proof Bar */
  .proof-label {
    font-size: 0.64rem;
    margin-bottom: 10px;
  }

  .proof-grid {
    gap: 6px;
  }

  .proof-item {
    padding: 7px 9px;
    gap: 7px;
    border-radius: 8px;
  }

  .proof-icon {
    width: 22px;
    height: 22px;
  }

  .proof-icon svg {
    width: 12px;
    height: 12px;
  }

  .proof-item strong {
    font-size: 0.72rem;
    line-height: 1.15;
  }

  .proof-item small {
    font-size: 0.6rem;
  }

  /* Case Studies Grid & Cards */
  .case-filters {
    gap: 5px;
    margin-bottom: 16px;
  }

  .filter-btn {
    padding: 5px 11px;
    font-size: 0.72rem;
  }

  .case-grid {
    gap: 14px;
  }

  .case-card {
    border-radius: 12px;
  }

  .card-visual-media {
    height: 160px;
  }

  .media-overlay-badge {
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    font-size: 0.62rem;
  }

  .btn-play-demo {
    bottom: 8px;
    right: 8px;
    padding: 5px 10px;
    font-size: 0.68rem;
  }

  .card-body-content {
    padding: 12px 14px 14px;
  }

  .case-badge-row {
    gap: 5px;
    margin-bottom: 6px;
  }

  .tag-saas,
  .tag-mobile,
  .tag-ai,
  .tag-gov,
  .tag-iot {
    font-size: 0.6rem;
    padding: 2px 6px;
  }

  .tag-scale {
    font-size: 0.62rem;
    padding: 2px 6px;
  }

  .case-title {
    font-size: 0.94rem;
    line-height: 1.25;
    margin-bottom: 3px;
  }

  .case-client {
    font-size: 0.7rem;
    margin-bottom: 8px;
  }

  .visual-pill-row {
    gap: 4px;
    margin-bottom: 10px;
  }

  .pill-metric {
    font-size: 0.62rem;
    padding: 2px 5px;
  }

  .case-modal-trigger {
    font-size: 0.76rem;
    padding: 2px 0;
  }

  /* Pricing Packages */
  .packages-grid {
    gap: 14px;
  }

  .package-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .featured-pill {
    top: -10px;
    padding: 3px 10px;
    font-size: 0.62rem;
  }

  .pkg-header {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  .pkg-type {
    font-size: 0.62rem;
    margin-bottom: 2px;
  }

  .pkg-header h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .pkg-subtitle {
    font-size: 0.76rem;
    min-height: auto;
    margin-bottom: 10px;
    line-height: 1.35;
  }

  .pkg-price {
    margin-bottom: 4px;
  }

  .pkg-price .currency {
    font-size: 1rem;
  }

  .pkg-price .amount {
    font-size: 1.55rem;
  }

  .pkg-price .period {
    font-size: 0.74rem;
  }

  .pkg-timeline {
    font-size: 0.7rem;
  }

  .pkg-features {
    gap: 7px;
    margin-bottom: 16px;
  }

  .pkg-features li {
    font-size: 0.76rem;
    gap: 7px;
    line-height: 1.35;
  }

  .pkg-features li svg {
    width: 14px;
    height: 14px;
  }

  .pkg-action .btn {
    width: 100%;
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  /* Project Scope Estimator */
  .estimator-card {
    border-radius: 14px;
  }

  .estimator-steps {
    padding: 16px 12px;
  }

  .estimator-group {
    margin-bottom: 14px;
  }

  .step-title {
    font-size: 0.78rem;
    margin-bottom: 8px;
    gap: 6px;
  }

  .step-num {
    width: 18px;
    height: 18px;
    font-size: 0.66rem;
  }

  .option-grid {
    gap: 6px;
  }

  .option-btn {
    padding: 8px 9px;
    border-radius: 8px;
  }

  .opt-icon {
    width: 22px;
    height: 22px;
    margin-bottom: 4px;
  }

  .opt-icon svg {
    width: 12px;
    height: 12px;
  }

  .opt-name {
    font-size: 0.74rem;
  }

  .option-btn small {
    font-size: 0.62rem;
  }

  .feature-chips {
    gap: 5px;
  }

  .chip-item {
    padding: 6px 8px;
    gap: 6px;
    border-radius: 6px;
  }

  .chip-item span {
    font-size: 0.72rem;
  }

  .chip-item span svg {
    width: 12px;
    height: 12px;
  }

  .speed-grid {
    gap: 6px;
  }

  .speed-btn {
    padding: 8px 9px;
    border-radius: 8px;
  }

  .speed-badge {
    font-size: 0.6rem;
    margin-bottom: 2px;
  }

  .speed-btn strong {
    font-size: 0.74rem;
  }

  .speed-btn small {
    font-size: 0.62rem;
  }

  .estimator-summary {
    padding: 16px 12px;
  }

  .summary-header {
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .summary-header h3 {
    font-size: 0.95rem;
  }

  .badge-guarantee {
    font-size: 0.62rem;
    padding: 2px 6px;
  }

  .summary-details {
    gap: 8px;
    margin-bottom: 14px;
  }

  .detail-row {
    font-size: 0.74rem;
  }

  .detail-row strong {
    font-size: 0.78rem;
  }

  .detail-row .highlight-price {
    font-size: 1rem;
  }

  .summary-cta-box {
    padding-top: 12px;
  }

  .cta-microcopy {
    font-size: 0.68rem;
    margin-bottom: 8px;
  }

  .estimator-action-buttons {
    gap: 6px;
  }

  .estimator-action-buttons .btn {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  /* Comparison Matrix */
  .table-responsive {
    border-radius: 10px;
  }

  .comparison-table {
    min-width: 520px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 9px 10px;
    font-size: 0.74rem;
  }

  .matrix-row-title {
    font-size: 0.74rem;
    gap: 6px;
  }

  .matrix-row-title svg {
    width: 13px;
    height: 13px;
  }

  /* FAQ Accordion */
  .faq-accordion {
    gap: 8px;
  }

  .faq-item {
    border-radius: 8px;
  }

  .faq-question {
    padding: 12px 14px;
    font-size: 0.84rem;
    gap: 10px;
  }

  .faq-toggle-icon {
    width: 18px;
    height: 18px;
  }

  .faq-toggle-icon svg {
    width: 10px;
    height: 10px;
  }

  .faq-answer {
    padding: 0 14px 12px;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  /* Contact & Form */
  .contact-card {
    padding: 18px 14px;
    border-radius: 14px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  .form-group label {
    font-size: 0.74rem;
    margin-bottom: 4px;
  }

  .form-control {
    padding: 9px 11px;
    font-size: 0.82rem;
    border-radius: 6px;
  }

  .field-error-msg {
    font-size: 0.68rem;
    margin-top: 3px;
  }

  .contact-card .btn {
    padding: 10px 14px;
    font-size: 0.82rem;
    width: 100%;
  }

  /* Modern Footer on Mobile */
  .site-footer {
    padding: 36px 0 74px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 22px;
  }

  .footer-bio {
    font-size: 0.8rem;
    max-width: 100%;
    margin-bottom: 12px;
  }

  .footer-status-pill {
    font-size: 0.68rem;
    padding: 3px 8px;
  }

  .footer-col-title {
    font-size: 0.76rem;
    margin-bottom: 10px;
  }

  .footer-list {
    gap: 7px;
  }

  .footer-list li a,
  .footer-contact-link,
  .footer-meta-text {
    font-size: 0.76rem;
  }

  .footer-tech-ribbon {
    padding: 12px 0;
    gap: 8px;
    margin-bottom: 18px;
  }

  .tech-ribbon-pills span {
    font-size: 0.62rem;
    padding: 2px 6px;
  }

  .footer-bottom-bar {
    gap: 8px;
    text-align: center;
  }

  .footer-copyright {
    font-size: 0.7rem;
  }

  .footer-bottom-badges {
    font-size: 0.68rem;
    justify-content: center;
  }

  /* Deep Dive Modal */
  .modal-overlay {
    padding: 10px;
  }

  .modal-dialog {
    padding: 16px 12px;
    max-height: 86vh;
    border-radius: 14px;
  }

  .case-modal-hero {
    height: 145px;
  }

  .case-modal-category {
    top: 8px;
    left: 10px;
    padding: 3px 8px;
    font-size: 0.62rem;
  }

  .modal-dialog .modal-close {
    width: 28px;
    height: 28px;
    top: 8px;
    right: 8px;
  }

  .case-modal-body {
    padding: 12px 10px 16px;
  }

  .case-modal-title {
    font-size: 1.08rem;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .case-modal-meta {
    font-size: 0.7rem;
    margin-bottom: 12px;
    gap: 5px;
  }

  .case-modal-abstract {
    padding: 10px 12px;
    font-size: 0.78rem;
    line-height: 1.45;
    margin-bottom: 14px;
    border-radius: 8px;
  }

  .case-modal-section {
    padding: 10px 12px;
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .case-section-header {
    font-size: 0.76rem;
    margin-bottom: 5px;
    gap: 6px;
  }

  .case-section-header svg {
    width: 13px;
    height: 13px;
  }

  .case-section-text {
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .case-arch-list {
    gap: 6px;
  }

  .case-arch-item {
    font-size: 0.74rem;
    gap: 6px;
    line-height: 1.35;
  }

  .case-arch-item svg {
    width: 12px;
    height: 12px;
  }

  .case-impact-grid {
    gap: 6px;
  }

  .impact-metric-card {
    padding: 7px 9px;
    font-size: 0.72rem;
    gap: 6px;
    border-radius: 6px;
  }

  .impact-metric-card svg {
    width: 13px;
    height: 13px;
  }

  .case-tech-container {
    gap: 4px;
    margin-top: 6px;
  }

  .case-tech-chip {
    font-size: 0.64rem;
    padding: 2px 6px;
  }

  .case-modal-footer-actions {
    margin-top: 14px;
    padding-top: 12px;
    gap: 6px;
  }

  /* Mobile Sticky Bar */
  .mobile-sticky-bar {
    padding: 6px 8px;
    height: 50px;
    gap: 6px;
  }

  .mob-bar-btn {
    padding: 7px 6px;
    font-size: 0.72rem;
    gap: 4px;
  }

  .mob-bar-btn svg {
    width: 13px;
    height: 13px;
  }
}

/* Extra Compact for Tiny Mobile Devices (<= 380px) */
@media (max-width: 380px) {
  html {
    font-size: 13.5px;
  }

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

  .section-title {
    font-size: 1.3rem;
  }

  .option-grid,
  .speed-grid {
    grid-template-columns: 1fr;
  }

  .card-visual-media {
    height: 145px;
  }
}


