/* ==========================================================================
   SAMRADDHI MARKETING DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

:root {
  /* Unified High-Contrast Palette */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-dark: #0f172a;

  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-on-dark: #f8fafc;

  --border-light: rgba(15, 23, 42, 0.08);
  --border-medium: rgba(15, 23, 42, 0.16);
  --border-focus: #ff4d8d;

  --accent-color: #ff4d8d;
  --accent-pink: #ff70a6;
  --accent-glow: rgba(255, 77, 141, 0.45);
  --accent-gradient: linear-gradient(135deg, #ff4d8d 0%, #c084fc 100%);
  --status-active: #10b981;
  --status-glow: rgba(16, 185, 129, 0.4);

  /* Fonts */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout Constants */
  --header-height: 4.5rem;
  --container-max: 1240px;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-full: 9999px;

  /* Shadows & Transitions */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 48px rgba(15, 23, 42, 0.15);
  --transition-fast: 0.15s cubic-bezier(0.23, 1, 0.32, 1);
  --transition-smooth: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Base Resets & Universal Anti-Horizontal Scroll Lock */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  position: relative;
  touch-action: manipulation;
  -webkit-overflow-scrolling: touch;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: auto !important;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  cursor: auto !important;
}

/* STANDARD INTERACTIVE CURSORS */
a, button, input[type="submit"], input[type="button"], select, label, .btn, .live-filter-chip, .magnetic-target, .icon-btn, [role="button"], .card, .live-card, summary, .nav-link, .brand-logo {
  cursor: pointer !important;
}

input[type="text"], input[type="email"], input[type="number"], input[type="tel"], textarea {
  cursor: text !important;
}

/* REMOVE CUSTOM CURSOR ANIMATIONS AND ELEMENTS */
.custom-cursor,
#custom-cursor,
.cursor-follower,
.cursor-radial-glow,
#cursor-radial-glow,
.cursor-particle-canvas,
#cursor-particle-canvas {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.cursor-radial-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 112, 166, 0.25) 0%, rgba(255, 77, 141, 0.08) 40%, rgba(255, 77, 141, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate3d(-50%, -50%, 0);
  filter: blur(25px);
  opacity: 0.7;
  will-change: transform, opacity;
  transition: opacity 0.3s ease;
}

.cursor-particle-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99997;
}

/* Hover States for Custom Cursor Dot */
body.cursor-hovering .custom-cursor {
  width: 20px;
  height: 20px;
  background-color: #ff70a6;
  box-shadow: 0 0 16px #ff70a6, 0 0 28px #ff4d8d;
}

body.cursor-hovering .cursor-radial-glow {
  opacity: 0.85;
  width: 290px;
  height: 290px;
}

/* Magnetic Target Transition for Buttons */
.magnetic-target {
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

/* ==========================================================================
   PAGE LOADER CURTAIN & FLOATING AMBIENT BLOBS
   ========================================================================== */
.page-curtain {
  position: fixed;
  inset: 0;
  background-color: #0e0f12;
  color: #ffffff;
  z-index: 200000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-curtain.hidden {
  transform: translateY(-100%);
}

.curtain-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.curtain-brand-img {
  height: 48px;
  width: auto;
  border-radius: 6px;
}

.curtain-logo {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: var(--font-sans);
}

.curtain-loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  overflow: hidden;
}

.curtain-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff4d8d, #c084fc);
  transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Ambient Floating Gradient Blobs */
.ambient-blobs-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  filter: blur(90px);
  opacity: 0.5;
  width: 100vw;
  height: 100vh;
}

[data-theme="dark"] .ambient-blobs-container {
  opacity: 0.65;
}

.ambient-blob {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}

.blob-1 {
  width: 480px;
  height: 480px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(255, 112, 166, 0.8) 0%, rgba(255, 77, 141, 0.3) 70%, transparent 100%);
  animation: float-blob-1 20s ease-in-out infinite alternate;
}

.blob-2 {
  width: 550px;
  height: 550px;
  bottom: 10%;
  left: -150px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.7) 0%, rgba(129, 140, 248, 0.3) 70%, transparent 100%);
  animation: float-blob-2 25s ease-in-out infinite alternate;
}

.blob-3 {
  width: 420px;
  height: 420px;
  top: 45%;
  right: 15%;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.7) 0%, rgba(244, 63, 94, 0.25) 70%, transparent 100%);
  animation: float-blob-3 22s ease-in-out infinite alternate;
}

@keyframes float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-80px, 120px) scale(1.15); }
  100% { transform: translate(60px, 40px) scale(0.9); }
}

@keyframes float-blob-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, -90px) scale(1.1); }
  100% { transform: translate(-50px, 80px) scale(0.95); }
}

@keyframes float-blob-3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-90px, -110px) scale(1.2); }
  100% { transform: translate(70px, -60px) scale(0.85); }
}

/* Pink Glow Text Accent */
.pink-glow-text {
  text-shadow: 0 0 25px rgba(255, 77, 141, 0.5);
  background: linear-gradient(135deg, #ff4d8d 0%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Background Fluid Canvas */
.fluid-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* Reusable Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
}

.btn-primary {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 77, 141, 0.3);
  background-color: #ff4d8d;
  border-color: #ff4d8d;
  color: #ffffff;
}

.btn-secondary {
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  border-color: var(--border-light);
}

.btn-secondary:hover {
  background-color: var(--bg-tertiary);
  border-color: var(--border-medium);
}

.btn-light {
  background-color: #ffffff;
  color: #0e0f12;
  border-color: rgba(255,255,255,0.8);
}

.btn-light:hover {
  background-color: #f3f3f6;
  transform: scale(1.02);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Icon Buttons */
.icon-btn {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  color: var(--text-primary);
  flex-shrink: 0;
}

.icon-btn:hover {
  background-color: var(--bg-tertiary);
  transform: scale(1.05);
  border-color: var(--accent-pink);
}

/* ==========================================================================
   HEADER / NAVIGATION (SCROLLSPY ACTIVE LINK HIGHLIGHT)
   ========================================================================== */
.site-head {
  position: fixed;
  top: 0.85rem;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 1rem;
  width: 100%;
}

.head-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 77, 141, 0.25);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
  width: 100%;
}

[data-theme="dark"] .head-container {
  background: rgba(18, 19, 24, 0.85);
  border-color: rgba(255, 112, 166, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  flex-shrink: 0;
}

.brand-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  border: 1px solid rgba(255, 77, 141, 0.3);
}

.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.brand-dot {
  color: #ff4d8d;
  font-weight: 600;
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
  padding: 0.2rem 0.1rem;
}

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

.nav-link.active {
  color: #ff4d8d !important;
  font-weight: 800 !important;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, #ff4d8d, #c084fc);
  border-radius: 99px;
  box-shadow: 0 0 10px rgba(255, 77, 141, 0.8);
}

.highlight-link {
  color: var(--accent-color);
  font-weight: 700;
}

.head-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.desktop-head-cta {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
  white-space: nowrap;
}

.availability-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-primary);
  flex-shrink: 0;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: var(--status-active);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--status-glow);
}

.pulsing {
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 var(--status-glow); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Mobile Hamburger Button Icon */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
}

.burger-bar {
  width: 16px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 99px;
  transition: all var(--transition-fast);
}

.mobile-menu-btn.active .burger-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-btn.active .burger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .burger-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Slide-Out Drawer Navigation */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 150000;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

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

.mobile-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 15, 18, 0.7);
  backdrop-filter: blur(10px);
}

.mobile-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background-color: var(--bg-secondary);
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow-y: auto;
}

.mobile-drawer.active .mobile-drawer-content {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.mobile-status-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  margin-bottom: 2rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: auto;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: color var(--transition-fast);
}

.mobile-nav-link span {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: #ff4d8d;
}

.mobile-nav-link.active {
  color: #ff4d8d !important;
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  margin-top: 2rem;
}

.mobile-social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

.mobile-social-row a {
  color: var(--text-secondary);
  text-decoration: none;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.s-hero {
  padding-top: calc(var(--header-height) + 3.5rem);
  padding-bottom: 6rem;
  text-align: center;
  position: relative;
  width: 100%;
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  max-width: 100%;
  width: auto;
  line-height: 1.5;
}

.badge-separator {
  color: var(--text-muted);
}

.hero-title {
  font-size: clamp(2rem, 5.5vw, 4.25rem);
  max-width: 18ch;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-subtitle-tagline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.hero-subtitle-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 960px;
  margin-bottom: 3rem;
}

.stat-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-pink);
  box-shadow: 0 8px 20px rgba(255, 77, 141, 0.12);
}

.stat-num {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Positioning Statement Card */
.positioning-usp-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2.5rem;
  max-width: 960px;
  width: 100%;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.usp-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #ff4d8d;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 77, 141, 0.1);
  border-radius: var(--radius-full);
}

.usp-statement {
  font-size: 1.0625rem;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Scope Disclaimer Callout Box */
.scope-disclaimer-box {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem;
  background-color: var(--bg-primary);
  border-left: 4px solid #ff4d8d;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.disclaimer-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.s-about {
  padding: 3rem 0;
  width: 100%;
}

.s-about .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

.about-card {
  background: var(--bg-card);
  border-top: 1.5px solid var(--border-medium);
  border-bottom: 1.5px solid var(--border-medium);
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 3.5rem 5vw;
  box-shadow: var(--shadow-sm);
  width: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.about-card:hover {
  border-color: #ff4d8d;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 4rem;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.about-title {
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0.5rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.about-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.highlight-icon { font-size: 1.5rem; }

/* ==========================================================================
   FOUNDER SECTION (RAHUL SONI WITH REAL PHOTOGRAPH)
   ========================================================================== */
.s-founder {
  padding: 0 0 4rem;
  width: 100%;
}

.s-founder .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

.founder-card {
  background: var(--bg-card);
  border-top: 1.5px solid var(--border-medium);
  border-bottom: 1.5px solid var(--border-medium);
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 3.5rem 5vw;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  width: 100%;
  backdrop-filter: blur(16px);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.founder-card:hover {
  border-color: #ff4d8d;
}

.founder-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.founder-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.founder-avatar-frame {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(255, 77, 141, 0.4);
  border: 4px solid rgba(255, 77, 141, 0.4);
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.founder-card:hover .founder-avatar-frame {
  transform: scale(1.02);
  border-color: #ff4d8d;
  box-shadow: 0 20px 45px rgba(255, 77, 141, 0.5);
}

.founder-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.founder-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.badge-sparkle { color: #ff4d8d; }

.founder-name {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 0.25rem;
  letter-spacing: -0.03em;
}

.founder-tagline {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  color: #ff4d8d;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.founder-bio {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.founder-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.founder-brandbook-btn {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

/* ==========================================================================
   SERVICES PILLARS SECTION (MINIMAL HOVER)
   ========================================================================== */
.s-services {
  padding: 6rem 0;
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100%;
}

.service-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  opacity: 1 !important;
  visibility: visible !important;
  width: 100%;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-pink);
  box-shadow: 0 10px 24px rgba(255, 77, 141, 0.12);
}

.featured-service {
  border-color: rgba(255, 77, 141, 0.5);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(255, 77, 141, 0.04) 100%);
}

.service-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #ff4d8d;
  background-color: rgba(255, 77, 141, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.service-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.service-list {
  list-style-type: disc;
  padding-left: 1.2rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
  border-top: 1px dashed var(--border-light);
  padding-top: 1rem;
}

/* ==========================================================================
   INDUSTRIES SECTION
   ========================================================================== */
.s-industries {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  width: 100%;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  width: 100%;
}

.industry-chip {
  padding: 0.75rem 1.25rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
  max-width: 100%;
}

.industry-chip:hover {
  background-color: #ff4d8d;
  color: #ffffff;
  border-color: #ff4d8d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 77, 141, 0.25);
}

/* ==========================================================================
   PORTFOLIO & CASE STUDIES (STRICT DISPLAY OVERRIDES FOR FILTERING)
   ========================================================================== */
.s-work {
  padding: 6rem 0;
  width: 100%;
}

.work-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
  width: 100%;
}

.filter-btn {
  padding: 0.65rem 1.35rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

.filter-btn.active {
  background-color: #ff4d8d !important;
  color: #ffffff !important;
  border-color: #ff4d8d !important;
  box-shadow: 0 6px 18px rgba(255, 77, 141, 0.35) !important;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  min-height: 380px;
  width: 100%;
}

.project-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.project-card.is-hidden {
  display: none !important;
}

.project-card.is-visible {
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(255, 77, 141, 0.14);
  border-color: var(--accent-pink);
}

.pingu-avatar-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pingu-cutout-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6));
  animation: pinguWave 3s infinite ease-in-out;
}

@keyframes pinguWave {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(5deg); }
}

.card-media {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.media-mockup {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  transition: transform var(--transition-smooth);
}

.project-card:hover .media-mockup {
  transform: scale(1.02);
}

.nexus-gradient { background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%); }
.lumina-gradient { background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0284c7 100%); }
.velo-gradient { background: linear-gradient(135deg, #18181b 0%, #27272a 50%, #d97706 100%); }
.prism-gradient { background: linear-gradient(135deg, #022c22 0%, #064e3b 50%, #059669 100%); }
.pulse-gradient { background: linear-gradient(135deg, #31125e 0%, #4c1d95 50%, #7c3aed 100%); }
.aura-gradient { background: linear-gradient(135deg, #450a0a 0%, #7f1d1d 50%, #dc2626 100%); }

.mockup-content {
  color: #ffffff;
  text-align: center;
  width: 100%;
}

.mockup-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.mockup-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.mockup-url {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  opacity: 0.9;
  color: #ffb3cf;
  margin-bottom: 0.5rem;
}

.mockup-metric {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  opacity: 0.95;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 15, 18, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.project-card:hover .card-overlay {
  opacity: 1;
}

.card-details {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.cs-mini-breakdown {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background-color: var(--bg-primary);
  padding: 0.85rem;
  border-radius: var(--radius-md);
  border-left: 3px solid #ff4d8d;
  width: 100%;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.tag {
  padding: 0.25rem 0.6rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   MONTHLY RETAINER PLANS (MINIMAL HOVER)
   ========================================================================== */
.s-process {
  padding: 6rem 0;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  width: 100%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100%;
}

.pricing-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  opacity: 1 !important;
  visibility: visible !important;
  width: 100%;
}

.pricing-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-pink);
  box-shadow: 0 12px 28px rgba(255, 77, 141, 0.14);
}

.featured-plan {
  background-color: var(--bg-secondary);
  border: 2px solid #ff4d8d;
  box-shadow: 0 12px 30px rgba(255, 77, 141, 0.25);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff4d8d, #c084fc);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.plan-header {
  margin-bottom: 1rem;
}

.plan-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.plan-name {
  font-size: 1.35rem;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 2.25rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-primary);
  line-height: 1.1;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 400;
}

.plan-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  flex-grow: 1;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   ESTIMATOR CALCULATOR
   ========================================================================== */
.s-estimator {
  padding: 6rem 0;
  width: 100%;
}

.estimator-box {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
  width: 100%;
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}

.estimator-controls {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
}

.control-label {
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

.option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  width: 100%;
}

.pill-btn {
  padding: 0.65rem 1.15rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  max-width: 100%;
}

.pill-btn:hover {
  border-color: var(--accent-pink);
  color: var(--text-primary);
}

.pill-btn.active {
  background-color: #ff4d8d !important;
  color: #ffffff !important;
  border-color: #ff4d8d !important;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 77, 141, 0.35) !important;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  width: 100%;
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  width: 100%;
}

.checkbox-card:hover {
  border-color: var(--accent-pink);
}

.checkbox-card input[type="checkbox"] {
  display: none;
}

.cb-box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--text-muted);
  border-radius: 4px;
  display: inline-block;
  position: relative;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.checkbox-card input[type="checkbox"]:checked + .cb-box {
  background-color: #ff4d8d;
  border-color: #ff4d8d;
}

.checkbox-card input[type="checkbox"]:checked + .cb-box::after {
  content: "✓";
  color: #ffffff;
  font-size: 12px;
  position: absolute;
  top: -2px;
  left: 2px;
  font-weight: bold;
}

.cb-text {
  font-size: 0.875rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* Summary Card Output */
.estimator-summary-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.summary-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1.25rem;
}

.summary-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.live-price {
  font-size: 2.75rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-primary);
  line-height: 1.1;
  margin-top: 0.25rem;
}

.price-curr {
  font-size: 1rem;
  color: var(--text-muted);
}

.summary-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

.detail-label { color: var(--text-secondary); }
.detail-val { font-weight: 600; font-family: var(--font-mono); color: var(--text-primary); }

.summary-breakdown {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.breakdown-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.breakdown-list {
  list-style-type: disc;
  padding-left: 1.2rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.summary-footnote {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   QUOTE / TESTIMONIAL & BLOG SECTION (MINIMAL HOVER)
   ========================================================================== */
.s-quote-section {
  padding: 5rem 0;
  width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100%;
}

.quote-card {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 1 !important;
  visibility: visible !important;
  width: 100%;
}

.quote-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.quote-author-block {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 1.125rem;
}

.author-title {
  font-size: 0.875rem;
  opacity: 0.7;
}

.quote-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stars { color: #fbbf24; font-size: 1.125rem; }
.rating-text { font-family: var(--font-mono); font-size: 0.875rem; opacity: 0.9; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100%;
}

.blog-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
  opacity: 1 !important;
  visibility: visible !important;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-pink);
  box-shadow: 0 10px 24px rgba(255, 77, 141, 0.12);
}

.blog-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #ff4d8d;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.blog-excerpt {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.blog-link-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: #ff4d8d;
  text-align: left;
  transition: color var(--transition-fast);
}

.blog-link-btn:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.s-faq {
  padding: 6rem 0;
  width: 100%;
}

.faq-list {
  max-width: 840px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
  width: 100%;
}

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

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  gap: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform var(--transition-fast);
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: #ff4d8d;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
  padding: 0 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

/* ==========================================================================
   FINAL CTA BANNER
   ========================================================================== */
.s-final-cta {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-top: 1px solid var(--border-light);
  width: 100%;
}

.final-cta-title {
  font-size: clamp(2rem, 4vw, 3.75rem);
  margin-bottom: 1.25rem;
}

.final-cta-desc {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  width: 100%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-foot {
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  background-color: var(--bg-secondary);
  font-size: 0.875rem;
  width: 100%;
}

.foot-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.foot-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.foot-logo {
  font-weight: 800;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
}

.foot-copy {
  color: var(--text-muted);
}

.live-clock {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

.clock-time {
  font-weight: 600;
  color: var(--text-primary);
}

.foot-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.foot-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.foot-link:hover {
  color: #ff4d8d;
}

/* ==========================================================================
   MODALS & BUSINESS OPTIONS GRID
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(14, 15, 18, 0.65);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

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

.modal-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  overflow-y: auto !important;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  position: relative;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
}

/* Custom Scrollbar for Modal Card */
.modal-card::-webkit-scrollbar {
  width: 6px;
}

.modal-card::-webkit-scrollbar-track {
  background: var(--bg-primary);
  border-radius: 99px;
}

.modal-card::-webkit-scrollbar-thumb {
  background: #ff4d8d;
  border-radius: 99px;
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-full);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close-btn:hover {
  color: #ff4d8d;
  background-color: var(--bg-tertiary);
}

/* Contact Modal Details */
.modal-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.modal-title {
  font-size: 1.75rem;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.step-progress-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.step-node {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

.step-node.active {
  color: #ff4d8d;
  font-weight: 700;
}

.step-line {
  flex-grow: 1;
  height: 1px;
  background-color: var(--border-light);
}

.form-step {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

.form-step.active {
  display: flex;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.form-input, .form-select, .form-textarea {
  padding: 0.85rem 1rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast);
  width: 100%;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: #ff4d8d;
}

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

.business-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 0.4rem;
}

.business-options-grid::-webkit-scrollbar {
  width: 4px;
}

.business-options-grid::-webkit-scrollbar-thumb {
  background: #ff4d8d;
  border-radius: 99px;
}

.form-pill-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-pill-label:hover {
  border-color: var(--accent-pink);
  transform: translateY(-1px);
}

.form-pill-label input[type="radio"]:checked + .pill-radio-text {
  font-weight: 700;
  color: #ff4d8d;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 1rem;
}

.contact-success-screen {
  text-align: center;
  padding: 2rem 0;
}

.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.success-title { font-size: 1.75rem; margin-bottom: 0.75rem; }
.success-desc { color: var(--text-secondary); margin-bottom: 2rem; }

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast-msg {
  padding: 0.85rem 1.25rem;
  background-color: #0e0f12;
  color: #ffffff;
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid #ff4d8d;
  animation: toast-in 0.3s ease forwards;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Touch & Reduced Motion Fallbacks */
@media (pointer: coarse), (hover: none), (prefers-reduced-motion: reduce) {
  html { cursor: auto !important; }
  a, button, input, select, textarea, label { cursor: pointer !important; }
  .custom-cursor, .cursor-follower, .cursor-radial-glow, .cursor-particle-canvas {
    display: none !important;
  }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS (LAPTOP, TABLET & MOBILE)
   ========================================================================== */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 1280px) {
  .availability-badge { display: none; }
  .nav-menu { gap: 0.65rem; }
  .nav-link { font-size: 0.8125rem; }
}

@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .nav-menu { display: none; }
  .desktop-head-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .availability-badge { display: none; }
}

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .founder-grid { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .founder-actions { justify-content: center; }
  .about-card, .founder-card { padding: 2.25rem 1.5rem; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .estimator-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .positioning-usp-card > div[style*="grid-template-columns"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .site-head {
    padding: 0 0.5rem;
    top: 0.5rem;
  }
  
  .head-container {
    padding: 0.5rem 0.85rem;
  }

  .brand-logo-img {
    width: 24px;
    height: 24px;
  }

  .brand-name {
    font-size: 0.95rem;
  }
  
  .s-hero {
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 3rem;
  }
  
  .hero-badges {
    white-space: normal;
    flex-wrap: wrap;
    border-radius: var(--radius-md);
    padding: 0.5rem 0.75rem;
    font-size: 0.725rem;
    gap: 0.35rem;
    line-height: 1.4;
    text-align: center;
    max-width: 100%;
  }

  .badge-separator { display: none; }
  .badge-item { display: inline-block; }

  .hero-title {
    font-size: clamp(1.85rem, 6.5vw, 2.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  .hero-subtitle-desc {
    font-size: 0.925rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
  }

  .stat-card {
    padding: 1.25rem 0.85rem;
  }

  .stat-number {
    font-size: 1.65rem;
  }

  .stat-label {
    font-size: 0.775rem;
  }

  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .blog-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-highlights { grid-template-columns: 1fr; gap: 0.75rem; }
  
  /* Audit Tool Mobile Refinements */
  .audit-score-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .audit-funnel-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  .audit-terminal-box {
    padding: 1rem;
    font-size: 0.775rem;
  }

  .audit-input-bar {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 0.5rem;
    gap: 0.5rem;
  }

  .audit-input-bar input {
    width: 100%;
    text-align: center;
    padding: 0.75rem;
  }

  .audit-input-bar button {
    width: 100%;
  }

  /* Final CTA and Footer */
  .final-cta-title {
    font-size: clamp(1.65rem, 5.5vw, 2.25rem);
  }

  .final-cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }

  .final-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .foot-container {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }

  .foot-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  /* Modals Mobile Sizing */
  .modal-card {
    padding: 1.5rem 1.15rem;
    max-height: 90vh;
    width: 95vw;
    max-width: 95vw;
    border-radius: 16px;
  }

  .modal-title { font-size: 1.35rem; }
  .step-progress-bar { font-size: 0.725rem; }
  .quote-card { padding: 1.75rem 1.15rem; }
  .estimator-box { padding: 1.35rem 1rem; }

  .work-filters {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
  }

  .filter-btn {
    font-size: 0.75rem;
    padding: 0.45rem 0.85rem;
  }
}

@media (max-width: 576px) {
  .site-head {
    top: 0.35rem;
    padding: 0 0.35rem;
  }

  .head-container {
    padding: 0.45rem 0.75rem;
  }

  .hero-title {
    font-size: clamp(1.7rem, 7.5vw, 2.15rem);
  }

  .hero-badges {
    font-size: 0.68rem;
    padding: 0.4rem 0.6rem;
  }

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

  .stat-card {
    padding: 1rem 0.6rem;
  }

  .stat-number {
    font-size: 1.45rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .positioning-usp-card > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .business-options-grid {
    grid-template-columns: 1fr;
    max-height: 250px;
  }

  .form-grid-pills {
    grid-template-columns: 1fr;
  }

  .form-pill-label {
    padding: 0.7rem 0.85rem;
    font-size: 0.825rem;
  }

  .about-card, .founder-card {
    padding: 1.75rem 1.15rem;
  }

  .founder-avatar {
    width: 100px;
    height: 100px;
  }

  .founder-badges {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

  .founder-actions {
    flex-direction: column;
    width: 100%;
  }

  .founder-actions .btn {
    width: 100%;
  }

  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 5.5rem;
  }

  .toast-msg {
    font-size: 0.8rem;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  /* Pingu Mobile Native Bottom-Sheet Experience */
  .pingu-widget {
    bottom: 1rem;
    right: 1rem;
  }

  .intercom-launcher {
    width: 52px;
    height: 52px;
  }

  .launcher-avatar {
    width: 38px;
    height: 38px;
  }

  .pingu-speech-bubble {
    right: 0;
    bottom: 64px;
    max-width: calc(100vw - 3rem);
    font-size: 0.78rem;
    padding: 0.7rem 0.9rem;
  }

  .pingu-pop-card {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    border-radius: 24px 24px 0 0 !important;
    border-bottom: none !important;
    max-height: 85vh !important;
    box-shadow: 0 -15px 50px rgba(0, 0, 0, 0.95) !important;
    z-index: 100000;
  }

  .pingu-card-view {
    padding: 1.25rem 1rem !important;
  }

  .pingu-compact-chat {
    height: 210px !important;
    max-height: 38vh !important;
  }

  .pingu-hero-avatar-box {
    width: 76px;
    height: 76px;
    margin-bottom: 0.5rem;
  }

  .pingu-hero-img {
    width: 64px;
    height: 64px;
  }

  .pingu-opt-btn {
    padding: 0.75rem 0.95rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.55rem;
  }

  .hero-stats-grid {
    grid-template-columns: 1fr;
  }

  .btn-lg {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
}

.glow-highlight-btn {
  background: linear-gradient(135deg, #ff4d8d, #c084fc) !important;
  color: #ffffff !important;
  box-shadow: 0 0 25px rgba(255, 77, 141, 0.6), 0 0 50px rgba(192, 132, 252, 0.3) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 77, 141, 0.6), 0 0 40px rgba(192, 132, 252, 0.3);
  }
  50% {
    box-shadow: 0 0 35px rgba(255, 77, 141, 0.95), 0 0 60px rgba(255, 230, 0, 0.6);
  }
}

/* ==========================================================================
   PINGU 2-OPTION REAL-TIME CHATBOT SUPPORT & AUTO-POPUP STYLES
   ========================================================================== */
.pingu-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99999;
  font-family: var(--font-sans);
}

/* Floating Launcher Button */
.intercom-launcher {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0d0f15;
  border: 2px solid rgba(255, 77, 141, 0.7);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 77, 141, 0.45);
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.intercom-launcher:hover {
  transform: translateY(-4px) scale(1.08);
  border-color: #ff70a6;
  box-shadow: 0 15px 40px rgba(255, 77, 141, 0.75), 0 0 35px rgba(192, 132, 252, 0.5);
}

.launcher-icon-wrapper {
  position: relative;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.launcher-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(255, 77, 141, 0.5);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
  animation: pinguFloat 3s infinite ease-in-out;
}

@keyframes pinguFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.launcher-status-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #10b981;
  border: 2px solid #0d0f15;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.launcher-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #ff4d8d;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0d0f15;
  box-shadow: 0 2px 8px rgba(255, 77, 141, 0.6);
}

/* Proactive Speech Bubble */
.pingu-speech-bubble {
  position: absolute;
  bottom: 74px;
  right: 0;
  background: #12141e;
  color: #f1f5f9;
  border: 1px solid rgba(255, 77, 141, 0.5);
  border-radius: 16px;
  padding: 0.85rem 1.15rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 77, 141, 0.25);
  width: 270px;
  max-width: calc(100vw - 3rem);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  animation: popInPingu 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99998;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pingu-speech-bubble:hover {
  transform: translateY(-2px);
  border-color: #ff4d8d;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.9), 0 0 25px rgba(255, 77, 141, 0.4);
}

.pingu-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 22px;
  width: 14px;
  height: 14px;
  background: #12141e;
  border-right: 1px solid rgba(255, 77, 141, 0.5);
  border-bottom: 1px solid rgba(255, 77, 141, 0.5);
  transform: rotate(45deg);
}

.bubble-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #94a3b8;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.bubble-close-btn:hover {
  background: rgba(255, 77, 141, 0.3);
  color: #ffffff;
}

/* Pingu 2-Option Card Popup Window */
.pingu-pop-card {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 370px;
  max-width: calc(100vw - 2rem);
  background: #0d0f18;
  border: 2px solid rgba(255, 77, 141, 0.45);
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 40px rgba(255, 77, 141, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: popInPingu 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(20px);
}

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

.pingu-top-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #94a3b8;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.pingu-top-close:hover {
  background: rgba(255, 77, 141, 0.3);
  color: #ff4d8d;
  transform: rotate(90deg);
}

.pingu-card-view {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.pingu-hero-avatar-box {
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(255, 77, 141, 0.22) 0%, rgba(192, 132, 252, 0.08) 60%, transparent 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  margin-bottom: 0.75rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s ease;
}

.pingu-hero-avatar-box:hover {
  transform: scale(1.12);
  background: radial-gradient(circle, rgba(255, 77, 141, 0.4) 0%, rgba(255, 230, 0, 0.2) 60%, transparent 80%);
}

.pingu-hero-avatar-box:active {
  transform: scale(0.92);
}

.pingu-hero-img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255, 77, 141, 0.6);
  box-shadow: 0 0 25px rgba(255, 77, 141, 0.45);
  animation: pinguWave 3.5s infinite ease-in-out;
  transition: transform 0.3s ease;
}

/* Excited Bounce Animation on Click / Noot Noot */
.pingu-excited-bounce {
  animation: pinguExcitedNoot 0.85s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
}

@keyframes pinguExcitedNoot {
  0% { transform: scale(1) rotate(0deg); }
  20% { transform: scale(1.25, 0.85) translateY(4px); }
  45% { transform: scale(0.88, 1.28) translateY(-14px) rotate(-12deg); }
  65% { transform: scale(1.15, 0.95) translateY(-4px) rotate(10deg); }
  85% { transform: scale(0.98, 1.05) translateY(0) rotate(-4deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Floating Cartoon Music & Sparkle Notes */
.pingu-floating-note {
  position: absolute;
  font-size: 1.2rem;
  pointer-events: none;
  z-index: 100;
  animation: floatUpAndFade 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.8));
}

@keyframes floatUpAndFade {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.4) rotate(0deg);
  }
  20% {
    opacity: 1;
    transform: translate(calc(var(--rand-x, 0px) * 0.4), -18px) scale(1.2) rotate(calc(var(--rand-rot, 0deg) * 0.5));
  }
  100% {
    opacity: 0;
    transform: translate(var(--rand-x, 0px), -65px) scale(1.4) rotate(var(--rand-rot, 0deg));
  }
}

/* Interactive Noot Noot Mini Speech Badge */
.pingu-noot-bubble-badge {
  position: absolute;
  top: -12px;
  right: -18px;
  background: linear-gradient(135deg, #ff4d8d, #ff70a6);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  box-shadow: 0 4px 15px rgba(255, 77, 141, 0.6);
  border: 1.5px solid #ffffff;
  animation: badgePop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  pointer-events: none;
  white-space: nowrap;
  z-index: 25;
}

@keyframes badgePop {
  0% { transform: scale(0) rotate(-15deg); opacity: 0; }
  100% { transform: scale(1) rotate(5deg); opacity: 1; }
}

@keyframes pinguWave {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-5deg) scale(1.03); }
  75% { transform: rotate(5deg) scale(1.03); }
}

.pingu-card-header-text {
  text-align: center;
  margin-bottom: 1.25rem;
}

.pingu-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.pingu-card-subtitle {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.45;
}

/* The 2 Primary Options */
.pingu-two-options {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pingu-opt-btn {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid transparent;
  width: 100%;
  box-sizing: border-box;
}

.opt-pingu {
  background: linear-gradient(135deg, rgba(255, 77, 141, 0.18), rgba(192, 132, 252, 0.15));
  border-color: rgba(255, 77, 141, 0.45);
  color: #ffffff;
}

.opt-pingu:hover {
  background: linear-gradient(135deg, rgba(255, 77, 141, 0.35), rgba(192, 132, 252, 0.3));
  border-color: #ff4d8d;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 77, 141, 0.4);
}

.opt-advisor {
  background: #151824;
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.opt-advisor:hover {
  background: #1c2132;
  border-color: #10b981;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.opt-icon-badge {
  font-size: 1.45rem;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.opt-content {
  flex: 1;
  text-align: left;
}

.opt-content strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.opt-content span {
  display: block;
  font-size: 0.775rem;
  color: #94a3b8;
  margin-top: 0.15rem;
}

.opt-arrow {
  color: #ff70a6;
  font-size: 1.05rem;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.pingu-opt-btn:hover .opt-arrow {
  transform: translateX(3px);
}

/* LIVE CHAT VIEW STYLES */
.pingu-live-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pingu-back-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ff70a6;
  font-size: 0.775rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pingu-back-btn:hover {
  background: rgba(255, 77, 141, 0.2);
  border-color: #ff4d8d;
}

.pingu-live-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
}

/* Chat Messages Container */
.pingu-compact-chat {
  width: 100%;
  height: 220px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding-right: 0.25rem;
}

.pingu-compact-chat::-webkit-scrollbar {
  width: 4px;
}

.pingu-compact-chat::-webkit-scrollbar-thumb {
  background: rgba(255, 77, 141, 0.4);
  border-radius: 99px;
}

/* Message Bubble Formatting */
.chat-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  width: 100%;
  animation: fadeInMsg 0.25s ease-out;
}

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

.chat-msg.msg-pingu {
  justify-content: flex-start;
}

.chat-msg.msg-user {
  justify-content: flex-end;
}

.msg-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 77, 141, 0.4);
  background: #1a1c29;
}

.chat-msg.msg-user .msg-avatar {
  order: 2;
  border-color: rgba(192, 132, 252, 0.6);
}

.msg-bubble {
  max-width: 82%;
  padding: 0.65rem 0.95rem;
  border-radius: 14px;
  font-size: 0.825rem;
  line-height: 1.45;
  word-break: break-word;
}

.msg-pingu .msg-bubble {
  background: #171926;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-left-radius: 4px;
}

.msg-pingu .msg-bubble strong {
  color: #ffffff;
}

.msg-pingu .msg-bubble a {
  color: #ff70a6;
  text-decoration: underline;
}

.msg-user .msg-bubble {
  background: linear-gradient(135deg, #ff4d8d, #c084fc);
  color: #ffffff;
  font-weight: 500;
  border-top-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(255, 77, 141, 0.3);
}

/* Typing Indicator Animation */
.typing-dots {
  display: inline-flex;
  gap: 4px;
  padding: 4px 2px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background: #ff70a6;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
}

/* Compact Chips */
.pingu-compact-chips {
  width: 100%;
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  margin-bottom: 0.75rem;
  padding-bottom: 0.25rem;
}

.pingu-compact-chips::-webkit-scrollbar {
  height: 3px;
}

.pingu-compact-chips::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
}

.compact-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 77, 141, 0.35);
  color: #ff70a6;
  font-size: 0.725rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 99px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.compact-chip:hover {
  background: rgba(255, 77, 141, 0.2);
  border-color: #ff4d8d;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Compact Input Form */
.pingu-compact-form {
  width: 100%;
  display: flex;
  gap: 0.45rem;
}

.pingu-compact-form input {
  flex: 1;
  background: #141724;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  padding: 0.55rem 0.95rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.825rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.pingu-compact-form input:focus {
  border-color: #ff4d8d;
  box-shadow: 0 0 10px rgba(255, 77, 141, 0.25);
}

.pingu-compact-send {
  background: linear-gradient(135deg, #ff4d8d, #c084fc);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.775rem;
  padding: 0.55rem 0.95rem;
  border-radius: 99px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pingu-compact-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 77, 141, 0.4);
}

@media (max-width: 480px) {
  .pingu-speech-bubble {
    font-size: 0.8rem;
  }
}


/* ==========================================================================
   INTERACTIVE NEWSLETTER SECTION STYLES
   ========================================================================== */
.s-newsletter {
  background: var(--color-card-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.s-newsletter::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 77, 141, 0.12) 0%, rgba(192, 132, 252, 0.05) 50%, transparent 80%);
  pointer-events: none;
}

.newsletter-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255, 77, 141, 0.1);
  border: 1px solid rgba(255, 77, 141, 0.3);
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff70a6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.newsletter-input-group {
  display: flex;
  width: 100%;
  max-width: 560px;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.35rem;
  border-radius: 99px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: #ff4d8d;
  box-shadow: 0 0 20px rgba(255, 77, 141, 0.25);
}

.newsletter-input {
  flex: 1;
  border: none !important;
  background: transparent !important;
  padding: 0.75rem 1.25rem !important;
  font-size: 0.925rem !important;
  color: var(--color-text) !important;
  border-radius: 99px !important;
  outline: none !important;
}

.newsletter-btn {
  border-radius: 99px !important;
  padding: 0.75rem 1.6rem !important;
  font-size: 0.875rem !important;
  white-space: nowrap;
}

.newsletter-guarantee {
  font-size: 0.775rem;
  color: var(--color-text-secondary);
  opacity: 0.85;
}

.newsletter-success-box {
  margin-top: 1.75rem;
  padding: 1.5rem 2rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
}

@media (max-width: 576px) {
  .newsletter-input-group {
    flex-direction: column;
    border-radius: var(--radius-md);
    padding: 0.6rem;
  }
  .newsletter-input {
    width: 100%;
    text-align: center;
  }
  .newsletter-btn {
    width: 100%;
  }
}

/* ==========================================================================
   FLOATING LEFT STICKED LIVE PROJECTS BUTTON
   ========================================================================== */
.sticky-live-btn {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 99998;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1.5px solid rgba(239, 68, 68, 0.45);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), 0 0 20px rgba(239, 68, 68, 0.25);
  backdrop-filter: blur(16px);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.875rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
}

.sticky-live-btn:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: rgba(239, 68, 68, 0.85);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(239, 68, 68, 0.45);
  color: #ff4d8d;
}

.sticky-btn-text {
  letter-spacing: 0.02em;
}

.sticky-btn-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, #ff4d8d, #c084fc);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.725rem;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(255, 77, 141, 0.5);
}

@media (max-width: 576px) {
  .sticky-live-btn {
    bottom: 1rem;
    left: 1rem;
    padding: 0.6rem 0.95rem;
    font-size: 0.8rem;
  }
  .sticky-btn-text {
    font-size: 0.775rem;
  }
}

/* Nav Live Dot & Blinking Animations */
.nav-live-dot, .live-blinking-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: middle;
  animation: liveRedBlink 1.2s infinite ease-in-out;
}

@keyframes liveRedBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px #ef4444, 0 0 18px rgba(239, 68, 68, 0.8);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.85);
    box-shadow: 0 0 2px #ef4444;
  }
}

/* Hero Section */
.live-hero-section {
  padding-top: 8.5rem;
  padding-bottom: 3.5rem;
  position: relative;
  background: radial-gradient(circle at 50% 0%, rgba(255, 77, 141, 0.08) 0%, transparent 60%);
}

.live-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: #dc2626;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}



.live-hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.live-hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.6;
}

/* Hero Stats Row */
.live-stats-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.25rem 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.live-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.live-stat-item .stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-primary);
}

.live-stat-item .stat-lbl {
  font-size: 0.775rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
  font-weight: 500;
}

.live-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-medium);
}

/* Live Projects Section Grid */
.live-projects-section {
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.live-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.25rem;
}

/* Live Project Card */
.live-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
  transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.live-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff4d8d, #c084fc, #ffe600);
}

.live-card:hover {
  transform: translateY(-6px);
  border-color: #ff4d8d;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 77, 141, 0.2);
}

.live-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.live-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: var(--radius-full);
}

.live-badge-text {
  font-size: 0.7rem;
  font-weight: 800;
  color: #dc2626;
  letter-spacing: 0.06em;
}

.industry-badge {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
  background: var(--bg-tertiary);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.live-card-head {
  margin-bottom: 0.9rem;
}

.live-project-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.live-status-pill {
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 700;
  color: #be185d;
  background: rgba(255, 112, 166, 0.14);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 112, 166, 0.35);
}

.live-project-desc {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

/* Progress Section */
.progress-section {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  margin-bottom: 1.75rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.progress-percent {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: #d946ef;
  font-weight: 800;
}

.progress-track {
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}

[data-theme="dark"] .progress-track {
  background: rgba(255, 255, 255, 0.12);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff4d8d 0%, #c084fc 60%, #ffe600 100%);
  border-radius: var(--radius-full);
  transition: width 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  box-shadow: 0 0 12px rgba(255, 77, 141, 0.6);
}

.progress-meta {
  margin-top: 0.6rem;
  font-size: 0.775rem;
  color: var(--text-secondary);
}

/* Timeline Stages Section */
.timeline-section {
  margin-bottom: 1.75rem;
}

.timeline-title, .services-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.timeline-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.775rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.timeline-step.status-completed {
  background: rgba(16, 185, 129, 0.14);
  border-color: rgba(16, 185, 129, 0.35);
  color: #047857;
}

.timeline-step.status-in-progress {
  background: rgba(255, 112, 166, 0.16);
  border-color: rgba(255, 112, 166, 0.45);
  color: #be185d;
  animation: pulseInProg 2s infinite ease-in-out;
}

@keyframes pulseInProg {
  0%, 100% { border-color: rgba(255, 112, 166, 0.45); }
  50% { border-color: rgba(255, 112, 166, 0.85); box-shadow: 0 0 10px rgba(255, 112, 166, 0.3); }
}

.timeline-step.status-upcoming {
  background: var(--bg-tertiary);
  border-color: var(--border-light);
  color: var(--text-muted);
}

/* Services Included Pills */
.services-section {
  margin-bottom: 1.75rem;
}

.services-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-pill {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.service-pill:hover {
  background: rgba(255, 112, 166, 0.15);
  border-color: #ff4d8d;
  color: var(--text-primary);
}

/* Latest Update Preview Box */
.latest-update-box {
  background: var(--bg-tertiary);
  border-left: 4px solid #ff4d8d;
  padding: 1rem 1.15rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 1.75rem;
  border-top: 1px solid var(--border-light);
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.update-box-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.update-badge {
  font-size: 0.7rem;
  font-weight: 800;
  color: #7c3aed;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.update-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.update-headline {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.update-summary {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* Card Footer Button */
.live-card-footer {
  margin-top: auto;
  padding-top: 0.75rem;
}

.view-progress-btn {
  width: 100%;
  justify-content: center;
}

/* Outdated Website Bottom CTA Section */
.s-outdated-cta {
  background: radial-gradient(circle at 50% 100%, rgba(255, 77, 141, 0.12) 0%, transparent 70%);
  padding: 5rem 0;
  border-top: 1px solid var(--border-light);
}

.cta-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 77, 141, 0.12);
  border: 1px solid rgba(255, 77, 141, 0.35);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  color: #be185d;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.outdated-cta-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.outdated-cta-desc {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.outdated-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Modal Updates Timeline */
.project-updates-modal-card {
  max-width: 680px !important;
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
}

.modal-project-header {
  margin-bottom: 1.5rem;
}

.modal-project-name {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.modal-project-sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.modal-progress-bar-box {
  background: var(--bg-tertiary);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 1.75rem;
}

.timeline-heading {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.updates-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(255, 112, 166, 0.35);
}

.update-timeline-item {
  position: relative;
}

.update-marker {
  position: absolute;
  left: -1.65rem;
  top: 0.25rem;
  width: 10px;
  height: 10px;
  background: #ff70a6;
  border-radius: 50%;
  box-shadow: 0 0 10px #ff70a6;
}

.update-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
}

.update-badge-pill {
  font-size: 0.7rem;
  font-weight: 700;
  color: #7c3aed;
  background: rgba(192, 132, 252, 0.15);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
}

.update-time {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.update-item-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.update-item-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

.modal-footer-cta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.modal-footer-cta p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .live-hero-section {
    padding-top: 7rem;
  }
  .live-projects-grid {
    grid-template-columns: 1fr;
  }
  .live-stats-row {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }
  .live-stat-divider {
    width: 60%;
    height: 1px;
  }
  .live-card {
    padding: 1.5rem;
  }
  .outdated-cta-actions .btn {
    width: 100%;
  }
}

/* Category Filter Chips */
.live-filters-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.live-filter-chip {
  padding: 0.55rem 1.15rem;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.live-filter-chip:hover {
  transform: translateY(-2px);
  border-color: #ff4d8d;
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(255, 77, 141, 0.2);
}

.live-filter-chip.active {
  background: linear-gradient(135deg, #ff4d8d, #c084fc);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(255, 77, 141, 0.4);
}

/* Upcoming Projects & Retainers Custom Badges & Boxes */
.upcoming-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.35);
  border-radius: var(--radius-full);
}

.upcoming-badge-text {
  font-size: 0.7rem;
  font-weight: 800;
  color: #7c3aed;
  letter-spacing: 0.06em;
}

.retainer-badge-wrapper {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.75rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-full);
}

.retainer-badge-text {
  font-size: 0.7rem;
  font-weight: 800;
  color: #047857;
  letter-spacing: 0.06em;
}

.upcoming-status-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.retainer-status-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.upcoming-notice-box {
  margin-top: 0.5rem;
  padding: 0.6rem 0.85rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}

.upcoming-notice-box span {
  font-size: 0.825rem;
  color: var(--text-primary);
}

.upcoming-subtext {
  font-size: 0.775rem;
  color: var(--text-secondary);
  margin-top: 0.35rem;
  margin-bottom: 0;
  line-height: 1.45;
}

.upcoming-modal-box {
  background: rgba(124, 58, 237, 0.06) !important;
  border-color: rgba(124, 58, 237, 0.2) !important;
}

.upcoming-status-pill {
  font-size: 0.775rem;
  font-weight: 700;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.upcoming-modal-subtext {
  font-size: 0.825rem;
  color: var(--text-secondary);
  margin-top: 0.6rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.retainer-fill {
  background: linear-gradient(90deg, #10b981, #34d399) !important;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5) !important;
}

/* Visual De-cluttering & Clamping for Lightweight UI */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 3.2em;
}

.service-pill.more-pill {
  background: rgba(255, 77, 141, 0.12);
  color: #ff4d8d;
  font-weight: 700;
  border-color: rgba(255, 77, 141, 0.3);
}

/* Flagship Featured Card Spotlight Styling */
.live-card.featured-card {
  border: 2.5px solid #ff4d8d !important;
  background: linear-gradient(180deg, rgba(255, 77, 141, 0.05) 0%, var(--bg-card) 100%) !important;
  box-shadow: 0 16px 45px rgba(255, 77, 141, 0.22), 0 0 25px rgba(192, 132, 252, 0.15) !important;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .live-card.featured-card {
    grid-column: span 2;
  }
}

.featured-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, #ff4d8d, #c084fc);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-size: 0.725rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 0 15px rgba(255, 77, 141, 0.45);
}

.featured-flag-title {
  font-size: 2rem !important;
  background: linear-gradient(135deg, var(--text-primary) 0%, #ff4d8d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.flagship-modal-box {
  background: rgba(255, 77, 141, 0.08) !important;
  border: 1px solid rgba(255, 77, 141, 0.3) !important;
}

.modal-full-desc-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  padding: 1.15rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.modal-desc-text {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.modal-services-box {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  padding: 1.15rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}

/* COMBINED ABOUT US & MEET THE FOUNDER 2-COLUMN SECTION */
.s-about-founder {
  padding: 5rem 0;
  border-top: 1px solid var(--border-light);
  background: radial-gradient(circle at 50% 0%, rgba(255, 77, 141, 0.05) 0%, transparent 70%);
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.25rem;
  align-items: stretch;
}

@media (max-width: 991px) {
  .about-founder-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.about-col-card, .founder-col-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
}

.col-title {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 0.5rem;
  margin-bottom: 1.15rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.founder-col-card {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.founder-visual-inline {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* HIGH-END WIDESCREEN RESPONSIVE RATIO & SIDE-SPACE FILL */
.s-newsletter .container {
  max-width: 1440px !important;
  width: 95% !important;
}

.s-newsletter .newsletter-form {
  max-width: 860px;
  margin: 2rem auto 0;
}

.s-about .container,
.s-founder .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

.s-final-cta .container {
  max-width: 1550px !important;
  width: 95% !important;
}

@media (max-width: 991px) {
  .s-newsletter .container,
  .s-about .container,
  .s-founder .container,
  .s-final-cta .container {
    width: 100% !important;
    padding: 0 1.25rem !important;
  }

  .about-grid,
  .founder-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}


