:root {
  --bg: #0F172A;
  --bg-deep: #020617;
  --surface: #0B1220;
  --surface-2: #0F172A;
  --text: #E2E8F0;
  --text-muted: #94A3B8;
  --border: rgba(148, 163, 184, 0.15);
  --accent: #3B82F6;
  --accent-2: #8B5CF6;
  --glow-1: rgba(59, 130, 246, 0.3);
  --glow-2: rgba(6, 182, 212, 0.18);
}

body.theme-purple {
  --glow-1: rgba(139, 92, 246, 0.4);
  --glow-2: rgba(59, 130, 246, 0.18);
}

body.theme-cyan {
  --glow-1: rgba(6, 182, 212, 0.4);
  --glow-2: rgba(59, 130, 246, 0.18);
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text);
}

h1 {
  font-size: clamp(48px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -1px;
}

h2 {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h3 {
  font-size: clamp(24px, 3vw, 28px);
  line-height: 1.3;
}

body, p, span, div, a, li, label, input, textarea {
  font-family: "Inter", sans-serif;
  font-size: 16px;
}
@media (min-width: 992px) {
  body, p, span, div, a, li, label, input, textarea {
    font-size: 18px;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

body {
  background-color: var(--bg) !important;
  color: var(--text-muted);
  position: relative;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle 600px at 50% 50%, var(--glow-1), transparent 60%),
    radial-gradient(circle 500px at 50% 100px, var(--glow-2), transparent 60%);
}

body > * {
  position: relative;
  z-index: 1;
}

/* =========================================
   OVERRIDE BOOTSTRAP FOR DARK THEME
   ========================================= */
.bg-white {
  background-color: var(--surface) !important;
}

.bg-light {
  background-color: var(--surface-2) !important;
}

.bg-dark {
  background-color: var(--bg-deep) !important;
}

.text-dark {
  color: var(--text) !important;
}

.text-secondary {
  color: var(--text-muted) !important;
}

.border, .border-bottom, .border-top, .border-end {
  border-color: var(--border) !important;
}

/* =========================================
   LAYOUT & COMPONENTS
   ========================================= */
.section-padding {
  padding: 64px 0;
}
@media (min-width: 992px) {
  .section-padding {
    padding: 96px 0;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #3B82F6 !important;
}

/* Glassmorphism Header */
header.bg-white {
  background-color: rgba(2, 6, 23, 0.7) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border) !important;
}

/* Premium Dark Cards */
.card, .service-block, .bg-white.p-5, .bg-white.p-4 {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.35) !important;
}

/* Buttons */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%) !important;
  border: none !important;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
  color: #fff !important;
}

.btn-outline-custom {
  background: transparent !important;
  border: 1px solid rgba(148, 163, 184, 0.3) !important;
  color: var(--text) !important;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-custom:hover {
  background: #1E293B !important;
  border-color: #1E293B !important;
  color: #FFFFFF !important;
}

.badge-custom {
  background: rgba(59, 130, 246, 0.15) !important;
  color: #93C5FD !important;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.25);
  letter-spacing: 0.5px;
}

/* Form Inputs for Dark Mode */
.form-control, .form-select {
  background-color: rgba(2, 6, 23, 0.6) !important;
  color: var(--text) !important;
  border: 1px solid rgba(148, 163, 184, 0.2) !important;
  transition: all 0.3s ease;
}
.form-control::placeholder, .form-select::placeholder {
  color: rgba(148, 163, 184, 0.6) !important;
}
.form-control:focus, .form-select:focus {
  background-color: rgba(2, 6, 23, 0.85) !important;
  border-color: var(--accent) !important;
  color: var(--text) !important;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1) !important;
}

select.form-select option {
  background-color: #0B1220;
  color: #E2E8F0;
}

/* Icons */
.bi {
  transition: all 0.3s ease;
}

/* =========================================
   UTILITIES (Replaced Inline Styles)
   ========================================= */
/* Box Sizing */
.icon-box-40 {
  width: 40px;
  height: 40px;
}

.icon-box-50 {
  width: 50px;
  height: 50px;
}

.icon-box-60 {
  width: 60px;
  height: 60px;
}

.icon-box-80 {
  width: 80px;
  height: 80px;
}

/* Constrained Widths */
.max-w-600 {
  max-width: 600px;
}

.max-w-800 {
  max-width: 800px;
}

.max-w-900 {
  max-width: 900px;
}

/* Custom Formatting */
.border-subtle-10 {
  border: 10px solid rgba(148, 163, 184, 0.12);
}

.bg-subtle-stripe {
  background-color: rgba(148, 163, 184, 0.05);
}

.timeline-dot {
  width: 16px;
  height: 16px;
}

.timeline-line {
  width: 2px;
  min-height: 50px;
}

.bg-overlay-dark {
  background: rgba(2, 6, 23, 0.5);
}

.text-lg-lead {
  font-size: 1.1rem;
  line-height: 1.8;
}

.progress-h-8 {
  height: 8px;
}

/* Abstract Blobs */
.hero-shape-blob {
  width: 400px;
  height: 400px;
  top: -50px;
  right: -50px;
  z-index: -1;
}

.contact-glow-blob {
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.2);
  filter: blur(80px);
  top: -200px;
  right: -100px;
}

/* Progress Bars */
.w-95 {
  width: 95%;
}

.w-90 {
  width: 90%;
}

.w-85 {
  width: 85%;
}

.w-80 {
  width: 80%;
}

/* Reset default link styling */
a {
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.05em;
  letter-spacing: -0.04em;
}

.brand-logo-main {
  color: #f8fafc;
}

.brand-logo-accent {
  background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Header */
header {
  transition: all 0.3s ease;
}
header.scrolled {
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
}

.mobile-nav-collapse {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile-nav-collapse nav a {
  display: block;
  padding: 0.95rem 0;
  color: #0f172a;
  font-weight: 600;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.mobile-nav-collapse nav a:last-child {
  border-bottom: 0;
}

.mobile-nav-collapse .btn {
  width: 100%;
}

.home-section-nav {
  gap: 0.65rem;
  padding: 0.38rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.section-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1;
  background: transparent;
  color: rgba(226, 232, 240, 0.74) !important;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.section-nav-link::after {
  content: none;
}

.section-nav-link.active::after,
.section-nav-link:hover::after {
  transform: scaleX(1);
}

.section-nav-link:hover,
.section-nav-link.active {
  color: #f8fafc !important;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.2), 0 10px 24px rgba(2, 6, 23, 0.16);
}

/* Card Transitions & Glows */
.transition-smooth {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12) !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
}
.product-card:hover::before {
  opacity: 1;
}

/* Form Styles */
.focus-ring-primary:focus {
  border-color: #3B82F6 !important;
  box-shadow: 0 0 0 0.25rem rgba(59, 130, 246, 0.25) !important;
}

/* Buttons */
.btn-primary-custom, .btn-outline-custom {
  display: inline-block;
  border-radius: 12px;
  font-weight: 600;
  padding: 14px 28px;
  font-family: "Inter", sans-serif;
  text-align: center;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.footer-meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.16);
  font-size: 0.84rem;
  font-weight: 600;
}

/* Gradient Text Selection */
::selection {
  background: rgba(59, 130, 246, 0.3);
  color: #E2E8F0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0B1220;
}

::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.25);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.4);
}

/* =========================================
   PREMIUM UI/UX ENHANCEMENTS for PRODUCT CARDS
   ========================================= */
/* Image Hover Zoom Effect */
.product-img-wrapper {
  overflow: hidden;
  position: relative;
}
.product-img-wrapper img {
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Overlay gradient for images */
.product-img-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.product-card {
  border: 1px solid var(--border) !important;
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.35) !important;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.6) !important;
}
.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}
.product-card:hover .product-img-wrapper::after {
  opacity: 1;
}
.product-card:hover .btn-light {
  background-color: rgba(59, 130, 246, 0.05) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
  color: #3B82F6 !important;
}
.product-card:hover {
  /* Animate arrow icon inside buttons */
}
.product-card:hover .btn i.bi-arrow-right {
  transform: translateX(5px);
}
.product-card:hover .btn i.bi-box-arrow-up-right {
  transform: translate(3px, -3px);
}

/* Smooth Icon Transitions */
.btn i {
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block;
}

/* Custom UI Hover Utilities for Modern Bento Cards */
.hover-scale {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hover-scale:hover {
  transform: scale(1.15) !important;
  background-color: #3B82F6 !important;
  border-color: #3B82F6 !important;
  color: #fff !important;
}

.custom-link-hover:hover {
  color: #3B82F6 !important;
}
.custom-link-hover:hover i.bi-arrow-right {
  transform: translateX(4px);
}

.hover-primary:hover {
  color: #3B82F6 !important;
  transform: translateY(-2px);
}

/* Glassmorphism Badge Upgrades */
.badge.backdrop-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
}

/* Brand Colors for Custom Badges */
.bg-envato {
  background-color: #82b541 !important;
}

.bg-wordpress {
  background-color: #21759b !important;
}

/* Typography Utilities */
.text-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.experience-overview-card,
.experience-role-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 34%), linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgb(11, 18, 32) 100%);
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.38);
}

.experience-overview-card {
  padding: 32px;
}

.experience-sticky-column {
  position: relative;
  align-self: flex-start;
}

.experience-grid {
  display: grid;
  gap: 24px;
}

.experience-role-card {
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.experience-role-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 24px 55px rgba(2, 6, 23, 0.5);
}

.experience-role-top,
.experience-tag-row,
.experience-proof-list,
.experience-stat-stack,
.experience-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.experience-role-top {
  justify-content: space-between;
  margin-bottom: 18px;
}

.experience-date-pill,
.experience-company-pill,
.experience-tag,
.experience-proof-list span,
.experience-stat-chip {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.experience-date-pill,
.experience-company-pill,
.experience-tag {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.03em;
}

.experience-date-pill {
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.14);
  border-color: rgba(96, 165, 250, 0.22);
}

.experience-company-pill,
.experience-tag {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.08);
}

.experience-proof-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.72);
}

.experience-proof-list i {
  color: #60a5fa;
}

.experience-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.experience-meta-card {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(15, 23, 42, 0.56);
}

.experience-meta-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #93c5fd;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-meta-card p {
  margin: 0;
  color: #94A3B8;
  line-height: 1.7;
  font-size: 0.96rem;
}

.experience-stat-stack {
  flex-direction: column;
}

.experience-stat-chip {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  background: rgba(15, 23, 42, 0.72);
}

.experience-stat-chip strong {
  color: #f8fafc;
  font-size: 1.05rem;
}

.experience-stat-chip span {
  color: #94A3B8;
  font-size: 0.92rem;
}

@media (max-width: 991.98px) {
  .experience-overview-card,
  .experience-role-card {
    padding: 24px;
  }
  .experience-role-top {
    justify-content: flex-start;
  }
  .experience-meta-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  .experience-sticky-column .experience-overview-card {
    align-self: flex-start;
    height: fit-content;
    position: sticky;
    top: 104px;
  }
}

.stack-showcase-card,
.stack-side-panel,
.stack-community-card,
.stack-category-card,
.stack-mini-card {
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 34%), linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgb(11, 18, 32) 100%);
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.38);
}

.stack-showcase-card,
.stack-side-panel {
  padding: 32px;
}

.stack-showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.stack-kicker,
.stack-context-pill,
.stack-pill,
.stack-proof-list span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  line-height: 1;
}

.stack-kicker {
  padding: 0.75rem 1rem;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.16);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stack-context-pill {
  padding: 0.75rem 1rem;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.24);
  font-size: 0.82rem;
  font-weight: 600;
}

.stack-category-grid,
.stack-mini-grid {
  display: grid;
  gap: 18px;
}

.stack-category-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack-category-card,
.stack-community-card,
.stack-mini-card {
  padding: 22px;
}

.stack-pill-group,
.stack-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.stack-pill {
  min-height: 38px;
  padding: 0.7rem 0.95rem;
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 0.84rem;
  font-weight: 600;
}

.stack-icon-box {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.22);
  color: #93c5fd;
  font-size: 1.4rem;
}

.stack-proof-list {
  flex-direction: column;
}

.stack-proof-list span {
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.stack-proof-list i {
  color: #60a5fa;
}

.stack-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack-mini-card {
  background: rgba(15, 23, 42, 0.6);
}

.stack-mini-card strong {
  display: block;
  color: #f8fafc;
  margin-bottom: 6px;
  font-size: 1rem;
}

.stack-mini-card span {
  color: #94A3B8;
  line-height: 1.6;
  font-size: 0.92rem;
}

@media (max-width: 991.98px) {
  .stack-showcase-card,
  .stack-side-panel {
    padding: 24px;
  }
  .stack-category-grid,
  .stack-mini-grid {
    grid-template-columns: 1fr;
  }
}

.process-overview-card,
.process-step-card {
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 34%), linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgb(11, 18, 32) 100%);
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.38);
}

.process-overview-card {
  padding: 32px;
}

.process-principle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process-principle-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1rem;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
}

.process-principle-list i {
  color: #60a5fa;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.process-step-card {
  padding: 26px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 24px 55px rgba(2, 6, 23, 0.5);
}

.process-step-card-wide {
  grid-column: 1/-1;
}

.process-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}

.process-step-number {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.22);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-step-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: #e2e8f0;
  font-size: 1.2rem;
}

.process-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.process-step-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.7rem 0.95rem;
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .process-overview-card,
  .process-step-card {
    padding: 24px;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card-top,
.testimonial-proof-row,
.testimonial-source-links,
.testimonial-topbar,
.testimonial-slider-header,
.testimonial-nav,
.testimonial-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.testimonial-proof-row {
  justify-content: center;
}

.testimonial-star-pill,
.testimonial-source-pill,
.testimonial-proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  line-height: 1;
}

.testimonial-star-pill {
  gap: 0.45rem;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.22);
  font-weight: 600;
}

.testimonial-star-pill i {
  color: #fbbf24;
}

.testimonial-topbar {
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.testimonial-topbar-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.testimonial-proof-pill,
.testimonial-source-pill {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.12);
  font-weight: 600;
}

.testimonial-carousel-shell {
  position: relative;
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 34%), linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgb(11, 18, 32) 100%);
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.38);
}

.testimonial-section-intro {
  margin-bottom: 56px;
}

.testimonial-slider-header {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.testimonial-slider-count {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-slider-label {
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-slider-count strong {
  color: #f8fafc;
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
}

.testimonial-track-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  transition: transform 420ms ease;
}

.testimonial-slide-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 100%;
  padding: 32px 30px 28px;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.12), transparent 34%), linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(10, 15, 28, 0.98) 100%);
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.28);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-slide-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 24px 55px rgba(2, 6, 23, 0.45);
}

.testimonial-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.testimonial-chip-group {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.testimonial-product-name {
  margin: 0 0 20px;
  color: #f8fafc;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.testimonial-quote {
  margin: 0 0 28px;
  color: #f8fafc;
  font-family: "Poppins", sans-serif;
  font-size: 1.16rem;
  line-height: 1.7;
  letter-spacing: -0.03em;
}

.testimonial-author-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.testimonial-author {
  color: #f8fafc;
  font-size: 1.05rem;
  font-weight: 700;
}

.testimonial-top-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.12);
  font-size: 0.82rem;
  font-weight: 600;
}

.testimonial-top-chip-accent {
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(59, 130, 246, 0.26);
}

.testimonial-source-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.22);
}

.testimonial-source-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #f8fafc;
  background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
  font-size: 0.95rem;
}

.testimonial-control {
  width: auto;
  opacity: 1;
  background: transparent;
  border: 0;
  padding: 0;
}

.testimonial-control-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.28);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-control:hover .testimonial-control-icon {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.3);
}

.testimonial-track-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.testimonial-track-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
  border: 0;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-track-dot.is-active {
  width: 28px;
  background: linear-gradient(135deg, #3B82F6 0%, #8B5CF6 100%);
}

@media (max-width: 991.98px) {
  .testimonial-carousel-shell {
    padding: 26px;
  }
  .testimonial-topbar {
    align-items: flex-start;
  }
  .testimonial-slide-card {
    flex-basis: calc((100% - 18px) / 2);
    padding: 28px 24px 24px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-carousel-shell {
    padding: 22px 20px 24px;
  }
  .testimonial-section-intro {
    margin-bottom: 36px;
  }
  .testimonial-slide-card {
    flex-basis: 100%;
    padding: 24px 20px 22px;
  }
  .testimonial-quote {
    font-size: 1rem;
    line-height: 1.65;
  }
  .testimonial-slider-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-slider-header {
    gap: 18px;
  }
  .testimonial-card-top {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .testimonial-chip-group {
    justify-content: flex-start;
  }
}

.portfolio-section .featured-projects-grid {
  margin-top: 1rem;
}
.portfolio-section .featured-spotlight-card {
  border-radius: 1.5rem !important;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.16), transparent 34%), linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgb(11, 18, 32) 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.16) !important;
}
.portfolio-section .featured-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.portfolio-section .featured-rank-badge,
.portfolio-section .featured-metric-badge,
.portfolio-section .featured-tag,
.portfolio-section .featured-proof-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.03em;
}
.portfolio-section .featured-rank-badge {
  padding: 0.65rem 0.9rem;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.16);
}
.portfolio-section .featured-metric-badge {
  padding: 0.65rem 0.9rem;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.25);
}
.portfolio-section .featured-image-shell {
  height: 220px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.portfolio-section .featured-image-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
.portfolio-section .featured-tag {
  padding: 0.55rem 0.8rem;
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.portfolio-section .featured-project-copy {
  line-height: 1.7;
  min-height: 5.1rem;
}
.portfolio-section .featured-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.portfolio-section .featured-proof-list span {
  padding: 0.75rem 0.9rem;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.1);
}
.portfolio-section .featured-proof-list i {
  color: #60a5fa;
}
.portfolio-section .featured-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.portfolio-section .featured-action-row .btn {
  min-width: 140px;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.portfolio-section .btn-featured-secondary {
  background: rgba(148, 163, 184, 0.1) !important;
  border: 1px solid rgba(148, 163, 184, 0.22) !important;
  color: #e2e8f0 !important;
  font-weight: 600;
}
.portfolio-section .btn-featured-secondary:hover {
  background: rgba(59, 130, 246, 0.14) !important;
  border-color: rgba(96, 165, 250, 0.4) !important;
  color: #ffffff !important;
}
.portfolio-section .filter-grid .product-card {
  border-radius: 1.5rem !important;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 34%), linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgb(11, 18, 32) 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.16) !important;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.38) !important;
}
.portfolio-section .filter-grid .product-card:hover {
  border-color: rgba(96, 165, 250, 0.28) !important;
  box-shadow: 0 24px 50px rgba(2, 6, 23, 0.48) !important;
}
.portfolio-section .filter-grid .product-img-wrapper {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.12);
}
.portfolio-section .filter-grid .card-body {
  padding: 1.6rem !important;
}
.portfolio-section .filter-grid .card-body h3 {
  margin-bottom: 1rem !important;
  letter-spacing: -0.03em !important;
}
.portfolio-section .filter-grid .card-body .mb-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem !important;
}
.portfolio-section .filter-grid .card-body .badge:not(.bg-envato):not(.bg-wordpress) {
  background: rgba(59, 130, 246, 0.12) !important;
  border: 1px solid rgba(96, 165, 250, 0.18);
  color: #bfdbfe !important;
  border-radius: 999px !important;
  padding: 0.5rem 0.75rem !important;
}
.portfolio-section .filter-grid .text-excerpt {
  -webkit-line-clamp: 3;
  line-clamp: 3;
  min-height: 4.9rem;
  margin-bottom: 1.4rem !important;
  line-height: 1.75 !important;
}
.portfolio-section .filter-grid .border-top {
  border-color: rgba(148, 163, 184, 0.12) !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}
.portfolio-section .filter-grid .custom-link-hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #e2e8f0 !important;
  font-weight: 600;
}
.portfolio-section .filter-grid .custom-link-hover:hover {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(96, 165, 250, 0.38);
  color: #ffffff !important;
}
@media (max-width: 767.98px) {
  .portfolio-section .featured-project-copy {
    min-height: auto;
  }
  .portfolio-section .featured-action-row .btn {
    width: 100%;
  }
  .portfolio-section .filter-grid .text-excerpt {
    min-height: auto;
  }
}

/* =========================================
   LIGHT THEME HERO + GLASS
   ========================================= */
.hero-section {
  background: transparent;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow-1) 0%, transparent 70%);
  filter: blur(20px);
  top: -120px;
  right: -80px;
  z-index: 0;
}

.glass-panel {
  background: rgba(2, 6, 23, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--text-muted);
}

.hero-pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(2, 6, 23, 0.55);
  box-shadow: 0 10px 26px rgba(2, 6, 23, 0.45);
}

.hero-pill-text {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #E2E8F0;
  font-weight: 700;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.platform-badges {
  gap: 8px;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(2, 6, 23, 0.5);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

.platform-pill i {
  font-size: 14px;
  color: #93C5FD;
}

.stats-section {
  padding: 48px 0;
}

.stats-row {
  align-items: center;
}

.stat-item h2 {
  line-height: 1;
}

.stat-item p {
  line-height: 1.4;
  margin-top: 6px;
}

.service-grid {
  margin-top: 10px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(2, 6, 23, 0.6);
  border-color: rgba(59, 130, 246, 0.4);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(59, 130, 246, 0.12);
  color: #93C5FD;
  font-size: 22px;
}


.stat-chip {
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(2, 6, 23, 0.6);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.4);
}

.soft-divider {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.hero-visual-composition {
  min-height: 420px;
}

.hero-content {
  max-width: 560px;
}

.hero-heading {
  letter-spacing: -1px;
}

.hero-body {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
}

.hero-actions .btn {
  min-width: 190px;
}

@media (min-width: 992px) {
  .hero-heading {
    font-size: clamp(44px, 4.8vw, 64px);
  }
}

.code-terminal {
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px rgba(2, 6, 23, 0.65);
}

.terminal-bar {
  background: rgba(2, 6, 23, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}

.terminal-title {
  opacity: 0.9;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

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

.terminal-body {
  padding: 18px 20px 24px;
  background: rgba(11, 18, 32, 0.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  line-height: 1.7;
  color: #E2E8F0;
  min-height: 260px;
  position: relative;
}

.code-caption {
  text-align: left;
  margin-left: 6px;
}

.code-lines {
  min-height: 220px;
}

.code-line {
  white-space: nowrap;
}

.code-indent { padding-left: 18px; }
.code-indent-2 { padding-left: 36px; }

.code-key { color: #60A5FA; }
.code-name { color: #E2E8F0; }
.code-string { color: #34D399; }

.code-cursor {
  width: 10px;
  height: 18px;
  background: #93C5FD;
  display: inline-block;
  margin-top: 10px;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.code-caption {
  opacity: 0.85;
}

/*# sourceMappingURL=main.css.map */
