/* ========================
   RESET & BASE
======================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(79, 110, 247, 0.25);
  color: #ffffff;
}

:root {
  /* Blue palette — 70% theme */
  --blue: #4F6EF7;
  --blue-dark: #3854D1;
  --blue-dim: rgba(79, 110, 247, 0.12);
  --blue-glow: rgba(79, 110, 247, 0.22);
  --blue-border: rgba(79, 110, 247, 0.25);

  /* Green palette — 30% accent */
  --green: #2ECC71;
  --green-dim: rgba(46, 204, 113, 0.1);
  --green-glow: rgba(46, 204, 113, 0.2);
  --green-border: rgba(46, 204, 113, 0.25);

  /* Neutrals */
  --bg: #0d1224;
  --surface: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --muted: rgba(255, 255, 255, 0.45);
  --white: #ffffff;
}

body {
  font-family: 'Outfit', sans-serif;
  background: #fff;
  color: var(--white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ========================
   PRELOADER
======================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.06);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========================
   HERO SECTION
======================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-bottom: 80px;
  background-image: linear-gradient(rgba(11, 17, 32, 0.85), rgba(11, 17, 32, 0.95)), url('https://ssdemo.com.au/zoho_landing_page_supportsoft/images/workspace_bg.webp');
  background-size: cover;
  background-position: center;
}

/* Ambient glows */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 10s ease-in-out infinite;
}

.blue-glow {
  width: 750px;
  height: 750px;
  background: rgba(79, 110, 247, 0.22);
  top: -200px;
  left: -200px;
}

.green-glow {
  width: 500px;
  height: 500px;
  background: rgba(46, 204, 113, 0.13);
  bottom: -150px;
  right: -80px;
  animation-delay: -5s;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* Dot grid overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}



/* ========================
   NAVBAR
======================== */
.navbar-custom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0 26px;
}

.logo img {
  height: 68px;
}

.navbar-menu {
  position: absolute;
  left: 76%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 32px;
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  .navbar-menu {
    position: static;
    transform: none;
    margin-left: auto;
    margin-right: 24px;
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #fff;
  text-decoration: none;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  padding: 11px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(12px);
  font-size: 18px;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
}

.nav-btn:hover {
  border-color: var(--blue-border);
  background: var(--blue-dim);
  color: #fff;
  box-shadow: 0 0 20px var(--blue-glow);
}

/* Navbar Actions styling */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-action-btn {
  display: none;
  /* Hidden on desktop by default */
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.nav-action-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}

.phone-action:hover {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.15);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.whatsapp-action {
  color: #25d366;
  /* WhatsApp official green */
}

.whatsapp-action:hover {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.15);
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
  color: #25d366;
}

/* ========================
   HERO LAYOUT
======================== */
.hero-row {
  min-height: calc(100vh - 100px);
  padding: 30px 0 20px;
}

.hero-left {
  padding-right: 20px;
}

/* ========================
   BADGE
======================== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 100px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 30px;
  animation: badgeFloat 5s ease-in-out infinite;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--green-glow);
  animation: dotBlink 2s ease-in-out infinite;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes dotBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ========================
   HERO TITLE
======================== */
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 0;
}

/* Italic accent word — green tint */
.hero-title .accent-word {
  font-style: normal;
  color: var(--green);
  position: relative;
  display: inline-block;
}

.hero-title .accent-word::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  border-radius: 4px;
  background: var(--green);
  opacity: 0.35;
}

/* ========================
   HERO DESC
======================== */
.hero-desc {
  margin-top: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.8;
  max-width: 480px;
  letter-spacing: 0.1px;
}

/* ========================
   BUTTONS
======================== */
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 28px rgba(79, 110, 247, 0.35), 0 0 0 0 rgba(79, 110, 247, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(79, 110, 247, 0.45), 0 0 0 4px rgba(79, 110, 247, 0.1);
  color: #fff;
}

.btn-primary svg {
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

/* ========================
   STATS
======================== */
.stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 50px;
}

.stat-item {
  padding: 0 30px 0 0;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin-right: 30px;
}

.stat-num {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;

  margin-top: 5px;
  letter-spacing: 0.3px;
}

/* ========================
   FORM CARD
======================== */
.form-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  padding: 32px 32px 28px;
  box-shadow: 0 30px 80px rgba(79, 110, 247, 0.1);
  position: relative;
  overflow: hidden;
}

/* Blue glow top-right + green glow bottom-left inside card */
.form-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.form-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Zoho form iframe styling */
.zoho-estimate-iframe {
  height: 700px;
  width: 100%;
  border: none;
  display: block;
  overflow: hidden;
}

@media (max-width: 1366px) {
  .zoho-estimate-iframe {
    height: 700px;

  }
}

@media (max-width: 1024px) {
  .zoho-estimate-iframe {
    height: 700px;
    /* Taller on mobile to avoid scrollbar when fields stack */
  }
}

@media (max-width: 768px) {
  .zoho-estimate-iframe {
    height: 700px;
    /* Taller on mobile to avoid scrollbar when fields stack */
  }
}

/* Zoho Discovery Call iframe styling */
.zoho-discovery-iframe {
  height: 800px;
  width: 100%;
  border: none;
  display: block;
  overflow: hidden;
}

@media (max-width: 768px) {
  .zoho-discovery-iframe {
    height: 920px;
    /* Taller on mobile because name/email/phone stack vertically */
  }
}

/* Mac-style top dots */
.form-top-bar {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.form-top-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.form-top-dot.red {
  background: #FF5F57;
}

.form-top-dot.yellow {
  background: #FEBC2E;
}

.form-top-dot.green-dot {
  background: #28C840;
}

/* Form header */
.form-header {
  margin-bottom: 24px;
}

.form-header h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.3;
  color: #0f172a;
}

.form-header p {
  font-size: 16px;
  color: #64748b;
  margin-top: 5px;
  line-height: 1.5;
}

/* ========================
   FORM FIELDS
======================== */
.field-group {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-group label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.field-group input,
.field-group select {
  width: 100%;
  height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0 16px;
  background: #f8fafc;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: all 0.25s ease;
}

.field-group input::placeholder {
  color: #94a3b8;
}

.field-group input:focus,
.field-group select:focus {
  background: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(79, 110, 247, 0.08);
}

.field-group select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  color: #0f172a;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(15,23,42,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.field-group select option {
  background: #ffffff;
  color: #0f172a;
}

/* Field row (side by side) */
.field-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.field-row .field-group {
  margin-bottom: 0;
}

/* ========================
   SUBMIT BUTTON
======================== */
.submit-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 28px rgba(79, 110, 247, 0.4);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(79, 110, 247, 0.5);
}

.submit-btn:hover::before {
  opacity: 1;
}

.submit-btn:active {
  transform: translateY(0);
}

/* ========================
   FORM FOOTER
======================== */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  color: #64748b;
  letter-spacing: 0.3px;
}

/* ========================
   FORM VALIDATION STYLES
======================== */
.field-error {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #FF5F7E;
  margin-top: 5px;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, max-height 0.25s ease;
  letter-spacing: 0.2px;
}

.field-error.visible {
  opacity: 1;
  max-height: 30px;
}

/* Error state */
.field-group.is-error input,
.field-group.is-error select {
  border-color: rgba(255, 95, 126, 0.6) !important;
  background: rgba(255, 95, 126, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(255, 95, 126, 0.1) !important;
}

/* Success state */
.field-group.is-valid input,
.field-group.is-valid select {
  border-color: rgba(46, 204, 113, 0.5) !important;
  background: rgba(46, 204, 113, 0.05) !important;
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.08) !important;
}

/* Valid checkmark icon inside input */
.field-group.is-valid .input-wrapper,
.field-group.is-error .input-wrapper {
  position: relative;
}

/* Optional badge on label */
.optional-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 6px;
  vertical-align: middle;
  line-height: 1.6;
}

/* Shake animation on failed submit */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

.shake {
  animation: shake 0.4s ease;
}

/* Submit error state */
.submit-btn.btn-error {
  background: linear-gradient(135deg, #FF5F7E, #c0392b) !important;
  box-shadow: 0 8px 28px rgba(255, 95, 126, 0.35) !important;
}

.submit-btn.btn-success {
  background: linear-gradient(135deg, #2ECC71, #27ae60) !important;
  box-shadow: 0 8px 28px rgba(46, 204, 113, 0.4) !important;
}

/* Hero cert badges */
/* Trust Pills */
.hero-trust-pills {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0 26px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  padding: 7px 14px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
  letter-spacing: 0.1px;
}

.trust-pill svg {
  stroke: #34d399;
  flex-shrink: 0;
}

.trust-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(52, 211, 153, 0.3);
  color: #ffffff;
}

.hero-cert-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}

.cert-img-badge {
  height: 100px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;

  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  cursor: pointer;
}

.cert-img-badge:hover {
  transform: translateY(-4px) scale(1.05);
  opacity: 1;
  filter: grayscale(0%) brightness(100%) contrast(100%) drop-shadow(0 8px 24px rgba(79, 110, 247, 0.2));
}

/* ── Shared badge shell ── */
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px 12px 6px 6px;
  padding: 12px 14px 10px;
  width: 100px;
  min-height: 116px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.cert-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* ── Clutch badge ── */
.cert-clutch {
  background: linear-gradient(160deg, #ffffff 0%, #f4f5f9 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  border-top: 3px solid #EF4335;
}

/* Pentagon / shield notch at bottom */
.cert-clutch::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 8px solid #f4f5f9;
}

.cert-top {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}

.cert-clutch-logo {
  flex-shrink: 0;
  margin-top: 1px;
}

.cert-brand-name {
  font-size: 9px;
  font-weight: 700;
  color: #1a1d2e;
  line-height: 1.35;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.2px;
}

.cert-clutch-label {
  font-size: 13px;
  font-weight: 600;
  color: #EF4335;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
  margin-top: auto;
  padding-top: 8px;
}

.cert-year {
  font-size: 10px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.5px;
  font-family: 'Outfit', sans-serif;
}

/* ── ISO badge (circular design) ── */
.cert-iso {
  background: linear-gradient(160deg, #0d2456 0%, #162d6a 100%);
  box-shadow: 0 6px 20px rgba(13, 36, 86, 0.45);
  border: 2px solid rgba(255, 255, 255, 0.12);
  justify-content: center;
  padding: 10px;
}

.cert-iso-blue {
  background: linear-gradient(160deg, #1a3a7a 0%, #0f2050 100%);
  border-color: #2a5ad4;
}

.cert-iso-ring {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cert-iso-ring::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.3);
}

.cert-iso-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.cert-iso-text {
  font-size: 7.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
}

.cert-iso-sm {
  font-size: 6px;
  letter-spacing: 0.3px;
}

.cert-iso-number {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.3px;
}

/* ========================
   TRUST BAR SECTION
======================== */
.trust-bar-section {
  background: #ffffff;
  padding: 40px 0 36px;
  border-top: 1px solid #f1f3f8;
  border-bottom: 1px solid #f1f3f8;
}

.trust-bar-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.trust-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-logo-item {
  padding: 0 36px;
}

.trust-logo-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.3s ease;
  opacity: 0.75;
}

.trust-logo-inner:hover {
  opacity: 1;
}

.trust-logo-text {
  display: flex;
  flex-direction: column;
}

.tl-name {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.tl-sub {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
}

.tl-sub .star-filled,
.tl-sub {
  color: #f59e0b;
}

.tl-sub {
  color: #94a3b8;
}

.trust-bar-sep {
  width: 1px;
  height: 40px;
  background: #e5e7eb;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
  }

  .hero-trust-pills {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .trust-pill {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 10px 14px;
  }

  .hero-cert-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cert-img-badge {
    height: 40px;
  }

  .trust-bar-logos {
    gap: 10px;
  }

  .trust-logo-item {
    padding: 10px 16px;
  }

  .trust-bar-sep {
    display: none;
  }
}

/* ========================
   STATS SECTION
======================== */
.stats-section {
  background: linear-gradient(180deg, #f3f4f8 0%, #eef0f7 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.stats-inner-band {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 28px;
  margin: 0 40px;
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(79, 110, 247, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.stats-inner-band::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.stats-inner-band::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.stats-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.stats-header h2 {
  font-size: 40px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.stats-header .text-blue {
  color: var(--blue);
}

.stats-header p {
  color: #64748b;
  font-size: 16px;
  font-weight: 400;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.stat-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border-radius: 20px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 1px solid rgba(79, 110, 247, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 110, 247, 0.2);
  box-shadow: 0 20px 40px rgba(79, 110, 247, 0.1);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

.stat-value {
  font-size: 52px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -2px;
}

.stat-card p {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 992px) {
  .hero-row {
    padding-top: 20px;
  }

  .form-card {
    margin-top: 40px;
  }


}

@media (max-width: 768px) {
  html {
    overflow-x: hidden;
  }

  .navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(35 44 94);
    /* Premium glassmorphic background */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 16px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  }

  .logo img {
    height: 34px !important;
  }

  .navbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-action-btn {
    display: inline-flex;
    width: 36px;
    height: 36px;
  }

  .nav-btn {
    padding: 8px 12px;
    font-size: 12px;
    white-space: nowrap;
    gap: 4px;
  }

  .nav-btn svg {
    display: none;
    /* Hide arrow on mobile to save space */
  }

  .hero-section {
    padding-top: 100px !important;
  }

  .hero-title {
    font-size: 38px;
    letter-spacing: -1px;
    line-height: 1.2;
  }

  /* Hero buttons — stack, full width */
  .hero-buttons {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-around;
  }

  .btn-primary,
  .btn-ghost {
    justify-content: center;
    text-align: center;
    width: 47%;
    padding: 12px 8px;
    font-size: 16px;
    white-space: nowrap;
  }

  /* Phone field stays side-by-side */
  .field-row {
    flex-direction: row;
  }

  .field-row .field-group:first-child {
    flex: 0 0 100px !important;
  }

  .form-card {
    padding: 24px 20px 22px;
  }

  /* Premium Responsive Stats Row */
  .stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
    padding: 0 10px;
  }

  .stat-item {
    padding: 0 !important;
    text-align: center;
    flex: 1;
  }

  .stat-divider {
    margin: 0 !important;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
    width: 1px;
  }

  .stat-num {
    font-size: 20px;
    font-weight: 600;
  }

  .stat-label {
    font-size: 10px;
    margin-top: 2px;
    line-height: 1.3;
  }

  /* Compact Responsive Certification Badges */
  .hero-cert-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin: 20px 0 24px;
  }

  .cert-img-badge {
    height: 38px !important;
    width: auto;
  }

  /* Stepped Timeline Mobile Optimization */
  .last-timeline-steps {
    gap: 20px;
    padding-left: 10px;
  }

  .timeline-progress-line {
    left: 31px;
    top: 25px;
    bottom: 25px;
    width: 3px;
  }

  .last-timeline-step {
    gap: 16px;
  }

  .step-bullet {
    width: 42px;
    height: 42px;
  }

  .step-bullet-num {
    font-size: 15px;
  }

  .step-info-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .step-info-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .step-summary {
    font-size: 12.5px !important;
    line-height: 1.5;
  }

  .step-bullets {
    margin-top: 12px;
    padding-top: 12px;
    gap: 8px;
  }

  .step-bullets li {
    font-size: 12px;
  }

  .last-stack-visualizer {
    display: none !important;
    /* Hide complex 3D visual on mobile to clean UI */
  }

  /* Optimized Mobile Review Slider Section */
  .reviews-section {
    padding: 60px 0 !important;
  }

  .reviews-wrapper {
    gap: 30px !important;
  }

  .reviews-text h2 {
    font-size: 32px !important;
    line-height: 1.2;
    letter-spacing: -1px;
  }

  .reviews-image-wrapper {
    height: 320px !important;
    border-radius: 12px;
  }

  .reviews-card {
    width: 100% !important;
    margin: -50px auto 0 !important;
    padding: 24px 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35) !important;
  }

  /* Position controls beautifully in the top-left of the image, matching the counter on the top-right! */
  .reviews-controls {
    position: absolute !important;
    top: 16px !important;
    left: 16px !important;
    bottom: auto !important;
    right: auto !important;
    margin: 0 !important;
    display: flex !important;
    width: max-content !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    overflow: hidden !important;
    z-index: 10 !important;
  }

  .control-btn {
    height: 46px !important;
  }

  .prev-btn {
    width: 46px !important;
  }

  .next-btn {
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  /* Fix full-image portfolio cards to be perfectly edge-to-edge on mobile, removing any black spaces */
  .port-bg-papajohns {
    padding: 0 !important;
    align-items: stretch !important;
    justify-content: stretch !important;
  }
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-header h2 {
    font-size: 32px;
  }
}

/* ========================
   SERVICES SECTION
======================== */
.services-section {
  background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 40%, #ffffff 100%);
  padding: 130px 0;
  color: #111827;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle at center, rgba(79, 110, 247, 0.06) 0%, rgba(167, 139, 250, 0.03) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(120px);
}

/* ========================
   GLOBAL SECTION CHIP
======================== */
.section-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim, rgba(79, 110, 247, 0.08));
  border: 1px solid var(--blue-border, rgba(79, 110, 247, 0.2));
  color: var(--blue, #4F6EF7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.services-section-header {
  text-align: center;
  margin-bottom: 90px;
}

.services-section-header .section-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.services-section-header h2 {
  font-size: 52px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.services-section-header p {
  font-size: 18px;
  color: #64748b;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 100px;
  position: relative;
}

.service-row::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 80%;
  background: linear-gradient(to bottom, transparent, rgba(79, 110, 247, 0.15), transparent);
  pointer-events: none;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-content {
  flex: 1;
}

.service-visual {
  flex: 1;
  position: relative;
}

.service-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.service-num::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--blue);
  opacity: 0.4;
}

.service-title {
  font-size: 44px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.service-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #64748b;
  margin-bottom: 20px;
}

.service-content p:last-child {
  margin-bottom: 0;
}

/* Service Visual Cards */
.visual-card {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.10), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.visual-card:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow: 0 50px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.dark-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.light-card {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8edf8 100%);
}

.brand-card {
  background: linear-gradient(135deg, #0d1b42 0%, #1a2d6e 100%);
}

/* Wireframe Mockup */
.wireframe-mockup {
  width: 65%;
  height: 85%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
}

.wf-header {
  height: 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-bottom: 24px;
  width: 60%;
}

.wf-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}

.wf-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
}

.wf-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, transparent 48%, rgba(255, 255, 255, 0.05) 49%, rgba(255, 255, 255, 0.05) 51%, transparent 52%);
}

.pointer {
  position: absolute;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  z-index: 10;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
  animation: float 4s ease-in-out infinite;
}

.pointer::before {
  content: '';
  position: absolute;
  top: -14px;
  left: -14px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M7 2l12 11.2-5.8.5 3.3 7.3-2.2.9-3.2-7.4-4.4 4.7z'/%3E%3C/svg%3E");
  background-size: cover;
}

.p-red {
  background-color: #ef4444;
  top: 35%;
  left: -10%;
  animation-delay: 0s;
}

.p-purple {
  background-color: #a855f7;
  top: 45%;
  left: 35%;
  animation-delay: 1s;
}

.p-green {
  background-color: #22c55e;
  bottom: 30%;
  right: 10%;
  animation-delay: 2s;
}

.p-orange {
  background-color: #f97316;
  top: 20%;
  right: -5%;
  animation-delay: 3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* Design Mockup */
.design-mockup {
  width: 85%;
  height: 85%;
  position: relative;
}

.design-element {
  position: absolute;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.5s ease;
}

.light-card:hover .e-1 {
  transform: translateY(-10px) rotate(-2deg);
}

.light-card:hover .e-2 {
  transform: translateY(10px) rotate(2deg);
}

.light-card:hover .e-3 {
  transform: scale(1.05);
}

.e-1 {
  width: 65%;
  height: 85%;
  background-color: #ffffff;
  top: 7.5%;
  left: 5%;
  z-index: 2;
  border: 6px solid #ffffff;
  background-image: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.e-2 {
  width: 55%;
  height: 65%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  bottom: 5%;
  right: 5%;
  z-index: 3;
}

.e-3 {
  width: 45%;
  height: 45%;
  background: linear-gradient(135deg, var(--green) 0%, #27ae60 100%);
  top: 5%;
  right: 10%;
  z-index: 1;
}

/* Brand Mockup */
.brand-mockup {
  width: 90%;
  height: 90%;
  position: relative;
}

.brand-box {
  position: absolute;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.brand-card:hover .b-1 {
  transform: translateX(-10px);
}

.brand-card:hover .b-2 {
  transform: translateY(10px);
}

.brand-card:hover .b-3 {
  transform: translateX(10px) translateY(-5px);
}

.b-1 {
  width: 45%;
  height: 65%;
  background-color: #1e1e1e;
  top: 20%;
  left: 5%;
  z-index: 1;
}

.b-2 {
  width: 55%;
  height: 40%;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  bottom: 10%;
  right: 5%;
  z-index: 3;
}

.b-3 {
  width: 50%;
  height: 55%;
  background-color: #ffffff;
  top: 10%;
  right: 10%;
  z-index: 2;
  background-image: radial-gradient(circle at 30% 30%, #f1f5f9 0%, #e2e8f0 100%);
}

/* Code Mockup (Service 04) */
.code-card {
  background-color: #0f172a;
}

.code-mockup {
  width: 80%;
  height: 75%;
  background: #1e293b;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.code-card:hover .code-mockup {
  transform: scale(1.03) translateY(-5px);
}

.code-header {
  height: 36px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
}

.code-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.d-red {
  background: #ef4444;
}

.d-yellow {
  background: #f59e0b;
}

.d-green {
  background: #10b981;
}

.code-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.code-line {
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
}

.w-80 {
  width: 80%;
}

.w-70 {
  width: 70%;
}

.w-60 {
  width: 60%;
}

.w-50 {
  width: 50%;
}

.w-40 {
  width: 40%;
}

.indent-1 {
  margin-left: 20px;
}

.indent-2 {
  margin-left: 40px;
}

.mt-2 {
  margin-top: 10px;
}

.text-blue-line {
  background: #3b82f6;
  opacity: 0.8;
}

.text-green-line {
  background: #10b981;
  opacity: 0.8;
}

/* Server Mockup (Service 05) */
.server-card {
  background-color: #f8fafc;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 20px 20px;
}

.server-mockup {
  width: 80%;
  height: 80%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-server {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 5;
  box-shadow: 0 15px 30px rgba(79, 110, 247, 0.4);
  position: relative;
  animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 10px 20px rgba(79, 110, 247, 0.3), 0 0 0 0 rgba(79, 110, 247, 0.2);
  }

  100% {
    box-shadow: 0 20px 40px rgba(79, 110, 247, 0.5), 0 0 0 15px rgba(79, 110, 247, 0);
  }
}

.node {
  position: absolute;
  background: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 4;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.server-card:hover .node {
  transform: scale(1.1);
}

.n-1 {
  top: 15%;
  left: 10%;
  color: #8b5cf6;
}

.n-2 {
  bottom: 15%;
  left: 20%;
  color: #10b981;
}

.n-3 {
  top: 35%;
  right: 5%;
  color: #f59e0b;
}

.connection {
  position: absolute;
  background: #cbd5e1;
  z-index: 1;
}

.c-1 {
  width: 2px;
  height: 100px;
  top: 30%;
  left: 30%;
  transform: rotate(-45deg);
}

.c-2 {
  width: 120px;
  height: 2px;
  top: 50%;
  right: 25%;
}

/* Services Responsive */
@media (max-width: 992px) {

  .service-row,
  .service-row.reverse {
    flex-direction: column;
    gap: 50px;
    margin-bottom: 90px;
  }

  .service-visual {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 0;
  }

  .service-title {
    font-size: 32px;
  }

  .service-num {
    font-size: 28px;
  }
}


/* ========================
   SVC GRID — NEW SERVICES
======================== */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eef0f8;
  box-shadow: 0 4px 20px rgba(79, 110, 247, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(79, 110, 247, 0.13);
}

/* ── Graphic Area ── */
.svc-graphic {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-mobile .svc-graphic {
  background: linear-gradient(135deg, #0f1729 0%, #1a2a5e 100%);
}

.svc-web .svc-graphic {
  background: linear-gradient(135deg, #1a0a2e 0%, #2d1060 100%);
}

.svc-design .svc-graphic {
  background: linear-gradient(135deg, #0a1f2e 0%, #0d3550 100%);
}

.svc-brand .svc-graphic {
  background: linear-gradient(135deg, #1a0f2e 0%, #2e1a50 100%);
}

.svc-ai .svc-graphic {
  background: linear-gradient(135deg, #0d1a2e 0%, #162d5e 100%);
}

.svc-qa .svc-graphic {
  background: linear-gradient(135deg, #0a1e18 0%, #0d3528 100%);
}

/* ── Body ── */
.svc-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.svc-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.svc-icon-blue {
  background: rgba(79, 110, 247, 0.12);
  color: #4F6EF7;
}

.svc-icon-purple {
  background: rgba(167, 139, 250, 0.12);
  color: #a78bfa;
}

.svc-icon-pink {
  background: rgba(255, 107, 107, 0.12);
  color: #FF6B6B;
}

.svc-icon-orange {
  background: rgba(255, 153, 51, 0.12);
  color: #ff9933;
}

.svc-icon-violet {
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
}

.svc-icon-green {
  background: rgba(46, 204, 113, 0.12);
  color: #2ECC71;
}

.svc-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0d1117;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin: 0;
}

.svc-body p {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.svc-tags span {
  font-size: 11px;
  font-weight: 600;
  color: #4F6EF7;
  background: rgba(79, 110, 247, 0.08);
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: 0.2px;
}

/* ─── Mobile Phone Mockup ─── */
.svc-phone-frame {
  width: 90px;
  height: 160px;
  background: #1e2540;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.svc-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 8px;
  background: #0d1117;
  border-radius: 0 0 8px 8px;
  z-index: 2;
}

.svc-phone-screen {
  position: absolute;
  inset: 0;
  padding: 14px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.svc-app-bar {
  height: 12px;
  background: rgba(79, 110, 247, 0.5);
  border-radius: 4px;
}

.svc-app-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.svc-app-row {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  width: 100%;
}

.svc-app-row--wide {
  width: 85%;
}

.svc-app-row--med {
  width: 65%;
}

.svc-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 4px;
}

.svc-app-cell {
  height: 28px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
}

.svc-highlight {
  background: rgba(79, 110, 247, 0.55) !important;
}

.svc-highlight2 {
  background: rgba(46, 204, 113, 0.35) !important;
}

/* Float badges */
.svc-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 4px 10px;
}

.svc-fb-android {
  bottom: 20px;
  left: 16px;
}

.svc-fb-ios {
  top: 20px;
  right: 14px;
}

/* ─── Browser Mockup ─── */
.svc-browser-frame {
  width: 200px;
  background: #1e2540;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.svc-browser-bar {
  background: #2a3060;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.svc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.svc-dot-r {
  background: #FF6B6B;
}

.svc-dot-y {
  background: #FFC107;
}

.svc-dot-g {
  background: #2ECC71;
}

.svc-url-bar {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-left: 4px;
}

.svc-browser-body {
  padding: 8px;
}

.svc-web-hero {
  height: 40px;
  background: linear-gradient(90deg, rgba(79, 110, 247, 0.5), rgba(167, 139, 250, 0.3));
  border-radius: 6px;
  margin-bottom: 8px;
}

.svc-web-grid {
  display: flex;
  gap: 6px;
}

.svc-web-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.svc-web-col--wide {
  flex: 1.4;
}

.svc-web-block {
  height: 16px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 4px;
}

.svc-web-block--short {
  width: 70%;
}

.svc-web-card {
  height: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 5px;
}

/* Code snippet bubble */
.svc-code-snippet {
  position: absolute;
  bottom: 16px;
  right: 12px;
  background: #1a1d2e;
  border: 1px solid rgba(167, 139, 250, 0.25);
  border-radius: 8px;
  padding: 5px 10px;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.svc-code-kw {
  color: #a78bfa;
}

.svc-code-fn {
  color: #4F6EF7;
}

.svc-code-tag {
  color: #2ECC71;
}

/* ─── Design Canvas Mockup ─── */
.svc-design-canvas {
  display: flex;
  gap: 10px;
  align-items: center;
}

.svc-layers {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-layer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 4px 8px;
  white-space: nowrap;
}

.svc-layer--active {
  color: #fff;
  background: rgba(79, 110, 247, 0.2);
  border-color: rgba(79, 110, 247, 0.4);
}

.svc-artboard {
  width: 110px;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.svc-ab-header {
  height: 8px;
  background: #4F6EF7;
  border-radius: 3px;
  width: 50%;
}

.svc-ab-hero {
  height: 32px;
  background: linear-gradient(90deg, #eef0f8, #dde1f5);
  border-radius: 5px;
}

.svc-ab-row {
  display: flex;
  gap: 4px;
}

.svc-ab-btn {
  height: 14px;
  flex: 1;
  border-radius: 4px;
  background: #4F6EF7;
}

.svc-ab-btn--ghost {
  background: transparent;
  border: 1px solid #4F6EF7;
}

.svc-ab-cards {
  display: flex;
  gap: 4px;
}

.svc-ab-card {
  height: 22px;
  flex: 1;
  background: #f0f2fc;
  border-radius: 4px;
}

/* Color palette */
.svc-palette {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.svc-palette span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* ─── Branding Showcase ─── */
.svc-brand-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.svc-swatches {
  display: flex;
  gap: 6px;
  align-items: center;
}

.svc-swatch {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.svc-swatch--sm {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.svc-typespec {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.svc-type-h {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.svc-type-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

/* ─── AI Neural Network ─── */
.svc-ai-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-neural {
  width: 180px;
}

.svc-ai-chip {
  position: absolute;
  font-size: 10px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 4px 10px;
  white-space: nowrap;
}

.svc-ai-chip--1 {
  top: 18px;
  right: 14px;
}

.svc-ai-chip--2 {
  bottom: 18px;
  left: 14px;
}

/* ─── QA Test List ─── */
.svc-qa-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  gap: 14px;
}

.svc-test-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.svc-test-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.75);
}

.svc-test-item svg {
  flex-shrink: 0;
}

.svc-test-item span:nth-child(2) {
  flex: 1;
}

.svc-test-ms {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.35);
  font-variant-numeric: tabular-nums;
}

.svc-test-run .svc-test-ms {
  color: #FFC107;
}

/* Score ring */
.svc-score-ring {
  flex-shrink: 0;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .svc-graphic {
    height: 180px;
  }
}

/* ========================
   STAGE SECTION (GROWTH BLUEPRINT - LIGHT THEME)
======================== */
.stage-section {
  background: linear-gradient(180deg, #f0f4ff 0%, #f8faff 60%, #ffffff 100%);
  padding: 140px 0;
  font-family: 'Outfit', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Background Glowing Orbs (Soft Blue/Green Glow) */
.stage-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -200px;
  width: 600px;
  height: 600px;
  background: rgba(79, 110, 247, 0.08);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.stage-section::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: -200px;
  width: 600px;
  height: 600px;
  background: rgba(46, 204, 113, 0.08);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.stage-section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px auto;
  position: relative;
  z-index: 1;
}

.stage-section-header .section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #e0e7ff;
  border: 1px solid rgba(79, 110, 247, 0.2);
  color: #3854d1;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(79, 110, 247, 0.05);
}

.stage-section-header h2 {
  font-size: 48px;
  font-weight: 600;
  color: #0f172a;
  /* Slate 900 */
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.stage-section-header .text-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stage-section-header .section-subtitle {
  font-size: 18px;
  color: #475569;
  /* Slate 600 */
  line-height: 1.6;
}

/* Growth Map Wrapper Grid */
.growth-map-wrapper {
  display: grid;
  grid-template-columns: 0.26fr 0.74fr;
  /* Less space for tabs, more for content */
  gap: 40px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  align-items: flex-start;
  /* Aligns to top, preventing massive vertical gaps */
}

/* Left Column: Stepper Track */
.growth-stepper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 10px 0;
}

/* Stepper Progress Track Line */
.stepper-progress-line {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 48px;
  width: 2px;
  background: #cbd5e1;
  z-index: 0;
}

.stepper-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, #3b82f6, #10b981);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Individual Stepper Cards (Buttons) */
.stepper-step {
  display: flex;
  align-items: center;
  gap: 16px;
  /* slightly smaller gap */
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 16px 20px;
  /* reduced from 20px 24px */
  border-radius: 20px;
  cursor: pointer;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.01);
  border-left: 4px solid transparent;
}

.stepper-step:hover {
  background: #f8fafc;
  border-color: rgba(79, 110, 247, 0.2);
  transform: translateX(4px);
  box-shadow: 0 10px 20px rgba(79, 110, 247, 0.02);
}

/* Number Glow Indicator */
.step-number-glow {
  width: 42px;
  height: 42px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #475569;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.step-number-glow svg {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), stroke 0.3s ease;
  display: block;
}

.stepper-step:hover .step-number-glow svg {
  transform: scale(1.15) rotate(5deg);
}

.stepper-step.active .step-number-glow svg {
  transform: scale(1.05);
}


.step-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.step-stage-name {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.35s ease;
}

.step-stage-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  transition: color 0.35s ease;
  margin: 0;
  line-height: 1.3;
}

/* Active Stepper State */
.stepper-step.active {
  background: linear-gradient(135deg, #ffffff 0%, #f5f8ff 100%);
  border-color: rgba(79, 110, 247, 0.25);
  border-left: 4px solid #3b82f6;
  /* Left accent line */
  box-shadow:
    0 15px 35px rgba(79, 110, 247, 0.06),
    0 0 0 1px rgba(79, 110, 247, 0.04) inset;
}

.stepper-step.active .step-number-glow {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow:
    0 4px 10px rgba(59, 130, 246, 0.3),
    0 1px 2px rgba(0, 0, 0, 0.05);
}

.stepper-step.active .step-stage-name {
  color: #3b82f6;
}

.stepper-step.active .step-stage-title {
  color: #0f172a;
}

/* Right Column: Viewport Dashboard Card styled as a browser */
.growth-viewport {
  position: relative;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 24px;
  box-shadow:
    0 30px 80px rgba(15, 23, 42, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.005) inset;
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  /* guarantees height alignment across clicks */
  justify-content: space-between;
}

/* Viewport Browser Top Bar styling */
.viewport-browser-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f1f5f9;
  border-bottom: 1px solid #cbd5e1;
  padding: 12px 20px;
  margin: -30px -30px 30px -30px;
  /* Pulls it to the top edges */
  border-radius: 22px 22px 0 0;
  user-select: none;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.b-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.b-red {
  background: #ff5f56;
}

.b-yellow {
  background: #ffbd2e;
}

.b-green {
  background: #27c93f;
}

.browser-address {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 5px 20px;
  width: 55%;
  justify-content: center;
  font-size: 11.5px;
  color: #64748b;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.secure-icon {
  color: #10b981;
}

.address-text {
  letter-spacing: 0.1px;
}

.address-path {
  font-weight: 700;
  color: #0f172a;
}

.browser-refresh {
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Stage Pane Animations */
.growth-pane {
  display: none;
  flex-direction: column;
  height: 100%;
  animation: slideFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-grow: 1;
}

.growth-pane.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pane Header */
.pane-header {
  margin-bottom: 24px;
}

.pane-header h3 {
  font-size: 32px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.6px;
}

.pane-header p {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Grid Layout inside Panes */
.pane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  flex-grow: 1;
  align-items: stretch;
  margin-bottom: 26px;
}

/* Dashboard Cards */
.grid-card {
  border-radius: 20px;
  padding: 30px 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0.8;
}

/* Left Card: Roadblocks (Frictions) */
.roadblock-card {
  background: linear-gradient(180deg, #fffafa 0%, #ffffff 100%);
}

.roadblock-card::before {
  background: linear-gradient(90deg, #f87171, #ef4444);
}

.roadblock-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.08), 0 0 0 1px rgba(239, 68, 68, 0.05) inset;
  border-color: rgba(239, 68, 68, 0.25);
}

/* Right Card: Strategy (Solutions) */
.strategy-card {
  background: linear-gradient(180deg, #f4fdf8 0%, #ffffff 100%);
}

.strategy-card::before {
  background: linear-gradient(90deg, #34d399, #10b981);
}

.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.08), 0 0 0 1px rgba(16, 185, 129, 0.05) inset;
  border-color: rgba(16, 185, 129, 0.25);
}

/* Card Headers */
.grid-card .card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.grid-card .card-header .card-icon {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.roadblock-card .card-icon {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #ef4444;
}

.strategy-card .card-icon {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: #10b981;
}

.grid-card .card-header h5 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.roadblock-card h5 {
  color: #991b1b;
}

.strategy-card h5 {
  color: #065f46;
}

/* Bullet Lists inside cards */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bullet-list li {
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bullet-list li strong {
  color: #0f172a;
  font-weight: 700;
}

.bullet-list li span {
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.roadblock-card .bullet-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 1px;
  color: #ef4444;
  font-size: 16px;
  opacity: 0.8;
}

.strategy-card .bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: #10b981;
  font-weight: 600;
  font-size: 16px;
}

/* Conversational Chat Testimonial */
.founder-quote-card {
  display: flex;
  gap: 16px;
  background: #f8fafc;
  /* Slate 50 */
  border: 1px solid #e2e8f0;
  padding: 24px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.01);
}

.quote-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.15);
}

.quote-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================================================
   STAGE SECTION RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
  .growth-map-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stepper-progress-line {
    display: none;
  }

  .growth-stepper {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    padding: 10px 0;
    gap: 16px;
  }

  .growth-stepper::-webkit-scrollbar {
    display: none;
    /* Safari & Chrome */
  }

  .stepper-step {
    flex: 1 0 auto;
    min-width: 260px;
  }

  .stepper-step.active {
    border-left: 4px solid transparent !important;
    border-bottom: 4px solid #3b82f6 !important;
    border-radius: 20px 20px 12px 12px;
  }

  .growth-viewport {
    min-height: auto;
    padding: 24px;
  }

  .viewport-browser-header {
    margin: -24px -24px 24px -24px;
    padding: 10px 16px;
  }

  .browser-address {
    width: 75%;
    padding: 5px 12px;
  }
}

@media (max-width: 768px) {
  .stage-section {
    padding: 40px 0;
  }

  .stage-section-header {
    margin-bottom: 24px;
  }

  .stage-section-header h2 {
    font-size: 26px;
    letter-spacing: -0.5px;
  }

  .stage-section-header .section-subtitle {
    font-size: 16px;
  }

  /* Compact horizontal scrollable tab strip */
  .growth-stepper {
    gap: 8px;
    padding: 4px 0 12px;
  }

  .stepper-step {
    min-width: 155px !important;
    padding: 10px 12px !important;
    gap: 8px !important;
    border-radius: 14px !important;
  }

  .step-number-glow {
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0;
  }

  .step-number-glow svg {
    width: 16px !important;
    height: 16px !important;
  }

  .step-stage-title {
    font-size: 13px !important;
    line-height: 1.3 !important;
    text-align: left;
  }

  /* Viewport card — fix overflow bleed */
  .growth-viewport {
    padding: 0 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    min-height: unset !important;
  }

  .viewport-browser-header {
    margin: 0 !important;
    border-radius: 0 !important;
    padding: 8px 12px !important;
  }

  .growth-pane {
    padding: 16px !important;
  }

  .viewport-body {
    padding: 16px !important;
  }

  .pane-header h3 {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .pane-header p {
    font-size: 13px;
    line-height: 1.6;
  }

  .pane-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .grid-card {
    padding: 14px !important;
  }

  .pane-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding-top: 16px;
  }

  .founder-quote-card {
    max-width: 100%;
  }

  .pane-cta .submit-btn {
    width: 100%;
    text-align: center;
    padding: 13px 20px !important;
    font-size: 14px !important;
  }
}



/* ========================
   WHY CHOOSE US SECTION
======================== */
.why-choose-section {
  background: linear-gradient(180deg, #f3f4f8 0%, #ffffff 100%);
  padding: 130px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79, 110, 247, 0.3), transparent);
}

.why-header {
  text-align: center;
  margin-bottom: 70px;
}

.why-header .section-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.why-header h2 {
  font-size: 52px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 16px;
}

.why-header span {
  color: var(--blue);
  position: relative;
}

.why-header span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  border-radius: 4px;
  background: var(--blue);
  opacity: 0.35;
}

.why-header p {
  font-size: 18px;
  color: #64748b;
  margin-top: 16px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 28px;
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 1px 4px rgba(0, 0, 0, 0.02);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover::before {
  opacity: 0.7;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(79, 110, 247, 0.12);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(79, 110, 247, 0.05);
}

.why-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: transform 0.4s ease;
}

.why-card:hover .why-icon-box {
  transform: scale(1.1) rotate(-3deg);
}

.blue-box {
  background: rgba(79, 110, 247, 0.08);
  color: var(--blue);
  border: 1px solid rgba(79, 110, 247, 0.15);
}

.green-box {
  background: rgba(46, 204, 113, 0.08);
  color: var(--green);
  border: 1px solid rgba(46, 204, 113, 0.15);
}

.purple-box {
  background: rgba(168, 85, 247, 0.08);
  color: #a855f7;
  border: 1px solid rgba(168, 85, 247, 0.15);
}

.orange-box {
  background: rgba(249, 115, 22, 0.08);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.why-subtitle {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.text-blue {
  color: var(--blue);
}

.text-green {
  color: var(--green);
}

.text-purple {
  color: #a855f7;
}

.text-orange {
  color: #f97316;
}

.why-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.why-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
}

.card-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  filter: blur(70px);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
  pointer-events: none;
}

.blue-glow-hover {
  background: var(--blue);
  top: -100px;
  right: -100px;
}

.green-glow-hover {
  background: var(--green);
  top: -100px;
  right: -100px;
}

.purple-glow-hover {
  background: #a855f7;
  top: -100px;
  right: -100px;
}

.orange-glow-hover {
  background: #f97316;
  top: -100px;
  right: -100px;
}

.why-card:hover .card-glow {
  opacity: 0.07;
}

.why-content,
.why-icon-box {
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .why-header h2 {
    font-size: 36px;
  }

  .why-card {
    padding: 30px;
  }

  .why-content h3 {
    font-size: 20px;
  }
}

/* ========================
   REVIEWS SECTION
======================== */
.reviews-section {
  background: #ebf1fa;
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
  padding: 130px 0;
  overflow: hidden;
  position: relative;
}

.reviews-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.035) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.reviews-section::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.14) 0%, rgba(59, 130, 246, 0) 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.reviews-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.reviews-text {
  flex: 0 0 32%;
  max-width: 340px;
}

.reviews-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.reviews-text h2 {
  font-size: 52px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -2px;
}

.reviews-slider {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 80px;
}

.reviews-image-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.reviews-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Controls */
.reviews-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  z-index: 10;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border-radius: 0 8px 0 0;
  overflow: hidden;
}

.control-btn {
  height: 52px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  transition: all 0.25s ease;
  background-color: #ffffff;
  color: #111827;
}

.prev-btn {
  width: 52px;
  border-right: 1px solid #f3f4f6;
}

.prev-btn:hover {
  background-color: #f9fafb;
}

.next-btn {
  padding: 0 22px;
  gap: 8px;
  font-size: 16px;
}

.next-btn:hover {
  background-color: #f9fafb;
}

/* Vertical Counter */
.reviews-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 5;
}

/* Overlapping Card */
.reviews-card {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  background-color: #111827;
  width: 500px;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
  z-index: 2;
}

.card-deco-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 0;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.reviewer-details {
  display: flex;
  flex-direction: column;
}

.reviewer-details strong {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.reviewer-details span {
  font-size: 12px;
  color: #9ca3af;
}

.review-quote {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 14px;
}

.review-link {
  font-size: 13px;
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: opacity 0.3s;
}

.review-link:hover {
  opacity: 0.8;
}

.review-link .text-green {
  color: var(--green);
}

@media (max-width: 1200px) {
  .reviews-card {
    right: -20px;
    width: 450px;
    padding: 40px;
  }
}

@media (max-width: 992px) {
  .reviews-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .reviews-text {
    text-align: center;
  }

  .reviews-slider {
    width: 100%;
    flex-direction: column;
  }

  .reviews-image-wrapper {
    width: 100%;
    max-width: 500px;
    height: 400px;
  }

  .reviews-card {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 90%;
    margin: -80px auto 0;
    padding: 30px;
  }
}

/* ========================
   FAQ SECTION
======================== */
.faq-section {
  background-color: #fdfdfd;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.faq-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--blue-glow);
  filter: blur(150px);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.5;
  pointer-events: none;
}

.faq-glow-left {
  top: 10%;
  left: -200px;
}

.faq-glow-right {
  bottom: 10%;
  right: -200px;
  background: rgba(46, 204, 113, 0.15);
  /* light green glow */
}

.faq-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 1;
  align-items: center;
}

.faq-left {
  flex: 0 0 35%;
}

.faq-left h2 {
  font-size: 42px;
  font-weight: 600;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 24px;
}

.faq-desc {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.8;
  max-width: 90%;
  margin: 15px auto 0;
}

.highlight-text {
  position: relative;
  display: inline-block;
}

.swoosh {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  height: 20px;
}

.faq-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: #0ea5e9;
  /* Light blue from image */
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
  background-color: var(--blue);
}

.faq-cta-text {
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 16px;
}

.faq-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #0ea5e9;
  border-radius: 30px;
  padding: 16px 32px;
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-btn:hover {
  background-color: var(--blue);
  color: #fff;
}

.faq-accordion {
  flex: 1;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
}

.faq-question span {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  padding-right: 40px;
  line-height: 1.4;
}

.faq-icon {
  width: 36px;
  height: 36px;
  background-color: #0ea5e9;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background-color: #111827;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .faq-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .faq-left {
    text-align: center;
  }

  .faq-socials {
    justify-content: center;
  }

  .swoosh {
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
  }
}

/* ========================
   CONTACT SECTION
======================== */
.contact-section {
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eef0f8;
}

.contact-section .grid-overlay {
  background-image: radial-gradient(circle, rgba(79, 110, 247, 0.06) 1.2px, transparent 1.2px);
  background-size: 32px 32px;
}

.contact-glow {
  display: none;
  /* Hide dark glows on white bg */
}

.contact-left {
  padding-right: 50px;
}

.contact-title {
  font-size: 46px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 40px;
  letter-spacing: -1px;
}

.company-brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-info-block {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #eef0f8;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(79, 110, 247, 0.02);
}

.contact-info-block:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 110, 247, 0.25);
  box-shadow: 0 12px 30px rgba(79, 110, 247, 0.08);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-dim);
  color: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-content strong {
  display: block;
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-info-content p {
  font-size: 17px;
  color: #1e293b;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.contact-info-content p a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-content p a:hover {
  color: var(--blue);
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: transform 0.2s;
}

.contact-map-link:hover {
  transform: translateX(4px);
}

.contact-right .form-card {
  background: #ffffff;
  border: 1px solid #eef0f8;
  box-shadow: 0 30px 80px rgba(79, 110, 247, 0.08);
}

.contact-right .form-card::before,
.contact-right .form-card::after {
  display: none;
}

.contact-right .form-header h2 {
  color: #0f172a;
}

.contact-right .form-header p {
  color: #64748b;
}

.contact-right .field-group label {
  color: #64748b;
}

.contact-right .field-group input,
.contact-right .field-group select {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #0f172a;
}

.contact-right .field-group input::placeholder {
  color: #94a3b8;
}

.contact-right .field-group input:focus,
.contact-right .field-group select:focus {
  background: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(79, 110, 247, 0.08);
}

.contact-right .form-footer {
  color: #64748b;
}

@media (max-width: 992px) {
  .contact-left {
    padding-right: 15px;
    margin-bottom: 60px;
  }
}

/* ========================
   PORTFOLIO SECTION
======================== */
/* ========================
   PREMIUM PORTFOLIO SECTION
======================== */
.portfolio-section {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 50%, #f8fafc 100%);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

/* Dot grid overlay */
.portfolio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(79, 110, 247, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* Background Blobs */
.port-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.port-blob-blue {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.port-blob-green {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
  bottom: -100px;
  left: -150px;
}

/* Header */
.port-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.port-header-left {
  text-align: left;
}

.port-header h2 {
  font-size: 52px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 16px 0;
}

.port-header p {
  font-size: 17px;
  color: #64748b;
  max-width: 480px;
}

/* Nav controls for slider */
.port-nav-controls {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.port-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(79, 110, 247, 0.15);
  background: #ffffff;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.port-nav-btn:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 110, 247, 0.25);
}

.port-nav-btn:active {
  transform: translateY(0);
}

/* Light bg — chip uses standard blue */
.portfolio-section .section-chip {
  background: rgba(79, 110, 247, 0.08);
  border-color: rgba(79, 110, 247, 0.2);
  color: var(--blue);
}

/* Slider containers */
.port-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 10;
  padding: 12px 0 36px;
  margin-bottom: 40px;
}

.port-slider-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

/* Each horizontal card */
.port-cs-card {
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  height: 403px;
  box-shadow: 0 8px 40px rgba(79, 110, 247, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  flex: 0 0 calc(100% - 24px);
  /* leaves room for margins */
  width: calc(100% - 24px);
  margin: 0 12px;
  box-sizing: border-box;
}

.port-cs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(79, 110, 247, 0.18);
}

/* LEFT — screens panel */
.port-cs-screens {
  flex: 0 0 65%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px 20px 0;
  overflow: hidden;
  gap: 12px;
}

/* Themed background colors */
.port-bg-peach {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.port-bg-mint {
  background: linear-gradient(135deg, #d4f5e9 0%, #a8edcd 100%);
}

.port-bg-coral {
  background: linear-gradient(135deg, #ffd6cc 0%, #ffab9e 100%);
}

.port-bg-lavender {
  background: linear-gradient(135deg, #e8d5ff 0%, #c4adff 100%);
}

/* Phone mockups */
.port-phone {
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease;
}

.port-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.port-phone-back {
  width: 155px;
  height: 260px;
  transform: translateX(16px) translateY(20px) rotate(-4deg);
  z-index: 1;
  opacity: 0.85;
}

.port-phone-mid {
  width: 165px;
  height: 275px;
  z-index: 2;
  transform: translateY(10px);
}

.port-phone-front {
  width: 155px;
  height: 260px;
  transform: translateX(-16px) translateY(20px) rotate(4deg);
  z-index: 1;
  opacity: 0.85;
}

.port-cs-card:hover .port-phone-back {
  transform: translateX(8px) translateY(12px) rotate(-6deg);
}

.port-cs-card:hover .port-phone-mid {
  transform: translateY(4px);
}

.port-cs-card:hover .port-phone-front {
  transform: translateX(-8px) translateY(12px) rotate(6deg);
}

/* RIGHT — dark info panel */
.port-cs-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.port-dark-panel {
  background: #1a1d2e;
}

/* Top row: logo + explore */
.port-cs-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.port-cs-logo {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  background: #fff;
}

.port-cs-logo img {
  width: 100%;
}

.port-logo-blue {
  /* background: linear-gradient(135deg, #4F6EF7, #3b52d4); */
  box-shadow: 0 4px 14px rgba(79, 110, 247, 0.4);
}

.port-logo-green {
  background: linear-gradient(135deg, #9d163f, #9d163f);
  box-shadow: 0 4px 14px rgba(46, 204, 113, 0.4);
}

.port-logo-orange {
  background: linear-gradient(135deg, #5b70e4, #485ac5);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.port-logo-purple {
  background: linear-gradient(135deg, #7C3AED, #6025c9);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}

.port-logo-red {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4);
}

/* Papa John's — full image panel (no phone fan) */
.port-bg-papajohns {
  background: #1a0a0a;
  padding: 0;
  align-items: stretch;
  justify-content: stretch;
}

.port-cs-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.port-cs-card:hover .port-cs-full-img {
  transform: scale(1.04);
}

/* Red deco shapes for Papa John's */
.deco-red-half {
  background: #ef4444;
  border-radius: 50% 50% 8px 8px;
}

.deco-dots-red {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 2px, transparent 2px);
  background-size: 8px 8px;
  background-color: #dc2626;
}

.port-cs-explore {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #ef4444;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.port-cs-explore:hover {
  gap: 8px;
}

/* Body: title + desc + tech */
.port-cs-body {
  flex: 1;
}

.port-cs-body h3 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.port-cs-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 18px;
}

.port-cs-tech {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.port-tech-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
}

.port-tech-icons {
  display: flex;
  gap: 12px;
}

.port-tech-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease;
}

.port-tech-icon svg {
  width: 18px;
  height: 18px;
}

.port-tech-icon:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* Bottom decorative shapes */
.port-cs-deco {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 48px;
  flex-shrink: 0;
}

.deco-shape {
  height: 100%;
  border-radius: 8px;
  flex: 1;
}

/* Shape colors per project */
.deco-blue-half {
  background: #4F6EF7;
  border-radius: 50% 50% 8px 8px;
}

.deco-red-tri {
  background: #ef4444;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-radius: 0;
}

.deco-dots {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 2px, transparent 2px);
  background-size: 8px 8px;
  background-color: #f59e0b;
}

.deco-yellow-half {
  background: #f59e0b;
  border-radius: 8px 8px 50% 50%;
}

.deco-green-half {
  background: #2ECC71;
  border-radius: 50% 50% 8px 8px;
}

.deco-blue-tri {
  background: #4F6EF7;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-radius: 0;
}

.deco-dots-green {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 2px, transparent 2px);
  background-size: 8px 8px;
  background-color: #059669;
}

.deco-teal-half {
  background: #0d9488;
  border-radius: 8px 8px 50% 50%;
}

.deco-orange-half {
  background: #F97316;
  border-radius: 50% 50% 8px 8px;
}

.deco-dots-orange {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 2px, transparent 2px);
  background-size: 8px 8px;
  background-color: #dc2626;
}

.deco-purple-half {
  background: #7C3AED;
  border-radius: 50% 50% 8px 8px;
}

.deco-dots-purple {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 2px, transparent 2px);
  background-size: 8px 8px;
  background-color: #6366f1;
}

.deco-indigo-half {
  background: #4338ca;
  border-radius: 8px 8px 50% 50%;
}

/* Footer CTA */
.port-footer-cta {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.port-footer-cta p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

.port-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.port-view-all:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(79, 110, 247, 0.35);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
  .port-cs-card {
    flex-direction: column;
    height: auto;
  }

  .port-cs-screens {
    flex: none;
    height: 260px;
    padding: 20px 16px 0;
  }

  .port-phone-back {
    width: 110px;
    height: 190px;
  }

  .port-phone-mid {
    width: 120px;
    height: 205px;
  }

  .port-phone-front {
    width: 110px;
    height: 190px;
  }

  .port-cs-info {
    padding: 20px;
  }

  .port-cs-body h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .port-cs-screens {
    height: 160px;
    gap: 6px;
  }

  .port-phone-back,
  .port-phone-front {
    display: none;
  }

  .port-phone-mid {
    width: 150px;
    height: 190px;
    transform: none;
  }

  .port-footer-cta {
    flex-direction: column;
    gap: 12px;
  }

  .port-header h2 {
    font-size: 34px;
  }
}



/* Grid Layout */
.port-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
  align-items: stretch;
}

/* ——————————————————————————
   PORTFOLIO LAYOUT
—————————————————————————— */

/* Top Row: Featured (left 62%) + Right Stack (38%) */
.port-top-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: stretch;
}

.port-card-featured {
  flex: 0 0 62%;
  display: flex;
  flex-direction: column;
}

.port-right-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.port-right-stack .port-card {
  flex: 1;
}

/* Bottom Row: 3 equal cards */
.port-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

/* Base Card */
.port-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e8ecf8;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(79, 110, 247, 0.06);
}

.port-card:hover {
  border-color: rgba(79, 110, 247, 0.3);
  box-shadow: 0 20px 60px rgba(79, 110, 247, 0.14);
  transform: translateY(-6px);
}

/* Image Container */
.port-card-img {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.port-card-featured .port-card-img {
  flex: 1;
  min-height: 340px;
}

/* Right stack small cards */
.port-right-stack .port-card-img {
  height: 180px;
}

/* Bottom row cards */
.port-bottom-row .port-card-img {
  height: 200px;
}

.port-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.port-card:hover .port-card-img img {
  transform: scale(1.06);
}

/* Glassmorphic Overlay on Hover */
.port-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 11, 30, 0.97) 0%, rgba(9, 11, 30, 0.55) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow: hidden;
}

.port-card:hover .port-card-overlay {
  opacity: 1;
}

.port-overlay-content {
  transform: translateY(16px);
  transition: transform 0.4s ease;
}

.port-card:hover .port-overlay-content {
  transform: translateY(0);
}

/* Hide long description on small cards — keep overlay clean */
.port-card:not(.port-card-featured) .port-card-overlay p {
  display: none;
}

/* Make featured overlay padding match */
.port-card-featured .port-card-overlay {
  padding: 32px;
}

.port-cat-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  backdrop-filter: blur(8px);
}

.port-overlay-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.port-card-featured .port-overlay-content h3 {
  font-size: 28px;
}

.port-overlay-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.port-tech-stack {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.port-tech-stack span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.port-case-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(79, 110, 247, 0.4);
}

.port-case-btn:hover {
  background: #3d5ce0;
  transform: translateX(3px);
}

/* Card Info (always visible at bottom) */
.port-card-info {
  padding: 20px 24px;
  background: #fff;
}

.port-card-featured .port-card-info {
  padding: 24px 28px;
}

.port-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.port-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
}

.port-tag-blue {
  background: rgba(79, 110, 247, 0.15);
  color: #7c99f9;
}

.port-tag-green {
  background: rgba(46, 204, 113, 0.15);
  color: #2ECC71;
}

.port-tag-purple {
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
}

.port-tag-orange {
  background: rgba(249, 115, 22, 0.15);
  color: #fb923c;
}

.port-platforms {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.port-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.port-card-featured .port-card-title {
  font-size: 20px;
}

.port-card-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Footer CTA */
.port-footer-cta {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.port-footer-cta p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}

.port-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  border: 1px solid #0f172a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.port-view-all:hover {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 8px 28px rgba(79, 110, 247, 0.35);
  transform: translateY(-2px);
}

/* Hidden on filter */
.port-card.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .port-top-row {
    flex-direction: column;
  }

  .port-card-featured {
    flex: none;
  }

  .port-right-stack {
    flex-direction: row;
  }

  .port-right-stack .port-card-img {
    height: 160px;
  }

  .port-bottom-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .port-right-stack {
    flex-direction: column;
  }

  .port-bottom-row {
    grid-template-columns: 1fr;
  }

  .port-header h2 {
    font-size: 36px;
  }

  .port-footer-cta {
    flex-direction: column;
    gap: 12px;
  }
}

.portfolio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(79, 110, 247, 0.04) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  pointer-events: none;
}

.portfolio-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  filter: blur(180px);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
}

.portfolio-glow-1 {
  top: -150px;
  right: -200px;
  background: rgba(79, 110, 247, 0.18);
}

.portfolio-glow-2 {
  bottom: -150px;
  left: -200px;
  background: rgba(46, 204, 113, 0.12);
}

.portfolio-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.portfolio-header {
  max-width: 600px;
}

.portfolio-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.portfolio-header h2 {
  font-size: 52px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 16px;
  letter-spacing: -2px;
  line-height: 1.05;
}

.portfolio-header p {
  font-size: 17px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.portfolio-slider-controls {
  display: flex;
  gap: 14px;
  align-items: center;
}

.portfolio-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(79, 110, 247, 0.2);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(79, 110, 247, 0.1);
}

.portfolio-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 8px 24px rgba(79, 110, 247, 0.35);
  transform: scale(1.05);
}

.portfolio-slider-container {
  width: 100%;
  position: relative;
  z-index: 1;
}

.portfolio-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 20px;
}

.portfolio-track::-webkit-scrollbar {
  display: none;
}

.portfolio-slide {

  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
  scroll-snap-align: start;

  transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.45s ease;
}


.portfolio-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.portfolio-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-slide:hover .portfolio-img-wrapper img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 14, 40, 0.92) 0%, rgba(10, 14, 40, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 36px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-slide:hover .portfolio-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-content {
  width: 100%;
}

.portfolio-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(79, 110, 247, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #c7d4ff;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(79, 110, 247, 0.35);
}

.portfolio-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
}

.portfolio-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  gap: 12px;
}

.portfolio-footer {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.portfolio-footer a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  border: 1.5px solid rgba(79, 110, 247, 0.3);
  border-radius: 100px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  background: rgba(79, 110, 247, 0.05);
  transition: all 0.3s ease;
}

.portfolio-footer a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 10px 30px rgba(79, 110, 247, 0.3);
}

@media (max-width: 992px) {
  .portfolio-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .portfolio-header h2 {
    font-size: 38px;
  }


}

@media (max-width: 576px) {


  .portfolio-overlay {
    padding: 28px;
    opacity: 1;
    transform: none;
  }

  .portfolio-content h3 {
    font-size: 22px;
  }
}

/* ========================
   FOOTER
======================== */
.site-footer {
  background: linear-gradient(180deg, #0b0f1e 0%, #0d1224 100%);
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  pointer-events: none;
  z-index: 0;
}

.footer-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(79, 110, 247, 0.1);
  top: -150px;
  left: -150px;
  opacity: 0.7;
}

.footer-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(46, 204, 113, 0.07);
  bottom: 0;
  right: -100px;
  opacity: 0.7;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

/* Brand Column */
.footer-brand {}

.footer-logo {
  height: 44px;
  margin-bottom: 24px;
  display: block;
}

.footer-tagline {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
  max-width: 280px;
  margin-bottom: 32px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  border-color: var(--blue);
  background: rgba(79, 110, 247, 0.15);
  color: var(--blue);
  transform: translateY(-3px);
}

/* Link Columns */
.footer-links-group h4 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.footer-links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-group ul li {
  margin-bottom: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links-group ul li a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.25s ease;
  line-height: 1.6;
}

.footer-links-group ul li a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  position: relative;
  z-index: 1;
}

.footer-copy {
    font-size: 15px;
    color: #fff;
    margin: 0;
    width: 100%;
}
.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

/* ========================
   MID-PAGE CTA STRIP
======================== */
.cta-strip-section {
  background: linear-gradient(135deg, #131836 0%, #1a2258 50%, #0f1a30 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-strip-glow {
  position: absolute;
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(79, 110, 247, 0.25) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.cta-strip-left {
  flex: 1;
}

.cta-strip-chip {
  display: inline-block;
  background: rgba(79, 110, 247, 0.2);
  border: 1px solid rgba(79, 110, 247, 0.35);
  color: #a5b8ff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.cta-strip-left h2 {
  font-size: 42px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.cta-strip-left p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;

  margin: 0 0 10px;
}

.cta-strip-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cta-strip-btn {
  white-space: nowrap;
  font-size: 16px;
  padding: 16px 32px;
}

.cta-strip-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-strip-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip-right {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .cta-strip-left p {
    margin: 12px auto 0 auto !important;
  }
}

/* ========================
   FINAL CTA SECTION
======================== */
.final-cta-section {
  background: linear-gradient(135deg, #0d1224 0%, #131836 40%, #1a2258 70%, #0f1a30 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta-glow-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.2) 0%, transparent 65%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.final-cta-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.12) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.final-cta-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;

  margin: 0 auto;
}

.final-cta-chip {
  display: inline-block;
  background: rgba(79, 110, 247, 0.18);
  border: 1px solid rgba(79, 110, 247, 0.35);
  color: #a5b8ff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.final-cta-title {
  font-size: 58px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.final-cta-desc-wrap {
  margin-bottom: 48px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 16px;
  text-align: center;
}

.final-cta-desc:last-child {
  margin-bottom: 0;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.final-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #ffffff;
  border: none;
  border-radius: 100px;
  padding: 18px 40px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  transition: all 0.35s ease;
  box-shadow: 0 12px 40px rgba(79, 110, 247, 0.45);
  letter-spacing: 0.2px;
}

.final-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(79, 110, 247, 0.55);
  color: #ffffff;
}

.final-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.final-cta-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-2px);
}

.final-cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.final-cta-trust span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

@media (max-width: 768px) {
  .final-cta-title {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .final-cta-desc {
    font-size: 16px;
  }

  .final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta-btn-primary,
  .final-cta-btn-ghost {
    justify-content: center;
    text-align: center;
  }
}

/* ========================
   OUR CLIENTS SECTION
======================== */
.clients-section {
  background: #ffffff;
  padding: 80px 0;
}

.clients-header {
  text-align: center;
  margin-bottom: 64px;
}



.clients-header h4 {
  font-size: 36px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 16px 0;
}

.clients-header p {
  font-size: 17px;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.clients-header .text-blue {
  color: var(--blue);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.client-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8ecf8;
  border-radius: 16px;
  padding: 0px;
  justify-content: center;
  transition: all 0.3s ease;
}

.client-card img {
  width: 150px;
  height: auto;
}

.client-card:hover {
  border-color: rgba(79, 110, 247, 0.25);
  background: #fff;
  box-shadow: 0 12px 32px rgba(79, 110, 247, 0.08);
  transform: translateY(-3px);
}



.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.client-name {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.client-industry {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.clients-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8faff 100%);
  border: 1px solid #e8ecf8;
  border-radius: 20px;
  padding: 36px 60px;
}

.client-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  text-align: center;
}

.cs-num {
  font-size: 42px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -2px;
  line-height: 1;
}

.cs-label {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cs-sep {
  width: 1px;
  height: 60px;
  background: #e2e8f0;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-stats-bar {
    padding: 30px 24px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 50px 0;
  }

  .clients-header {
    margin-bottom: 28px;
  }

  .clients-header h4 {
    font-size: 26px;
    letter-spacing: -0.5px;
    margin: 10px 0;
  }

  .clients-header p {
    font-size: 16px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 30px;
  }

  .client-card {
    padding: 10px 8px;
    border-radius: 12px;
  }

  .client-card img {
    width: 110px;
  }

  .clients-stats-bar {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 16px;
  }

  .cs-sep {
    display: none;
  }

  .client-stat {
    flex: 0 0 45%;
  }
}


/* ========================
   AWARDS SECTION
======================== */
.awards-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 50%, #ffffff 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f0f4ff;
  border-bottom: 1px solid #f0f4ff;
}

.awards-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.award-item {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(79, 110, 247, 0.06);
  box-shadow: 0 10px 30px -10px rgba(79, 110, 247, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.01);
  border-radius: 24px;
  padding: 36px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.award-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(79, 110, 247, 0.2);
  box-shadow: 0 24px 50px -12px rgba(79, 110, 247, 0.12),
    0 0 0 1px rgba(79, 110, 247, 0.03) inset;
}

.laurel-leaf {
  flex-shrink: 0;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laurel-leaf img {
  width: 100%;
  height: auto;
  opacity: 0.55;
  filter: grayscale(1) contrast(0.9) brightness(1.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.award-item:hover .laurel-leaf img {
  opacity: 1;
  filter: drop-shadow(0 2px 8px rgba(79, 110, 247, 0.2));
  transform: scale(1.08);
}

.award-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-grow: 1;
}

.award-source {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.award-name {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: 0.2px;
  line-height: 1.4;
  margin: 0;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
}

.award-year {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  background: #f1f5f9;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  margin-top: 4px;
  transition: all 0.3s ease;
}

.award-item:hover .award-year {
  background: var(--blue-dim);
  color: var(--blue);
}

@media (max-width: 1120px) {
  .awards-grid {
    gap: 24px 20px;
  }

  .award-item {
    padding: 28px 20px;
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
    padding: 0 4px;
  }

  .award-item {
    padding: 20px 8px;
    gap: 0;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .laurel-leaf {
    position: absolute;
    width: 28px !important;
    opacity: 0.12 !important;
    z-index: 0;
  }

  .laurel-leaf img {
    opacity: 1 !important;
    filter: grayscale(1) contrast(0.9) brightness(1.05) !important;
  }

  .laurel-left {
    left: 4px;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
  }

  .laurel-right {
    right: 4px;
    top: 50%;
    transform: translateY(-50%) rotate(5deg);
  }

  .award-info {
    position: relative;
    z-index: 1;
    gap: 4px;
    width: 100%;
    text-align: center;
  }

  .award-source {
    font-size: 8px;
    letter-spacing: 0.8px;
  }

  .award-name {
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
  }

  .award-year {
    font-size: 9px;
    padding: 2px 8px;
    margin-top: 2px;
  }
}

/* ========================
   PROCESS SECTION (How We Work)
======================== */
.process-section {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 60%, #e2e8f0 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.process-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}

.process-blob-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.1) 0%, rgba(167, 139, 250, 0.05) 50%, transparent 70%);
  top: -200px;
  left: -200px;
}

.process-blob-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(46, 204, 113, 0.09) 0%, rgba(79, 110, 247, 0.04) 60%, transparent 80%);
  bottom: -150px;
  right: -150px;
}

.process-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 1;
}

.process-header h2 {
  font-size: 50px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -2px;
  line-height: 1.1;
  margin: 16px 0;
}

.process-header p {
  font-size: 17px;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 72px;
}

.process-step {
  position: relative;
  padding: 0 20px;
}

.process-connector {
  position: absolute;
  top: 56px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, rgba(79, 110, 247, 0.3), rgba(79, 110, 247, 0.1));
  z-index: 2;
}

.process-step-num {
  font-size: 72px;
  font-weight: 400;
  color: rgba(79, 110, 247, 0.06);
  line-height: 1;
  letter-spacing: -4px;
  margin-bottom: -20px;
  font-family: 'Outfit', sans-serif;
}

.process-step-body {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.35s ease;
  position: relative;
  box-shadow: 0 10px 30px -10px rgba(79, 110, 247, 0.05);
}

.process-step-body:hover {
  background: #ffffff;
  border-color: rgba(79, 110, 247, 0.28);
  box-shadow: 0 24px 50px rgba(79, 110, 247, 0.12);
  transform: translateY(-6px);
}

.process-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--blue-dim);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.process-step-body:hover .process-step-icon {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(79, 110, 247, 0.4);
}

.step-icon-green {
  background: rgba(46, 204, 113, 0.1);
  border-color: rgba(46, 204, 113, 0.25);
  color: #2ECC71;
}

.process-step-body:hover .step-icon-green {
  background: #2ECC71;
  color: #fff;
  box-shadow: 0 8px 24px rgba(46, 204, 113, 0.4);
}

.step-icon-purple {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.25);
  color: #7C3AED;
}

.process-step-body:hover .step-icon-purple {
  background: #7C3AED;
  color: #fff;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.step-icon-orange {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(249, 115, 22, 0.25);
  color: #F97316;
}

.process-step-body:hover .step-icon-orange {
  background: #F97316;
  color: #fff;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.process-step-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.process-step-content p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-tags span {
  display: inline-block;
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.process-cta {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.process-cta p {
  font-size: 16px;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .process-connector {
    display: none;
  }

  .process-header h2 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-cta {
    flex-direction: column;
    gap: 12px;
  }
}

/* ========================
   LOGO TICKER SECTION (MARQUEE)
======================== */
.logo-ticker-section {
  padding: 40px 0;
  background: #ffffff;
  border-bottom: 1px solid #eef0f8;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

/* Ticker heading row */
.ticker-heading-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 28px auto;
  padding: 0 24px;
}

.ticker-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.08), transparent);
}

.ticker-heading-text {
  font-size: 16px;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 3px;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  margin: 0;
  padding: 6px 20px;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 100px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.02);
  display: inline-block;
}

@media (max-width: 768px) {
  .ticker-heading-wrap {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .ticker-divider-line {
    display: none;
  }

  .ticker-heading-text {
    white-space: normal;
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 2px;
    padding: 8px 16px;
    background: rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 100px;
    display: inline-block;
  }
}

.logo-ticker-wrapper {
  display: flex;
  overflow: hidden;
  user-select: none;
  position: relative;
  width: 100%;
}

/* Linear fade effect on left and right edges for premium look */
.logo-ticker-wrapper::before,
.logo-ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-ticker-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.logo-ticker-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.logo-ticker-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: logo-marquee 35s linear infinite;
}

.logo-ticker-track:hover {
  animation-play-state: paused;
}

.logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  height: 94px;
  width: auto;
  object-fit: contain;
  /* opacity: 0.55; */
  /* filter: grayscale(100%); */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item img:hover {
  opacity: 1;

  transform: scale(1.08);
}

@keyframes logo-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-ticker-section {
    padding: 30px 0;
  }

  .logo-ticker-track {
    gap: 50px;
  }

  .logo-item img {
    height: 88px;
  }
}

/* ========================
   DISCOVERY CALL MODAL
======================== */
.discovery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.discovery-modal.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.discovery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 18, 36, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.discovery-modal-content {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(185deg, #ffffff 0%, #f8faff 100%);
  border-radius: 24px;
  padding: 44px 40px;
  border: 1.5px solid rgba(59, 130, 246, 0.1);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.discovery-modal.active .discovery-modal-content {
  transform: scale(1) translateY(0);
  overflow: auto !important;
}

.discovery-modal-content::-webkit-scrollbar {
  width: 6px;
}

.discovery-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.discovery-modal-content::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.discovery-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.25s ease;
  z-index: 12;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.discovery-modal-close:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
  transform: rotate(90deg);
}

.discovery-modal-header {
  margin-bottom: 32px;
  text-align: center;
}

.discovery-modal-header h2 {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -1px;
  line-height: 1.25;
}

.discovery-modal-header p {
  font-size: 15px;
  color: #64748b;
  margin-top: 10px;
  line-height: 1.5;
}

/* Form inputs & styles override for discoveryForm */
#discoveryForm .field-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#discoveryForm .field-group label {
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  text-transform: none;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
}

#discoveryForm .field-sub {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  margin-top: -2px;
  line-height: 1.4;
}

#discoveryForm input[type="text"],
#discoveryForm input[type="email"],
#discoveryForm input[type="tel"] {
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  padding: 12px 16px;
  height: auto;
  font-size: 15px;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.02);
}

#discoveryForm input[type="text"]:focus,
#discoveryForm input[type="email"]:focus,
#discoveryForm input[type="tel"]:focus {
  border-color: #3b82f6;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), inset 0 2px 4px rgba(15, 23, 42, 0.01);
}

#discoveryForm textarea {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  padding: 12px 16px;
  resize: vertical;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: #0f172a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.02);
}

#discoveryForm textarea:focus {
  border-color: #3b82f6;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), inset 0 2px 4px rgba(15, 23, 42, 0.01);
}

/* Radio button option cards */
.need-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.need-option {
  display: block;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.need-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.need-option-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.need-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.06);
  color: #3b82f6;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.need-option:hover .need-icon-wrapper {
  background: rgba(59, 130, 246, 0.12);
}

.need-option input[type="radio"]:checked+.need-option-card .need-icon-wrapper {
  background: #3b82f6;
  color: #ffffff;
}

.need-option:hover .need-option-card {
  border-color: #cbd5e1;
  background: #f8fafc;
  transform: translateY(-1px);
}

.need-option input[type="radio"]:checked+.need-option-card {
  border-color: #3b82f6;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04) 0%, rgba(16, 185, 129, 0.02) 100%);
  color: #1e3a8a;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 8px 20px rgba(59, 130, 246, 0.05);
}

/* Checkbox pill chips */
.help-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.help-chip {
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.help-chip input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.help-chip span {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #cbd5e1;
  border-radius: 100px;
  background: #ffffff;
  font-size: 13.5px;
  font-weight: 500;
  color: #475569;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.help-chip:hover span {
  border-color: #94a3b8;
  color: #0f172a;
}

.help-chip input[type="checkbox"]:checked+span {
  background: #050522;
  border-color: #050522;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(5, 5, 34, 0.2);
}

/* Error message styling inside modal */
#discoveryForm .field-group.is-error input,
#discoveryForm .field-group.is-error textarea {
  border-color: #ef4444 !important;
}

#discoveryForm .field-group.is-error .need-option-card {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.02);
}

#discoveryForm .field-group.is-error .help-chip span {
  border-color: rgba(239, 68, 68, 0.4);
}

#discoveryForm .field-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
  font-weight: 600;
  display: none;
}

#discoveryForm .field-error.visible {
  display: block;
}

/* Submit button styling */
#discoveryForm .submit-btn {
  width: auto;
  min-width: 260px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 0 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  border: none;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#discoveryForm .submit-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.35);
}

#discoveryForm .submit-btn:active {
  transform: translateY(0);
}

#discoveryForm .submit-btn.btn-error {
  background: #ef4444 !important;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.35) !important;
}

#discoveryForm .submit-btn.btn-success {
  background: #10b981 !important;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35) !important;
}

#discoveryForm .submit-btn.shake {
  animation: shake 0.4s ease-in-out;
}

/* ==========================================================================
   BUILT TO LAST SECTION (PREMIUM LIGHT SYSTEM)
   ========================================================================== */
.built-to-last-section {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(180deg, #f8faff 0%, #edf4fe 50%, #f8faff 100%);
  overflow: clip;
  font-family: 'Outfit', sans-serif;
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
}

.built-to-last-section .blue-grid-overlay {
  background-image: radial-gradient(circle, rgba(59, 130, 246, 0.04) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.8;
  z-index: 0;
}

.last-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
  position: relative;
  z-index: 1;
}

.last-header .section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #e0e7ff;
  border: 1px solid rgba(79, 110, 247, 0.2);
  color: #3854d1;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.last-header h2 {
  font-size: 48px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.last-header .section-subtitle {
  font-size: 17px;
  color: #475569;
  line-height: 1.6;
}

/* Background Blue Blur Shadows */
.last-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.last-bg-glow.glow-1 {
  top: 10%;
  left: -150px;
  width: 600px;
  height: 600px;
  background: rgba(59, 130, 246, 0.22);
}

.last-bg-glow.glow-2 {
  bottom: 10%;
  right: -150px;
  width: 650px;
  height: 650px;
  background: rgba(99, 102, 241, 0.22);
}

/* Grid Wrapper & Layout */
.last-grid-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
}

.last-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}

/* Card Styling with premium gradient border */
.last-card {
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, rgba(79, 110, 247, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%) border-box;
  border: 1px solid transparent;
  border-radius: 32px;
  padding: 44px 40px;
  box-shadow:
    0 20px 40px rgba(59, 130, 246, 0.03),
    0 1px 2px rgba(59, 130, 246, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.last-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, rgba(79, 110, 247, 0.45) 0%, rgba(16, 185, 129, 0.35) 100%) border-box;
  box-shadow:
    0 30px 60px rgba(59, 130, 246, 0.1),
    0 0 0 1px rgba(59, 130, 246, 0.05) inset;
}

.card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  align-self: flex-start;
}

.card-tag.tag-launch {
  background: rgba(59, 130, 246, 0.07);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.card-tag.tag-scale {
  background: rgba(99, 102, 241, 0.07);
  color: #4f46e5;
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.card-tag.tag-evolve {
  background: rgba(16, 185, 129, 0.07);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.last-card h3 {
  font-size: 26px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.last-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 32px;
}

/* Bullet List inside Cards */
.last-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.last-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.5;
  color: #334155;
}

.bullet-arrow {
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 3px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.last-card:hover .bullet-arrow {
  transform: translateX(4px);
}

/* Divider Arrow between columns */
.last-divider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.arrow-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 15px rgba(59, 130, 246, 0.25),
    0 0 0 3px rgba(59, 130, 246, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.last-card:hover+.last-divider-arrow .arrow-badge {
  transform: scale(1.15) rotate(5deg);
  box-shadow:
    0 6px 20px rgba(59, 130, 246, 0.35),
    0 0 0 5px rgba(59, 130, 246, 0.15);
}

/* Bottom CTA Bar Styling */
.last-cta-bar {
  position: relative;
  z-index: 1;
  background: #faf8f5;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 28px;
  padding: 30px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 15px 45px rgba(15, 23, 42, 0.02);
}

.cta-bar-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-bar-text strong {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
}

.cta-bar-text span {
  font-size: 15px;
  color: #475569;
}

.cta-bar-btn {
  background: #0f172a;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
  white-space: nowrap;
}

.cta-bar-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .last-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .last-divider-arrow {
    transform: rotate(90deg);
    padding: 10px 0;
    height: auto;
  }

  .last-cta-bar {
    flex-direction: column;
    text-align: center;
    padding: 36px 32px;
    gap: 24px;
  }

  .cta-bar-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .built-to-last-section {
    padding: 100px 0;
  }

  .last-header h2 {
    font-size: 38px;
  }

  .last-card {
    padding: 36px 28px;
  }
}

/* ==========================================================================
   AI REBUILT SECTION (PREMIUM LIGHT GRADIENT & GLOW SYSTEM)
   ========================================================================== */
.ai-rebuilt-section {
  position: relative;
  padding: 140px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f1f6fe 50%, #ffffff 100%);
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

.ai-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px auto;
  position: relative;
  z-index: 1;
}

.ai-header .section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #e0e7ff;
  border: 1px solid rgba(79, 110, 247, 0.2);
  color: #3854d1;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.ai-header h2 {
  font-size: 48px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.ai-header .section-subtitle {
  font-size: 17px;
  color: #475569;
  line-height: 1.6;
}

/* Background Glowing Blur Orbs */
.ai-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.ai-bg-glow.glow-left {
  top: 15%;
  left: -200px;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.15);
}

.ai-bg-glow.glow-right {
  bottom: 15%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: rgba(16, 185, 129, 0.12);
}

/* Workflow Wrapper Layout */
.ai-workflow-wrapper {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  align-items: stretch;
}

/* Steps Column */
.ai-workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Step Card */
.ai-step-card {
  display: flex;
  gap: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 28px 30px;
  cursor: pointer;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.02);
}

.ai-step-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 110, 247, 0.25);
  box-shadow: 0 10px 25px rgba(79, 110, 247, 0.06);
}

.ai-step-card.active {
  background: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 16px 40px rgba(79, 110, 247, 0.12), 0 0 0 1px var(--blue) inset;
}

/* Step Card Number Badge */
.step-card-num-box {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.ai-step-card.active .step-card-num-box {
  background: var(--blue-dim);
}

.step-card-number {
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  transition: all 0.4s ease;
}

.ai-step-card.active .step-card-number {
  color: var(--blue);
}

.step-card-number-glow {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.ai-step-card.active .step-card-number-glow {
  opacity: 1;
}

/* Text elements inside Step Card */
.step-card-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ai-step-card .ai-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #64748b;
  text-transform: uppercase;
  margin: 0;
}

.ai-step-card.active .ai-card-tag {
  color: var(--blue);
}

.ai-step-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.4px;
}

.ai-step-card p {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.55;
  margin: 4px 0 0 0;
  transition: all 0.4s ease;
}

.ai-step-card.active p {
  color: #334155;
}

/* Viewport Panel Styling */
.ai-workflow-viewport {
  background: #0f1322;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(9, 12, 28, 0.35);
  min-height: 480px;
  position: relative;
}

.ai-workflow-viewport::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(79, 110, 247, 0.15) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.viewport-header {
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  padding: 0 20px;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.viewport-dots {
  display: flex;
  gap: 6px;
}

.v-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.v-red {
  background: #FF5F56;
}

.v-yellow {
  background: #FFBD2E;
}

.v-green {
  background: #27C93F;
}

.viewport-title-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 18px;
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 500;
  max-width: 240px;
}

.viewport-title-bar svg {
  color: rgba(255, 255, 255, 0.4);
}

.viewport-refresh {
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* Viewport Body & Panes */
.viewport-body {
  flex: 1;
  position: relative;
  padding: 24px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.ai-visual-pane {
  position: absolute;
  inset: 24px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.ai-visual-pane.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* ────────── PANE 1: PROTOTYPING ────────── */
.ide-container {
  display: flex;
  background: #090c15;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  flex: 1;
  overflow: hidden;
}

.ide-sidebar {
  width: 44px;
  background: rgba(255, 255, 255, 0.01);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.sidebar-item {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-item.active {
  background: var(--blue);
}

.ide-main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ide-editor-header {
  height: 36px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  padding: 0 12px;
}

.ide-editor-header .tab {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.ide-editor-header .tab.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.wireframe-canvas {
  flex: 1;
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #07090f;
  overflow: hidden;
}

.wireframe-header-mock {
  height: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

.wireframe-hero-mock {
  height: 80px;
  border: 1px dashed rgba(79, 110, 247, 0.3);
  background: rgba(79, 110, 247, 0.02);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wireframe-block-title {
  height: 10px;
  width: 50%;
  background: rgba(79, 110, 247, 0.2);
  border-radius: 2px;
}

.wireframe-block-desc {
  height: 6px;
  width: 80%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}

.wireframe-block-button {
  height: 14px;
  width: 60px;
  background: rgba(79, 110, 247, 0.4);
  border-radius: 4px;
}

.wireframe-grid-mock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wireframe-card-mock {
  height: 50px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

/* Glowing canvas scanner */
.canvas-scan-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(79, 110, 247, 0.6), transparent);
  box-shadow: 0 0 10px rgba(79, 110, 247, 0.8);
  animation: scan 3s infinite linear;
}

@keyframes scan {
  0% {
    top: 0%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 0%;
  }
}

.ide-status-bar {
  height: 28px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
  font-size: 11px;
}

.status-indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.status-indicator-dot.pulsing {
  animation: pulse-dot 1.5s infinite ease-in-out;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
}

.status-msg {
  color: rgba(255, 255, 255, 0.6);
}

/* ────────── PANE 2: AI FEATURES ────────── */
.neural-container {
  flex: 1;
  background: #07090f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.neural-nodes {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.neural-node {
  position: absolute;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
}

.node-center {
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(79, 110, 247, 0.4);
  border: none;
}

.node-1 {
  top: 25%;
  left: 25%;
}

.node-2 {
  top: 25%;
  left: 75%;
}

.node-3 {
  top: 75%;
  left: 25%;
}

.node-4 {
  top: 75%;
  left: 75%;
}

.neural-connections {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.6;
}

/* Particle animations along lines */
.neural-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 8px #3b82f6;
  z-index: 4;
}

.p-1 {
  animation: travel1 3s infinite linear;
}

.p-2 {
  animation: travel2 3s infinite linear;
}

.p-3 {
  animation: travel3 3s infinite linear;
}

.p-4 {
  animation: travel4 3s infinite linear;
}

@keyframes travel1 {
  0% {
    top: 50%;
    left: 50%;
  }

  100% {
    top: 25%;
    left: 25%;
  }
}

@keyframes travel2 {
  0% {
    top: 50%;
    left: 50%;
  }

  100% {
    top: 25%;
    left: 75%;
  }
}

@keyframes travel3 {
  0% {
    top: 50%;
    left: 50%;
  }

  100% {
    top: 75%;
    left: 25%;
  }
}

@keyframes travel4 {
  0% {
    top: 50%;
    left: 50%;
  }

  100% {
    top: 75%;
    left: 75%;
  }
}

/* ────────── PANE 3: AUTOMATED QA ────────── */
.terminal-container {
  flex: 1;
  background: #04060b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.terminal-header {
  height: 32px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-family: monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.terminal-body {
  padding: 20px;
  font-family: monospace;
  font-size: 12.5px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cmd-prompt {
  color: #10b981;
  margin-right: 8px;
}

.log-info {
  color: rgba(255, 255, 255, 0.65);
}

.log-pass {
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  animation: log-fade 0.5s ease both;
}

.chk-icon {
  margin-top: 1px;
}

.log-summary {
  color: #3b82f6;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 8px;
}

@keyframes log-fade {
  from {
    opacity: 0;
    transform: translateX(-4px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ────────── PANE 4: EFFICIENCY ────────── */
.efficiency-dashboard {
  display: flex;
  gap: 16px;
  height: 100%;
}

.eff-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eff-card h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.card-velocity {
  flex: 0 0 45%;
  align-items: stretch;
}

.eff-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.trend-badge {
  font-size: 10px;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  padding: 2px 8px;
  border-radius: 100px;
}

.velocity-gauge {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.circular-chart {
  display: block;
  margin: 10px auto;
  max-width: 80%;
  max-height: 250px;
}

.circle-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 2.8;
}

.circle {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
}

.blue-chart .circle {
  stroke: url(#velocity-grad);
}

.percentage {
  fill: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 7.5px;
  text-anchor: middle;
  font-weight: 600;
}

.eff-grid-small {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-small {
  flex: 1;
}

.card-big-value {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 4px 0;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-desc-small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* Stats Panel Styling */
.ai-stats-panel {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  padding: 40px;
  margin-top: 70px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.03);
}

.ai-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 0 24px;
  position: relative;
}

.ai-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #e2e8f0;
}

.ai-stat-number {
  font-size: 42px;
  font-weight: 600;
  background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  letter-spacing: -1.5px;
}

.ai-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  line-height: 1.45;
  max-width: 190px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .ai-workflow-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ai-workflow-viewport {
    min-height: 400px;
  }

  .efficiency-dashboard {
    flex-direction: column;
  }

  .card-velocity {
    flex: none;
    height: 200px;
  }

  .ai-stats-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 36px;
  }

  .ai-stat-item {
    padding: 0;
  }

  .ai-stat-item::after {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .ai-rebuilt-section {
    padding: 100px 0;
  }

  .ai-header h2 {
    font-size: 38px;
  }

  .ai-step-card {
    padding: 24px 20px;
    gap: 16px;
  }

  .ai-step-card h3 {
    font-size: 18px;
  }

  .ai-stats-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ==========================================================================
   HOW WE WORK SECTION
   ========================================================================== */

.how-we-work-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #eef2ff 0%, #f0f5ff 50%, #e0e7ff 100%);
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

/* Subtle dot grid overlay */
.how-we-work-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59, 130, 246, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Blur glow orbs */
.work-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.work-bg-glow-1 {
  width: 500px;
  height: 500px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, rgba(59, 130, 246, 0.12) 60%, transparent 100%);
}

.work-bg-glow-2 {
  width: 450px;
  height: 450px;
  bottom: -100px;
  left: -60px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.1) 60%, transparent 100%);
}

.work-bg-glow-3 {
  width: 350px;
  height: 350px;
  top: 40%;
  left: 38%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}


/* Two-column layout */
.hww-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hww-left {
  position: sticky;
  top: 100px;
}

/* Badge chip */
.hww-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.07);
  border: 1px solid rgba(59, 130, 246, 0.15);
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hww-badge-dot {
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
}

.hww-heading {
  font-size: 48px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}

.hww-sub {
  font-size: 18px;
  color: #2e2f30;
  line-height: 1.7;
  margin-bottom: 0;
  text-decoration: none !important;
}

/* Stats row */
.hww-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 28px 0 28px 0;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.hww-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  text-align: center;
}

.hww-stat strong {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.5px;
}

.hww-stat span {
  font-size: 16px;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hww-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(15, 23, 42, 0.08);
  flex-shrink: 0;
}

/* CTA Button */
.hww-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1e40af;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.hww-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.hww-btn svg {
  transition: transform 0.25s ease;
}

.hww-btn:hover svg {
  transform: translateX(4px);
}

/* RIGHT side - vertical timeline */
.hww-right {
  position: relative;
}

.hww-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertical line */
.hww-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.15));
}

/* Each step row */
.hww-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
  cursor: default;
}

.hww-step:first-child {
  padding-top: 0;
}

.hww-step.last {
  border-bottom: none;
  padding-bottom: 0;
}

.hww-step:hover .hww-step-body h3 {
  color: #2563eb;
}

/* Icon circle */
.hww-step-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  position: relative;
  z-index: 1;
  transition: all 0.25s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(59, 130, 246, 0.06);
}

.hww-step-num {
  font-size: 16px;
  font-weight: 600;
  color: #3b82f6;
  letter-spacing: -0.3px;
}

.hww-step:hover .hww-step-icon {
  background: #3b82f6;
  border-color: #3b82f6;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.hww-step:hover .hww-step-num {
  color: #ffffff;
}

/* Step text */
.hww-step-body {
  padding-top: 6px;
}

.hww-step-body h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2e2f30;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
  transition: color 0.25s ease;
}

.hww-step-body p {
  font-size: 18px;
  color: #2e2f30;
  line-height: 1.7;
  margin: 0;
  text-decoration: none !important;
}

/* Responsive */
@media (max-width: 900px) {
  .hww-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hww-left {
    position: static;
    text-align: center;
  }

  .hww-heading {
    font-size: 32px;
  }

  .hww-cta {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .how-we-work-section {
    padding: 70px 0;
  }

  .hww-heading {
    font-size: 28px;
  }

  .hww-step-body h3 {
    font-size: 16px;
  }

  .hww-step {
    gap: 16px;
  }
}


/* RESPONSIVE TIMELINE QUERIES */
@media (max-width: 992px) {
  .how-we-work-section {
    padding: 100px 0;
  }

  .work-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .timeline-container {
    padding-left: 56px;
  }

  .timeline-line {
    left: 17px;
  }

  .timeline-icon-badge {
    left: -56px;
    width: 36px;
    height: 36px;
  }

  .timeline-icon-badge svg {
    width: 16px;
    height: 16px;
  }

  .timeline-content {
    padding: 24px 20px;
  }

  .timeline-content h3 {
    font-size: 19px;
  }
}

/* ==========================================================================
   WHY APPS FAIL PREVENTION SECTION
   ========================================================================== */
.fail-prevention-section {
  position: relative;
  padding: 120px 0;
  background: #ebf1fa;
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

.fail-prevention-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.035) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.fail-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.fail-bg-glow-1 {
  top: -100px;
  left: -150px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16) 0%, rgba(59, 130, 246, 0) 70%);
}

.fail-bg-glow-2 {
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, rgba(16, 185, 129, 0) 70%);
}

.fail-bg-glow-3 {
  top: 25%;
  left: 35%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0) 70%);
}

.fail-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 1;
}

.fail-header .section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  color: #047857;
  font-size: 12px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.fail-header h2 {
  font-size: 48px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.fail-header .section-subtitle {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
}

/* 3 Column Grid */
.fail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Card Styling */
.fail-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(15, 23, 42, 0.04);
  border-radius: 28px;
  padding: 32px;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.02),
    0 1px 3px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.fail-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.fail-badge {
  font-size: 11px;
  font-weight: 750;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  display: none;
  letter-spacing: 0.5px;
}

.badge-warning {
  background: rgba(245, 158, 11, 0.08);
  color: #b45309;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.badge-danger {
  background: rgba(239, 68, 68, 0.08);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.fail-status-pulse {
  width: 6px;
  height: 6px;
  background: #ef4444;
  display: none;
  border-radius: 50%;
  position: relative;
}

.fail-status-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid #ef4444;
  animation: pulseRed 1.8s infinite ease-out;
}

@keyframes pulseRed {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.fail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow:
    0 20px 45px rgba(15, 23, 42, 0.05),
    0 1px 3px rgba(15, 23, 42, 0.02);
}

.fail-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 1.35;
  letter-spacing: -0.5px;
}

.fail-card p {
  font-size: 16px;
  color: #0f172a;
  line-height: 1.6;
  margin-bottom: 32px;
  flex-grow: 1;
}

/* Prevent Box styling inside card */
.prevent-box {
  background: linear-gradient(135deg, #f5f8ff 0%, #ffffff 100%);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fail-card:hover .prevent-box {
  background: linear-gradient(135deg, #edf2ff 0%, #fcfdff 100%);
  border-color: rgba(59, 130, 246, 0.18);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.04);
  transform: translateY(-2px);
}

.prevent-icon-circle {
  display: none !important;
}

.prevent-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prevent-text strong {
  font-size: 16px;
  font-weight: 600;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.prevent-text span {
    font-size: 16px;
    color: #334155;
    line-height: 1.5;
    font-weight: 500;
}

/* RESPONSIVE FAIL PREVENTION SECTION */
@media (max-width: 1024px) {
  .fail-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .fail-prevention-section {
    padding: 100px 0;
  }

  .fail-header h2 {
    font-size: 38px;
  }

  .fail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fail-card {
    padding: 30px 24px;
  }
}

/* ========================
   CUSTOM PHONE CODE SELECT
   ======================== */
.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0 12px;
  background: #f8fafc;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

.custom-select-trigger:hover {
  background: #ffffff;
  border-color: var(--blue);
}

.custom-select.open .custom-select-trigger {
  background: #ffffff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(79, 110, 247, 0.08);
  border-radius: 12px;
}

.custom-select-trigger .flag-img {
  width: 20px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.custom-select-trigger .selected-code {
  flex-grow: 1;
}

.custom-select-trigger .select-chevron {
  color: #64748b;
  transition: transform 0.25s ease;
}

.custom-select.open .select-chevron {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 130px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(15, 23, 42, 0.03);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  max-height: 210px;
  overflow-y: auto;
  padding: 6px 0;
}

/* Scrollbar for option dropdown */
.custom-select-options::-webkit-scrollbar {
  width: 5px;
}

.custom-select-options::-webkit-scrollbar-track {
  background: transparent;
}

.custom-select-options::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 16px;
  color: #334155;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
}

.custom-option:hover {
  background: #f8fafc;
  color: var(--blue);
}

.custom-option.selected {
  background: rgba(79, 110, 247, 0.06);
  color: var(--blue);
  font-weight: 600;
}

.custom-option .flag-img {
  width: 18px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* ==========================================================================
   BUILT TO LAST INTERACTIVE STACK SECTION
   ========================================================================== */
.last-interactive-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .last-interactive-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .last-stack-visualizer {
    display: none !important;
  }
}

/* Timeline Left Side */
.last-timeline-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.timeline-progress-line {
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 4px;
  background: rgba(79, 110, 247, 0.1);
  border-radius: 10px;
  z-index: 1;
}

.timeline-progress-active {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #3b82f6 0%, #10b981 100%);
  border-radius: 10px;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.last-timeline-step {
  display: flex;
  gap: 32px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.step-bullet {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(79, 110, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(79, 110, 247, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Outfit', sans-serif;
}

.step-bullet-num {
  font-size: 20px;
  font-weight: 600;
  color: #64748b;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 32px 36px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex-grow: 1;
}

.step-info-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.step-summary {
  font-size: 18px;
  color: #475569;
  margin-bottom: 20px;
  line-height: 1.5;
}

.step-bullets {
  list-style: none;
  padding: 16px 0 0 0;
  margin: 16px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  opacity: 0.6;
  border-top: 1px dashed rgba(79, 110, 247, 0.12);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 576px) {
  .step-bullets {
    grid-template-columns: 1fr;
  }
}

.step-bullets li {
  font-size: 13.5px;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-bullets li::before {
  content: "→";
  color: #3b82f6;
  font-weight: 600;
}

/* Active timeline step state */
.last-timeline-step.active .step-bullet {
  background: #3b82f6;
  border-color: #3b82f6;
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.15);
}

.last-timeline-step.active .step-bullet-num {
  color: #ffffff;
}

.last-timeline-step.active .step-info-card {
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, rgba(79, 110, 247, 0.2) 0%, rgba(16, 185, 129, 0.15) 100%) border-box;
  border-color: transparent;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.06);
}

.last-timeline-step.active .step-bullets {
  opacity: 1;
  border-top: 1px dashed rgba(79, 110, 247, 0.25);
}


/* Isometric Stack Right Side */
.last-stack-visualizer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: max(80px, calc(50vh - 240px));
  align-self: start;
  height: 480px;
  perspective: 1200px;
}

.stack-layers-container {
  position: relative;
  width: 320px;
  height: 240px;
  transform-style: preserve-3d;
  transform: rotateX(55deg) rotateY(0deg) rotateZ(-35deg);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Stack Layer Plate */
.stack-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

/* Layer Stack Spacing for 5 Layers */
.layer-downloads {
  transform: translateZ(0px);
}

.layer-ai {
  transform: translateZ(65px);
}

.layer-experience {
  transform: translateZ(130px);
}

.layer-scalability {
  transform: translateZ(195px);
}

.layer-growth {
  transform: translateZ(260px);
}

/* Hover & Active Lift States */
.stack-layer.active {
  z-index: 10;
}

.layer-downloads.active {
  transform: translateZ(20px);
}

.layer-ai.active {
  transform: translateZ(85px);
}

.layer-experience.active {
  transform: translateZ(150px);
}

.layer-scalability.active {
  transform: translateZ(215px);
}

.layer-growth.active {
  transform: translateZ(280px);
}

/* Plate visual styling */
.layer-plate {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.layer-plate-surface {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(79, 110, 247, 0.25);
  border-radius: 20px;
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active surface glows mapped to actual HTML layer classes */
.layer-downloads.active .layer-plate-surface,
.layer-experience.active .layer-plate-surface,
.layer-scalability.active .layer-plate-surface {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.75);
  box-shadow:
    0 0 40px rgba(59, 130, 246, 0.4),
    inset 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.layer-ai.active .layer-plate-surface {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.75);
  box-shadow:
    0 0 40px rgba(99, 102, 241, 0.4),
    inset 0 0 0 2px rgba(99, 102, 241, 0.3);
}

.layer-growth.active .layer-plate-surface {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.75);
  box-shadow:
    0 0 40px rgba(16, 185, 129, 0.4),
    inset 0 0 0 2px rgba(16, 185, 129, 0.3);
}

/* Layer Plate Thick side depth */
.layer-plate-thickness {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(79, 110, 247, 0.15);
  transform: rotateX(-90deg);
  transform-origin: bottom;
  border-radius: 0 0 10px 10px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.layer-downloads.active .layer-plate-thickness,
.layer-experience.active .layer-plate-thickness,
.layer-scalability.active .layer-plate-thickness {
  background: #2563eb;
}

.layer-ai.active .layer-plate-thickness {
  background: #4f46e5;
}

.layer-growth.active .layer-plate-thickness {
  background: #059669;
}

/* Layer content items */
.layer-content {
  position: absolute;
  inset: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  transform: translateZ(10px);
}

.layer-header-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #475569;
  text-transform: uppercase;
  background: rgba(71, 85, 105, 0.07);
  padding: 4px 10px;
  border-radius: 6px;
  align-self: flex-start;
}

.layer-downloads.active .layer-header-badge,
.layer-experience.active .layer-header-badge,
.layer-scalability.active .layer-header-badge {
  color: #1e3a8a;
  background: rgba(59, 130, 246, 0.15);
}

.layer-ai.active .layer-header-badge {
  color: #312e81;
  background: rgba(99, 102, 241, 0.15);
}

.layer-growth.active .layer-header-badge {
  color: #064e3b;
  background: rgba(16, 185, 129, 0.15);
}

.layer-widgets {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.widget-node {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 6px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
}

.widget-icon {
  font-size: 13px;
}

.widget-label {
  font-size: 10px;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
}

.stack-layer.active .widget-node {
  transform: translateZ(12px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   CAPABILITIES & SPECIALISATIONS SECTION
   ========================================================================== */

.capabilities-section {
  position: relative;
  padding: 120px 0;
  background: #ebf1fa;
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
}

.capabilities-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.035) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.cap-bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.cap-bg-glow-1 {
  top: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0) 70%);
}

.cap-bg-glow-2 {
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0) 70%);
}

/* Header */
.capabilities-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 2;
}

.capabilities-header h2 {
  font-size: 48px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.capabilities-header .section-subtitle {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
}

/* Tabs Row */
.capabilities-tabs-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 auto 48px auto;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  padding: 6px;
  max-width: max-content;
  position: relative;
  z-index: 2;
}

.cap-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 11px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  color: #0f172a;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.cap-tab:hover {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.55);
}

.cap-tab.active {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow:
    0 4px 14px rgba(37, 99, 235, 0.35),
    0 1px 3px rgba(37, 99, 235, 0.2);
}

.cap-tab svg {
  transition: stroke 0.28s ease;
}

.cap-tab.active svg {
  stroke: #ffffff;
}

/* Panel Container */
.cap-panels-container {
  position: relative;
  z-index: 1;
}

.cap-panel {
  display: none;
  animation: capPanelFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cap-panel.active {
  display: block;
}

@keyframes capPanelFadeIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cards Grid */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }
}

/* Individual Card */
.cap-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.04),
    0 1px 2px rgba(15, 23, 42, 0.02);
  position: relative;
  overflow: hidden;
}

.cap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #10b981);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px 20px 0 0;
}

.cap-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.15);
  box-shadow:
    0 12px 32px rgba(15, 23, 42, 0.08),
    0 4px 8px rgba(15, 23, 42, 0.04);
}

.cap-card:hover::before {
  opacity: 1;
}

/* Card Header */
.cap-card-header {
  margin-bottom: 16px;
}

.cap-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cap-icon-blue {
  background: rgba(59, 130, 246, 0.08);
  color: #3b82f6;
}

.cap-icon-blue svg {
  stroke: #3b82f6;
}

.cap-icon-green {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.cap-icon-green svg {
  stroke: #10b981;
}

.cap-icon-indigo {
  background: rgba(99, 102, 241, 0.08);
  color: #6366f1;
}

.cap-icon-indigo svg {
  stroke: #6366f1;
}

.cap-icon-purple {
  background: rgba(167, 139, 250, 0.1);
  color: #a78bfa;
}

.cap-icon-purple svg {
  stroke: #a78bfa;
}

/* Card body text */
.cap-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.cap-card p {
  font-size: 16px;
  color: #37383a;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 0;
}

/* Card Footer */
.cap-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cap-meta-label {
  font-size: 9.5px;
  font-weight: 600;
  color: #37383a;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.cap-meta-value {
  font-size: 12.5px;
  font-weight: 700;
  color: #334155;
  display: block;
  line-height: 1.4;
}

/* Responsive tabs */
@media (max-width: 680px) {
  .capabilities-tabs-row {
    flex-wrap: wrap;
    max-width: calc(100% - 32px);
    border-radius: 16px;
  }

  .cap-tab {
    padding: 10px 16px;
    font-size: 13px;
  }

  .capabilities-header h2 {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .capabilities-tabs-row {
    gap: 2px;
  }

  .cap-tab {
    padding: 8px 12px;
    font-size: 12px;
    gap: 6px;
  }

  .cap-tab svg {
    display: none;
  }
}

/* Custom 3-column grid for Industries Panel to give cards more breathing room */
#cap-panel-industries .cap-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  #cap-panel-industries .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  #cap-panel-industries .cap-grid {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Industry Solutions Pills UI */
.industry-solutions {
  margin-top: auto;
  /* Push to bottom of card so all footers align perfectly! */
  border-top: 1px dashed rgba(15, 23, 42, 0.08);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solutions-title {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.solutions-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.sol-pill {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  background: rgba(15, 23, 42, 0.03);
  border: none;
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.sol-pill::before {
  content: '';
  display: inline-block;
  width: 4.5px;
  height: 4.5px;
  background: #94a3b8;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.cap-card:hover .sol-pill {
  background: rgba(59, 130, 246, 0.06);
  color: #2563eb;
}

.cap-card:hover .sol-pill::before {
  background: #3b82f6;
}

@media (max-width: 767px) {
  .awards-section {
    padding: 30px 0;

  }

  .ai-workflow-viewport {
    display: none;
  }

  .last-cta-bar {
    margin-top: 20px;
  }

  .reviews-slider {
    padding: 0 !important;
  }
}

/* Grid Card Typography */
.grid-card h5 {
  color: #0f172a;
  text-transform: none;
  font-size: 16px;
}

.grid-card p {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}
/* Custom Portfolio Mockup */
.custom-port-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.custom-port-mockup .mockup-base {

  width: 200px;
  height: auto;
  border-radius: 40px;

  position: relative;
  z-index: 1;
}

.custom-port-mockup .mockup-float-1 {
  position: absolute;
  top: 15%;
  right: 0%;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: transform 0.3s ease;
}

.custom-port-mockup .mockup-float-2 {
  position: absolute;
  bottom: 5%;
  left: 0%;
  width: auto;
  height: auto;
  border-radius: 12px;

  z-index: 2;
  transition: transform 0.3s ease;
}

.custom-port-mockup:hover .mockup-float-1 {
  transform: translateY(-10px) translateX(5px);
}

.custom-port-mockup:hover .mockup-float-2 {
  transform: translateY(10px) translateX(-5px);
}

@media (max-width: 768px) {
  .custom-port-mockup .mockup-float-1 {
    right: -5%;
    width: 160px;
  }

  .custom-port-mockup .mockup-float-2 {
    left: 0;
    width: 140px;
  }
}

/* Extracted from index.html */

.final-cta-container {
  max-width: 1200px;
}

.final-cta-inner-split {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.final-cta-image-col {
  flex: 1;
  min-width: 300px;
}

.final-cta-image-col img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(255, 255, 255, 0.05);
  border: 4px solid #ffffff;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  display: block;
}

.final-cta-image-col img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6), 0 0 0 12px rgba(255, 255, 255, 0.1);
}

.final-cta-content-col {
  flex: 1.2;
  min-width: 300px;
}

.final-cta-inner-split .final-cta-title {
  margin-bottom: 24px;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 600;
  text-align: left;
}

.final-cta-inner-split .final-cta-desc-wrap {
  max-width: 100%;
  margin: 0 0 32px 0;
  text-align: left;
}

.final-cta-inner-split ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.final-cta-inner-split li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.final-cta-inner-split li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.final-cta-inner-split .final-cta-desc {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  display: block;
}

.final-cta-inner-split .final-cta-actions {
  margin-top: 32px;
  justify-content: flex-start;
}

.final-cta-inner-split .final-cta-title,
.final-cta-inner-split .final-cta-desc,
.final-cta-inner-split .final-cta-desc-wrap {
  text-align: left !important;
}

.final-cta-inner-split .final-cta-actions {
  justify-content: flex-start !important;
}

.final-cta-inner-split {
  max-width: 1200px !important;
  margin: 0 auto !important;
}

@media (max-width: 991px) {
  .final-cta-inner-split {
    flex-direction: column !important;
    gap: 40px !important;
    text-align: left !important;
  }

  .final-cta-image-col {
    min-width: unset !important;
    width: 100%;
  }

  .final-cta-image-col img {
    max-height: 280px;
    object-fit: cover;
    width: 100%;
  }

  .final-cta-content-col {
    min-width: unset !important;
    width: 100%;
    text-align: left !important;
  }

  .final-cta-inner-split .final-cta-title {
    font-size: 28px !important;
    line-height: 1.2 !important;
    text-align: left !important;
    margin-bottom: 16px !important;
  }

  .final-cta-inner-split .final-cta-desc,
  .final-cta-inner-split .final-cta-desc-wrap {
    text-align: left !important;
    font-size: 14px !important;
  }

  .final-cta-inner-split .final-cta-actions {
    justify-content: flex-start !important;
    flex-direction: column;
    gap: 10px;
  }

  .final-cta-inner-split .final-cta-actions a,
  .final-cta-inner-split .final-cta-actions button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .final-cta-inner-split ul {
    gap: 12px;
  }

  .final-cta-inner-split .final-cta-desc {
    font-size: 13px !important;
  }
}



.new-portfolio-section {
  background-color: #ffffff;
  padding: 120px 0;
}



.new-port-header {
  text-align: center;
  margin-bottom: 30px;
}

.new-port-header h2 {
  font-size: 48px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.new-port-header .text-gradient {
  /* background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
  -webkit-background-clip: text; */
  color: var(--blue, #3b82f6);
  /* -webkit-text-fill-color: transparent; */
}

.new-port-header p {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
}

/* Portfolio Layout Switcher & Options Styling */
.portfolio-style-switcher {
  display: inline-flex;
  background: rgba(15, 23, 42, 0.05);
  border: 1.5px solid rgba(15, 23, 42, 0.08);
  padding: 6px;
  border-radius: 100px;
  margin-top: 30px;
  gap: 6px;
  box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.02);
}

.style-switch-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.style-switch-btn:hover {
  color: #0f172a;
}

.style-switch-btn.active {
  background: #ffffff;
  color: var(--blue, #3b82f6);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08), 0 3px 6px rgba(15, 23, 42, 0.04);
}

/* ──── NavTruck (Truck Animation) ──── */
.truck-road-anim {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  height: 52px;
  background: #0f172a;
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

[data-portfolio-style="interactive"] .new-port-item:hover .truck-road-anim,
[data-portfolio-style="bento"] .new-port-item:hover .truck-road-anim {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scrolling-road {
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0, rgba(255, 255, 255, 0.4) 16px, transparent 16px, transparent 32px);
  transform: translateY(-50%);
  animation: roadScroll 0.8s linear infinite;
  animation-play-state: paused;
}

.anim-truck {
  position: absolute;
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  line-height: 1;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  animation: truckBounce 0.35s ease-in-out infinite;
  animation-play-state: paused;
}

.new-port-item:hover .scrolling-road,
.new-port-item:hover .anim-truck {
  animation-play-state: running;
}

@keyframes roadScroll {
  0% {
    transform: translate3d(0, -50%, 0);
  }

  100% {
    transform: translate3d(-32px, -50%, 0);
  }
}

@keyframes truckBounce {

  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(-56%);
  }
}

/* ──── Service Cue (Skin Glow Animation) ──── */
.skin-clinic-glow-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
  border-radius: 24px;
  opacity: 0;
  transition: all 0.4s ease;
}

[data-portfolio-style="interactive"] .new-port-item:hover .skin-clinic-glow-anim,
[data-portfolio-style="bento"] .new-port-item:hover .skin-clinic-glow-anim {
  opacity: 1;
}

.skin-scan-beam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.6), transparent);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.8), 0 0 40px rgba(236, 72, 153, 0.4);
  animation: scanBeamMove 2.8s ease-in-out infinite;
}

.skin-glow-particles span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, transparent 80%);
  box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
  animation: floatGlow 3s ease-in-out infinite;
}

.skin-glow-particles span:nth-child(1) {
  left: 24%;
  top: 75%;
  animation-delay: 0s;
}

.skin-glow-particles span:nth-child(2) {
  left: 54%;
  top: 55%;
  animation-delay: 0.7s;
}

.skin-glow-particles span:nth-child(3) {
  left: 78%;
  top: 70%;
  animation-delay: 1.4s;
}

@keyframes scanBeamMove {

  0%,
  100% {
    top: 0%;
  }

  50% {
    top: 100%;
  }
}

@keyframes floatGlow {

  0%,
  100% {
    transform: translateY(0) scale(0.9);
    opacity: 0.3;
  }

  50% {
    transform: translateY(-48px) scale(1.4);
    opacity: 0.9;
  }
}

/* ──── Toumpa (Dating Hearts Animation) ──── */
.toumpa-hearts-anim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
  border-radius: 24px;
  opacity: 0;
  transition: all 0.4s ease;
}

[data-portfolio-style="interactive"] .new-port-item:hover .toumpa-hearts-anim,
[data-portfolio-style="bento"] .new-port-item:hover .toumpa-hearts-anim {
  opacity: 1;
}

.floating-heart {
  position: absolute;
  font-size: 22px;
  line-height: 1;
  animation: floatHeart 2.6s ease-in-out infinite;
  opacity: 0;
  filter: drop-shadow(0 3px 6px rgba(244, 63, 94, 0.15));
}

.heart-1 {
  left: 24%;
  bottom: 12%;
  animation-delay: 0s;
}

.heart-2 {
  left: 46%;
  bottom: 12%;
  animation-delay: 0.6s;
  font-size: 28px;
}

.heart-3 {
  left: 66%;
  bottom: 12%;
  animation-delay: 1.3s;
}

.heart-4 {
  left: 82%;
  bottom: 12%;
  animation-delay: 1.9s;
  font-size: 18px;
}

@keyframes floatHeart {
  0% {
    transform: translateY(0) scale(0.7) rotate(0deg);
    opacity: 0;
  }

  35% {
    opacity: 0.85;
  }

  100% {
    transform: translateY(-130px) scale(1.3) rotate(20deg);
    opacity: 0;
  }
}

/* ════════════════════════════════════════════════════
   PORTFOLIO OPTION 2 — PREMIUM APP ANIMATION OVERLAYS
   ════════════════════════════════════════════════════ */

/* Shared overlay wrapper — always shown in interactive mode */
.port-anim-overlay {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 20;
  overflow: hidden;
}

/* Always visible in Option 2 — no hover needed */
[data-portfolio-style="interactive"] .port-anim-overlay {
  opacity: 1;
}

/* ─── NavTruck GPS Route Overlay ─── */
.navtruck-anim {
  background: transparent;
  /* phone shows through */
}

/* Gradient scrim so chips on bottom are readable over phone */
.navtruck-anim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(15, 23, 42, 0.55) 0%,
      rgba(15, 23, 42, 0.05) 50%,
      transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.nt-map-grid {
  display: none;
}

/* No road block — remove ::after road strip */
.nt-route-svg {
  display: none;
}

/* Simple gradient scrim at bottom so badges are readable */
.navtruck-anim .nt-route-svg {
  display: none;
  /* road strip removed */
}


[data-portfolio-style="interactive"] .new-port-item:hover .nt-route-path {
  animation: drawRoute 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

@keyframes drawRoute {
  to {
    stroke-dashoffset: 0;
  }
}

.nt-pin {
  display: none;
}

/* pins hidden, phone shows map context */

.nt-pin-pulse {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.25);
  animation: pinPulse 1.8s ease-in-out infinite;
}

@keyframes pinPulse {

  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.nt-truck-dot {
  position: absolute;
  font-size: 34px;
  bottom: 20px;
  /* near bottom of card, in front of phone */
  left: -20px;
  z-index: 12;
  animation: truckDrive 5s linear infinite;
  filter: drop-shadow(0 4px 16px rgba(59, 130, 246, 0.6));
  line-height: 1;
  transform: scaleX(-1);
}

@keyframes truckDrive {
  0% {
    left: -20px;
  }

  100% {
    left: calc(100% + 20px);
  }
}

.nt-info-chip {
  position: absolute;
  bottom: 60px;
  /* above truck level */
  left: 50%;
  margin-left: 20px;
  /* anchored near phone */
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(59, 130, 246, 0.5);
  border-radius: 18px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(14px);
  animation: badgeSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.2);
  z-index: 12;
}

.nt-chip-icon {
  font-size: 20px;
}

.nt-info-chip strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.nt-info-chip small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.nt-speed-badge {
  position: absolute;
  top: 20px;
  left: 16px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.55);
  animation: badgeSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
  letter-spacing: -0.5px;
  z-index: 10;
}

.nt-speed-badge small {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.85;
}

@keyframes badgeSlideUp {
  from {
    transform: translateY(16px) scale(0.9);
    opacity: 0;
  }

  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes chipSlideIn {
  from {
    transform: translateY(12px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ─── Service Cue Booking Dashboard Overlay ─── */
.servicecue-anim {
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  /* center the cards horizontally */
  gap: 12px;
  padding: 10px 0 20px;
  overflow: visible;
  height: 100%;
  /* ensure it reaches bottom */
}

/* Gradient scrim so the dashboard cards read on phone screen */
.servicecue-anim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(236, 72, 153, 0.18) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.servicecue-anim>* {
  position: relative;
  z-index: 1;
}

.sc-booking-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.22), 0 2px 6px rgba(0, 0, 0, 0.06);
  animation: scCardPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  backdrop-filter: blur(12px);
  width: 90%;
  max-width: 260px;
}

.sc-confirm-bar {
  background: #10b981;
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
  width: 90%;
  max-width: 260px;
  animation: scCardPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s both;
  /* staggered animation */
}

.sc-booking-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  flex-shrink: 0;
}

.sc-name {
  font-size: 16px;
  font-weight: 700;
  color: #1e1b4b;
}

.sc-appt {
  font-size: 11px;
  color: #a855f7;
  font-weight: 500;
}

.sc-status-dot {
  margin-left: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
  animation: statusBlink 1.4s ease-in-out infinite;
}

@keyframes statusBlink {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.05);
  }
}

.sc-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #94a3b8;
  margin-bottom: 6px;
}

.sc-progress-bar {
  height: 6px;
  background: rgba(168, 85, 247, 0.15);
  border-radius: 100px;
  overflow: hidden;
}

.sc-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ec4899, #a855f7);
  border-radius: 100px;
  animation: progressFill 2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

@keyframes progressFill {
  to {
    width: 62%;
  }
}

.sc-stats-row {
  display: flex;
  gap: 8px;
  width: 90%;
  max-width: 260px;
  animation: scCardPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
  /* staggered animation */
}

.sc-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.90);
  border-radius: 12px;
  padding: 8px 6px;
  text-align: center;
  border: 1px solid rgba(236, 72, 153, 0.15);
  backdrop-filter: blur(8px);
}

.sc-stat strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #be185d;
  letter-spacing: -0.5px;
}

.sc-stat small {
  font-size: 10px;
  color: #94a3b8;
}

.sc-notification {
  background: linear-gradient(90deg, #10b981, #059669);
  color: #fff;
  border-radius: 12px;
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: scCardPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.65s both;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.sc-notif-icon {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

@keyframes scCardPop {
  from {
    transform: scale(0.88) translateY(10px);
    opacity: 0;
  }

  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* ─── Toumpa Match Ring + Swipe Overlay ─── */
.toumpa-anim {
  background: transparent;
  /* phone shows through */
  display: block;
  /* use absolute positioning for children */
}

/* Gradient scrim at bottom for readability */
.toumpa-anim::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(15, 23, 42, 0.5) 0%,
      rgba(15, 23, 42, 0.05) 40%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Match ring: top-left badge position */
.tp-match-ring {
  position: absolute;
  top: 15px;
  left: 50%;
  margin-left: -120px;
  /* anchored near left edge of phone */
  width: 80px;
  height: 90px;
  flex-shrink: 0;
  z-index: 10;
  animation: badgeSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 28px rgba(244, 63, 94, 0.35);
}

.tp-ring-svg {
  width: 100%;
  height: 100%;
}

.tp-ring-fill {
  animation: ringFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes ringFill {
  to {
    stroke-dashoffset: 42;
  }

  /* 326 * (1 - 0.87) ≈ 42 */
}

.tp-match-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.tp-match-pct {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}

.tp-match-pct span {
  font-size: 16px;
}

.tp-match-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes tpRingPop {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.tp-swipe-cards {
  position: absolute;
  bottom: 80px;
  left: 50%;
  margin-left: 10px;
  /* anchored to right side of phone */
  width: 130px;
  height: 90px;
  z-index: 10;
  animation: badgeSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
}

.tp-card {
  position: absolute;
  width: 120px;
  height: 76px;
  border-radius: 18px;
  overflow: hidden;
}

.tp-card-back {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  opacity: 0.5;
  transform: scale(0.9) rotate(-5deg) translateY(6px);
  right: 0;
}

.tp-card-front {
  background: linear-gradient(135deg, #f43f5e, #fb923c);
  left: 0;
  padding: 10px 12px;
  animation: tpSwipe 4s ease-in-out infinite 0.8s;
  box-shadow: 0 16px 40px rgba(244, 63, 94, 0.45);
}

@keyframes tpSwipe {

  0%,
  60% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }

  80% {
    transform: translateX(70px) rotate(15deg);
    opacity: 0;
  }

  81% {
    transform: translateX(-70px) rotate(-5deg);
    opacity: 0;
  }

  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}

.tp-card-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  margin-bottom: 6px;
}

.tp-card-name {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.tp-card-tag {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
}

.tp-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 11px;
  padding: 8px 14px;
  border-radius: 20px;
  z-index: 10;
  white-space: nowrap;
}

.tp-bubble-1 {
  top: 30px;
  left: 50%;
  margin-left: 20px;
  animation: tpBubbleFloat 4s ease-in-out infinite;
}

.tp-bubble-2 {
  bottom: 40px;
  left: 50%;
  margin-left: -140px;
  animation: tpBubbleFloat 4s ease-in-out infinite 1s;
}

@keyframes tpBubbleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.tp-swipe-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  z-index: 10;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  padding: 7px 16px;
  border-radius: 100px;
  animation: badgeSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s both;
}

.tp-hint-no {
  color: #f87171;
  font-size: 15px;
  font-weight: 700;
}

.tp-hint-yes {
  color: #34d399;
  font-size: 15px;
  font-weight: 700;
}

.tp-swipe-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tp-bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 24px;
  white-space: nowrap;
  pointer-events: none;
}

.tp-bubble-1 {
  top: 14px;
  right: 12px;
  animation: bubbleFloat 4s ease-in-out 0.5s infinite;
}

.tp-bubble-2 {
  bottom: 14px;
  left: 12px;
  animation: bubbleFloat 4s ease-in-out 2.5s infinite;
}

@keyframes bubbleFloat {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

/* ─── Option 2: Interactive Animations & 3-Column Layout ─── */
/* ════════════════════════════════════════════════════
   PORTFOLIO HTML BLOCKS TOGGLING
   ════════════════════════════════════════════════════ */
[data-portfolio-style="classic"] #portfolio-option-2,
[data-portfolio-style="classic"] #portfolio-option-3 {
  display: none !important;
}

[data-portfolio-style="interactive"] #portfolio-option-1,
[data-portfolio-style="interactive"] #portfolio-option-3 {
  display: none !important;
}

[data-portfolio-style="bento"] #portfolio-option-1,
[data-portfolio-style="bento"] #portfolio-option-2 {
  display: none !important;
}

#portfolio-option-2 {
  display: flex !important;
  flex-direction: column !important;
  gap: 100px !important;
  padding-top: 20px !important;
}






/ @keyframes portFloatHeavy {

  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes portFloatHeavyRev {

  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

/* Specific Positions for Floating Mockups to contrast with dark background */
[data-portfolio-style="interactive"] .new-port-item.first .mockup-float-1 {
  top: 12%;
  left: -5%;
}

[data-portfolio-style="interactive"] .new-port-item.first .mockup-float-2 {
  bottom: 15%;
  right: -8%;
}

[data-portfolio-style="interactive"] .new-port-item.second .mockup-float-1 {
  top: 10%;
  right: -5%;
}

[data-portfolio-style="interactive"] .new-port-item.second .mockup-float-2 {
  bottom: 25%;
  left: -8%;
}

[data-portfolio-style="interactive"] .new-port-item.third .mockup-float-1 {
  top: 15%;
  left: -6%;
}

[data-portfolio-style="interactive"] .new-port-item.third .mockup-float-2 {
  bottom: 20%;
  right: -5%;
}

/* Overlay: transparent, sits above phone to allow floating badges */
[data-portfolio-style="interactive"] .port-anim-overlay {
  position: absolute !important;

  border-radius: 0 !important;
  opacity: 1 !important;
  z-index: 8 !important;
  /* above phone for edge badges */
  pointer-events: none !important;
}

/* Hover subtle lift */
[data-portfolio-style="interactive"] .new-port-item:hover {
  transform: translateY(-8px);
}

/* Responsive Option 2 */
@media (max-width: 991px) {
  [data-portfolio-style="interactive"] .new-port-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  [data-portfolio-style="interactive"] .new-port-item {
    height: auto !important;
    min-height: 600px !important;
    padding: 0 24px 28px 24px !important;
  }

  [data-portfolio-style="interactive"] .new-port-image {
    width: calc(100% + 48px) !important;
    margin-left: -24px !important;
    margin-right: -24px !important;
    min-height: 340px !important;
  }

  [data-portfolio-style="interactive"] .mockup-base {
    height: 320px !important;
    max-width: 85% !important;
  }
}

/* ──── Option 3: Modern Bento Grid Style ──── */
[data-portfolio-style="bento"] .new-port-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  padding-top: 20px;
}

[data-portfolio-style="bento"] .new-port-item {
  position: relative !important;
  top: auto !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 30px !important;
  background: var(--port-bg) !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  border-top: 3px solid var(--port-theme) !important;
  border-radius: 36px !important;
  padding: 40px !important;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.03) !important;
  margin: 0 !important;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease, box-shadow 0.4s ease !important;
}

[data-portfolio-style="bento"] .new-port-item::before {
  display: none !important;
  /* Remove sticky background overlay */
}

[data-portfolio-style="bento"] .new-port-item:hover {
  transform: translateY(-8px) !important;
  border-color: rgba(var(--port-theme-rgb), 0.35) !important;
  box-shadow: 0 24px 50px rgba(var(--port-theme-rgb), 0.08), 0 8px 24px rgba(15, 23, 42, 0.04) !important;
}

/* Bento Grid Spans */
[data-portfolio-style="bento"] .new-port-item.first {
  grid-column: span 7;
}

[data-portfolio-style="bento"] .new-port-item.second {
  grid-column: span 5;
}

[data-portfolio-style="bento"] .new-port-item.third {
  grid-column: span 12;
  flex-direction: row !important;
  align-items: center !important;
}

[data-portfolio-style="bento"] .new-port-item.third .new-port-content {
  flex: 1.1;
}

[data-portfolio-style="bento"] .new-port-item.third .new-port-image {
  flex: 0.9;
}

/* Bento Typography adjustments */
/* Bento Typography adjustments */
[data-portfolio-style="bento"] .new-port-content h3 {
  font-size: 38px !important;
  margin-bottom: 14px !important;
  font-weight: 700 !important;
  letter-spacing: -0.8px !important;
  line-height: 1.2 !important;
}

[data-portfolio-style="bento"] .new-port-item.third h3 {
  font-size: 44px !important;
  margin-bottom: 16px !important;
  font-weight: 700 !important;
  letter-spacing: -1px !important;
  line-height: 1.2 !important;
}

[data-portfolio-style="bento"] .port-subtitle {
  font-size: 19px !important;
  margin-top: -8px !important;
  margin-bottom: 18px !important;
  color: var(--port-theme) !important;
  font-weight: 600 !important;
}

[data-portfolio-style="bento"] .new-port-content p {
  font-size: 17px !important;
  line-height: 1.65 !important;
  margin-bottom: 24px !important;
  color: #475569 !important;
}

/* Bento Logo adjustments */
[data-portfolio-style="bento"] .new-port-logo {
  display: block !important;
  margin-bottom: 24px !important;
  text-align: left !important;
}

[data-portfolio-style="bento"] .new-port-logo img {
  height: 56px !important;
  width: auto !important;
  object-fit: contain !important;
}

/* Bento Mockup Containers */
[data-portfolio-style="bento"] .new-port-image {
  position: relative !important;
  border-radius: 28px !important;
  padding: 40px 24px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  overflow: hidden !important;
  border: 1px solid rgba(var(--port-theme-rgb), 0.08) !important;
  background: radial-gradient(circle at top, rgba(var(--port-theme-rgb), 0.15) 0%, rgba(15, 23, 42, 0.02) 100%) !important;
  transition: background 0.4s ease, border-color 0.4s ease !important;
  margin-top: 10px;
}

[data-portfolio-style="bento"] .new-port-item.first .new-port-image,
[data-portfolio-style="bento"] .new-port-item.second .new-port-image {
  min-height: 420px !important;
}

[data-portfolio-style="bento"] .new-port-item.third .new-port-image {
  min-height: 480px !important;
  padding: 40px 50px !important;
  margin-top: 0;
}

/* Mockup Base Adjustments inside Bento */
[data-portfolio-style="bento"] .mockup-base {
  display: block !important;
  width: auto !important;
  height: 100% !important;
  min-height: auto !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 0 0 4px #0f172a, 0 0 0 5px rgba(255, 255, 255, 0.15) !important;
  border-radius: 28px !important;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
  z-index: 5 !important;
  max-width: 80% !important;
  object-fit: cover !important;
}

[data-portfolio-style="bento"] .new-port-item.first .mockup-base {
  max-height: 330px !important;
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.18), 0 0 0 4px #0f172a, 0 0 0 5px rgba(255, 255, 255, 0.15) !important;
}

[data-portfolio-style="bento"] .new-port-item.second .mockup-base {
  max-height: 330px !important;
  box-shadow: 0 15px 35px rgba(236, 72, 153, 0.18), 0 0 0 4px #0f172a, 0 0 0 5px rgba(255, 255, 255, 0.15) !important;
}

[data-portfolio-style="bento"] .new-port-item.third .mockup-base {
  max-height: 390px !important;
  box-shadow: 0 15px 35px rgba(244, 63, 94, 0.18), 0 0 0 4px #0f172a, 0 0 0 5px rgba(255, 255, 255, 0.15) !important;
}

[data-portfolio-style="bento"] .new-port-item:hover .mockup-base {
  transform: scale(1.04) translateY(-6px) !important;
}

/* Triple Mockup Screens Styling in Bento Layout */
[data-portfolio-style="bento"] .triple-mockup-container {
  position: relative !important;
  width: 100% !important;
  height: 380px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: flex-end !important;
  margin: 30px auto 10px !important;
  overflow: visible !important;
}

[data-portfolio-style="bento"] .triple-mockup-container .mockup-screen {
  position: absolute !important;
  bottom: 0 !important;
  height: 320px !important;
  width: auto !important;
  border-radius: 20px !important;
  background: #0f172a !important;
  border: 3.5px solid #0f172a !important;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
  object-fit: cover !important;
}

/* Base styles for side screens */
[data-portfolio-style="bento"] .triple-mockup-container .mockup-screen.left {
  left: 12% !important;
  z-index: 2 !important;
  transform: scale(0.85) rotate(-3deg) !important;
  opacity: 0.8 !important;
  filter: brightness(0.85) !important;
}

[data-portfolio-style="bento"] .triple-mockup-container .mockup-screen.right {
  right: 12% !important;
  z-index: 2 !important;
  transform: scale(0.85) rotate(3deg) !important;
  opacity: 0.8 !important;
  filter: brightness(0.85) !important;
}

/* Center screen */
[data-portfolio-style="bento"] .triple-mockup-container .mockup-screen.center {
  left: 50% !important;
  transform: translateX(-50%) scale(1) !important;
  z-index: 5 !important;
  height: 350px !important;
  opacity: 1 !important;
}

/* Glow styles for project 1 center screen */
[data-portfolio-style="bento"] .new-port-item.first .triple-mockup-container .mockup-screen.center {
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.25), 0 0 0 1.5px rgba(249, 115, 22, 0.2) !important;
}

/* Glow styles for project 3 center screen */
[data-portfolio-style="bento"] .new-port-item.third .triple-mockup-container .mockup-screen.center {
  box-shadow: 0 15px 35px rgba(244, 63, 94, 0.25), 0 0 0 1.5px rgba(244, 63, 94, 0.2) !important;
}

/* Side screen shadows */
[data-portfolio-style="bento"] .triple-mockup-container .mockup-screen.left,
[data-portfolio-style="bento"] .triple-mockup-container .mockup-screen.right {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
}

/* Hover spreading animations */
[data-portfolio-style="bento"] .new-port-item:hover .triple-mockup-container .mockup-screen.left {
  transform: scale(0.9) rotate(-7deg) translateX(-20px) !important;
  opacity: 1 !important;
  filter: brightness(1) !important;
}

[data-portfolio-style="bento"] .new-port-item:hover .triple-mockup-container .mockup-screen.right {
  transform: scale(0.9) rotate(7deg) translateX(20px) !important;
  opacity: 1 !important;
  filter: brightness(1) !important;
}

[data-portfolio-style="bento"] .new-port-item:hover .triple-mockup-container .mockup-screen.center {
  transform: translateX(-50%) scale(1.04) !important;
}

[data-portfolio-style="bento"] .new-port-item.first:hover .triple-mockup-container .mockup-screen.center {
  box-shadow: 0 25px 50px rgba(249, 115, 22, 0.35), 0 0 0 3px rgba(249, 115, 22, 0.4) !important;
}

[data-portfolio-style="bento"] .new-port-item.third:hover .triple-mockup-container .mockup-screen.center {
  box-shadow: 0 25px 50px rgba(244, 63, 94, 0.35), 0 0 0 3px rgba(244, 63, 94, 0.4) !important;
}

/* Responsive adjustments for screens */
@media (max-width: 768px) {
  [data-portfolio-style="bento"] .triple-mockup-container {
    height: 320px !important;
  }

  [data-portfolio-style="bento"] .triple-mockup-container .mockup-screen {
    height: 260px !important;
  }

  [data-portfolio-style="bento"] .triple-mockup-container .mockup-screen.center {
    height: 290px !important;
  }
}

@media (max-width: 480px) {
  [data-portfolio-style="bento"] .triple-mockup-container {
    height: 260px !important;
  }

  [data-portfolio-style="bento"] .triple-mockup-container .mockup-screen {
    height: 200px !important;
  }

  [data-portfolio-style="bento"] .triple-mockup-container .mockup-screen.center {
    height: 235px !important;
  }

  [data-portfolio-style="bento"] .triple-mockup-container .mockup-screen.left {
    left: 4% !important;
  }

  [data-portfolio-style="bento"] .triple-mockup-container .mockup-screen.right {
    right: 4% !important;
  }
}

/* Option 2 Perspective Mockup Styling */
[data-portfolio-style="interactive"] .perspective-mockup-container {
  position: relative !important;
  width: 100% !important;
  height: 420px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  overflow: visible !important;
  margin: 10px auto 20px auto !important;
}

[data-portfolio-style="interactive"] .perspective-mockup-container .mockup-screen-p {
  position: absolute !important;
  height: 340px !important;
  width: auto !important;
  border-radius: 22px !important;
  background: #0f172a !important;
  border: 4.5px solid #0f172a !important;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1) !important;
  object-fit: cover !important;
}

/* Left Screen: flat fanned layout */
[data-portfolio-style="interactive"] .perspective-mockup-container .mockup-screen-p.left {
  left: 6% !important;
  transform: scale(0.85) rotate(-10deg) translateY(12px) !important;
  z-index: 2 !important;
  opacity: 0.82 !important;
  filter: brightness(0.8) !important;
  box-shadow: -10px 15px 30px rgba(0, 0, 0, 0.4) !important;
}

/* Right Screen: flat fanned layout */
[data-portfolio-style="interactive"] .perspective-mockup-container .mockup-screen-p.right {
  right: 6% !important;
  transform: scale(0.85) rotate(10deg) translateY(12px) !important;
  z-index: 2 !important;
  opacity: 0.82 !important;
  filter: brightness(0.8) !important;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.4) !important;
}

/* Center Screen: stands forward in middle */
[data-portfolio-style="interactive"] .perspective-mockup-container .mockup-screen-p.center {
  left: 50% !important;
  transform: translateX(-50%) scale(1) !important;
  z-index: 5 !important;
  height: 375px !important;
  opacity: 1 !important;
  filter: brightness(1) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45) !important;
}

/* Specific glowing shadows for each project in Option 2 */
[data-portfolio-style="interactive"] .new-port-item.first .perspective-mockup-container .mockup-screen-p.center {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(249, 115, 22, 0.25), 0 0 0 1.5px rgba(249, 115, 22, 0.2) !important;
}

[data-portfolio-style="interactive"] .new-port-item.second .perspective-mockup-container .mockup-screen-p.center {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(236, 72, 153, 0.25), 0 0 0 1.5px rgba(236, 72, 153, 0.2) !important;
}

[data-portfolio-style="interactive"] .new-port-item.third .perspective-mockup-container .mockup-screen-p.center {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), 0 0 30px rgba(244, 63, 94, 0.25), 0 0 0 1.5px rgba(244, 63, 94, 0.2) !important;
}

/* Hover effects: interactive fanning out action in 2D space */
[data-portfolio-style="interactive"] .new-port-item:hover .perspective-mockup-container .mockup-screen-p.left {
  transform: scale(0.9) rotate(-14deg) translate3d(-35px, 5px, 0) !important;
  opacity: 1 !important;
  filter: brightness(0.95) !important;
  box-shadow: -15px 20px 35px rgba(0, 0, 0, 0.45) !important;
}

[data-portfolio-style="interactive"] .new-port-item:hover .perspective-mockup-container .mockup-screen-p.right {
  transform: scale(0.9) rotate(14deg) translate3d(35px, 5px, 0) !important;
  opacity: 1 !important;
  filter: brightness(0.95) !important;
  box-shadow: 15px 20px 35px rgba(0, 0, 0, 0.45) !important;
}

[data-portfolio-style="interactive"] .new-port-item:hover .perspective-mockup-container .mockup-screen-p.center {
  transform: translateX(-50%) scale(1.05) !important;
}

[data-portfolio-style="interactive"] .new-port-item.first:hover .perspective-mockup-container .mockup-screen-p.center {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(249, 115, 22, 0.45), 0 0 0 2px rgba(249, 115, 22, 0.3) !important;
}

[data-portfolio-style="interactive"] .new-port-item.second:hover .perspective-mockup-container .mockup-screen-p.center {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(236, 72, 153, 0.45), 0 0 0 2px rgba(236, 72, 153, 0.3) !important;
}

[data-portfolio-style="interactive"] .new-port-item.third:hover .perspective-mockup-container .mockup-screen-p.center {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 45px rgba(244, 63, 94, 0.45), 0 0 0 2px rgba(244, 63, 94, 0.3) !important;
}

/* Responsive styles for perspective layout */
@media (max-width: 991px) {
  #portfolio-option-2 {
    gap: 60px !important;
  }

  [data-portfolio-style="interactive"] .new-port-item,
  [data-portfolio-style="interactive"] .new-port-item.reverse {
    flex-direction: column-reverse !important;
    gap: 40px !important;
  }

  [data-portfolio-style="interactive"] .new-port-content {
    align-items: center !important;
    text-align: center !important;
  }

  [data-portfolio-style="interactive"] .new-port-image {
    padding: 40px 20px !important;
    min-height: auto !important;
  }

  [data-portfolio-style="interactive"] .perspective-mockup-container {
    height: 380px !important;
    margin: 10px auto !important;
  }

  [data-portfolio-style="interactive"] .perspective-mockup-container .mockup-screen-p {
    height: 300px !important;
  }

  [data-portfolio-style="interactive"] .perspective-mockup-container .mockup-screen-p.center {
    height: 330px !important;
  }
}

@media (max-width: 480px) {
  [data-portfolio-style="interactive"] .new-port-image {
    padding: 30px 10px !important;
  }

  [data-portfolio-style="interactive"] .perspective-mockup-container {
    height: 280px !important;
  }

  [data-portfolio-style="interactive"] .perspective-mockup-container .mockup-screen-p {
    height: 210px !important;
  }

  [data-portfolio-style="interactive"] .perspective-mockup-container .mockup-screen-p.center {
    height: 240px !important;
  }

  [data-portfolio-style="interactive"] .perspective-mockup-container .mockup-screen-p.left {
    left: 4% !important;
  }

  [data-portfolio-style="interactive"] .perspective-mockup-container .mockup-screen-p.right {
    right: 4% !important;
  }

  [data-portfolio-style="interactive"] .new-port-content h3 {
    font-size: 32px !important;
  }
}

/* Hover Animation Overlays in Bento Grid - ALWAYS VISIBLE */
[data-portfolio-style="bento"] .port-anim-overlay {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 28px !important;
  pointer-events: none !important;
  opacity: 1 !important;
  /* Always visible */
  z-index: 8 !important;
  overflow: hidden !important;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Subtle premium lift on hover */
[data-portfolio-style="bento"] .new-port-item:hover .port-anim-overlay {
  transform: scale(1.02) !important;
}

/* NavTruck Bento Specifics */
[data-portfolio-style="bento"] .nt-route-svg {
  display: block !important;
  position: absolute !important;
  bottom: 15px !important;
  left: 15px !important;
  right: 15px !important;
  height: 48px !important;
  border-radius: 12px !important;
  z-index: 10 !important;
}

[data-portfolio-style="bento"] .nt-truck-dot {
  display: block !important;
  position: absolute !important;
  bottom: 22px !important;
  z-index: 12 !important;
  animation: truckDrive 5s linear infinite !important;
}

[data-portfolio-style="bento"] .nt-speed-badge {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  animation: none !important;
}

[data-portfolio-style="bento"] .nt-info-chip {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  animation: none !important;
}

/* Service Cue Bento Specifics */
[data-portfolio-style="bento"] .sc-booking-card {
  display: block !important;
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  animation: none !important;
}

[data-portfolio-style="bento"] .sc-progress-fill {
  animation: progressFillBento 3s ease-in-out infinite alternate !important;
}

@keyframes progressFillBento {
  from {
    width: 0%;
  }

  to {
    width: 85%;
  }
}

[data-portfolio-style="bento"] .sc-stats-row {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  animation: none !important;
}

[data-portfolio-style="bento"] .sc-notification,
[data-portfolio-style="bento"] .sc-confirm-bar {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  animation: none !important;
}

/* Toumpa Bento Specifics */
[data-portfolio-style="bento"] .tp-match-ring {
  display: flex !important;
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  animation: none !important;
}

[data-portfolio-style="bento"] .tp-ring-fill {
  animation: ringDrawBento 3s ease-in-out infinite alternate !important;
}

@keyframes ringDrawBento {
  from {
    stroke-dashoffset: 326;
  }

  to {
    stroke-dashoffset: 42;
  }
}

[data-portfolio-style="bento"] .tp-card-front {
  animation: cardSwipeLoop 6s ease-in-out infinite !important;
}

@keyframes cardSwipeLoop {

  0%,
  25% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }

  45% {
    transform: translate(140px, -15px) rotate(15deg);
    opacity: 0;
  }

  55% {
    transform: translate(-140px, 15px) rotate(-15deg);
    opacity: 0;
  }

  75%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}

[data-portfolio-style="bento"] .tp-swipe-hint {
  display: flex !important;
  opacity: 1 !important;
}

[data-portfolio-style="bento"] .tp-bubble-1 {
  display: block !important;
  animation: bubbleFloat1 4s ease-in-out infinite alternate !important;
}

[data-portfolio-style="bento"] .tp-bubble-2 {
  display: block !important;
  animation: bubbleFloat2 4s ease-in-out infinite alternate-reverse !important;
}

@keyframes bubbleFloat1 {
  0% {
    transform: translateY(0) translateX(0);
  }

  100% {
    transform: translateY(-8px) translateX(4px);
  }
}

@keyframes bubbleFloat2 {
  0% {
    transform: translateY(0) translateX(0);
  }

  100% {
    transform: translateY(8px) translateX(-4px);
  }
}

/* Premium App Store Capsules */
[data-portfolio-style="bento"] .port-store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.store-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 8px 16px;
  color: #ffffff !important;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.store-btn-svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.store-btn-sub {
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.store-btn-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.store-link-btn:hover {
  background: var(--port-theme) !important;
  border-color: var(--port-theme) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(var(--port-theme-rgb), 0.35) !important;
}

/* Bento Floating Cards Style */
.bento-floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 8px 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, box-shadow 0.6s ease;
}

.bento-floating-card strong {
  color: #0f172a;
  font-size: 12px;
  display: block;
  font-weight: 700;
  line-height: 1.2;
}

.bento-floating-card small {
  color: #64748b;
  font-size: 9px;
  display: block;
  font-weight: 500;
  margin-top: 1px;
}

.fc-icon {
  font-size: 18px;
  line-height: 1;
}

/* NavTruck Card Floating Items Placement */
.fc-nav-1 {
  top: 35px;
  left: 20px;
  transform: rotate(-3deg);
}

.fc-nav-2 {
  bottom: 40px;
  right: 20px;
  transform: rotate(3deg);
}

/* Service Cue Card Floating Items Placement */
.fc-sc-1 {
  top: 35px;
  right: 20px;
  transform: rotate(3deg);
}

.fc-sc-2 {
  bottom: 40px;
  left: 20px;
  transform: rotate(-3deg);
}

/* Toumpa Card Floating Items Placement */
.fc-tp-1 {
  top: 40px;
  left: 35px;
  transform: rotate(-4deg);
}

.fc-tp-2 {
  bottom: 50px;
  right: 35px;
  transform: rotate(4deg);
}

/* Floating Cards Parallax Drift on Bento Card Hover */
[data-portfolio-style="bento"] .new-port-item:hover .fc-nav-1 {
  transform: translate(-10px, -6px) rotate(-6deg);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.12);
}

[data-portfolio-style="bento"] .new-port-item:hover .fc-nav-2 {
  transform: translate(10px, 6px) rotate(6deg);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.12);
}

[data-portfolio-style="bento"] .new-port-item:hover .fc-sc-1 {
  transform: translate(10px, -6px) rotate(6deg);
  box-shadow: 0 15px 35px rgba(236, 72, 153, 0.12);
}

[data-portfolio-style="bento"] .new-port-item:hover .fc-sc-2 {
  transform: translate(-10px, 6px) rotate(-6deg);
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.12);
}

[data-portfolio-style="bento"] .new-port-item:hover .fc-tp-1 {
  transform: translate(-12px, -8px) rotate(-8deg);
  box-shadow: 0 15px 35px rgba(244, 63, 94, 0.12);
}

[data-portfolio-style="bento"] .new-port-item:hover .fc-tp-2 {
  transform: translate(12px, 8px) rotate(8deg);
  box-shadow: 0 15px 35px rgba(251, 146, 60, 0.12);
}

/* Mobile Adjustments for Bento Floating Cards */
@media (max-width: 576px) {
  .bento-floating-card {
    padding: 6px 10px !important;
  }

  .bento-floating-card strong {
    font-size: 11px !important;
  }

  .bento-floating-card small {
    display: none !important;
  }

  .fc-nav-1,
  .fc-sc-1,
  .fc-tp-1 {
    top: 15px !important;
    left: 10px !important;
    right: auto !important;
  }

  .fc-nav-2,
  .fc-sc-2,
  .fc-tp-2 {
    bottom: 20px !important;
    right: 10px !important;
    left: auto !important;
  }
}

/* Technology Badges Styling */
.port-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 24px 0;
}

.tech-tag {
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(15, 23, 42, 0.06);
  color: #475569;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-portfolio-style="bento"] .new-port-item:hover .tech-tag {
  background: rgba(var(--port-theme-rgb), 0.06);
  border-color: rgba(var(--port-theme-rgb), 0.25);
  color: var(--port-theme);
  box-shadow: 0 4px 12px rgba(var(--port-theme-rgb), 0.05);
}

/* Responsive Bento Grid */
@media (max-width: 991px) {
  [data-portfolio-style="bento"] .new-port-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  [data-portfolio-style="bento"] .new-port-item.first,
  [data-portfolio-style="bento"] .new-port-item.second,
  [data-portfolio-style="bento"] .new-port-item.third {
    grid-column: span 1 !important;
    flex-direction: column !important;
    padding: 32px !important;
  }

  [data-portfolio-style="bento"] .new-port-item.third .new-port-content,
  [data-portfolio-style="bento"] .new-port-item.third .new-port-image {
    flex: none !important;
    width: 100% !important;
  }

  [data-portfolio-style="bento"] .new-port-image {
    min-height: 320px !important;
  }

  [data-portfolio-style="bento"] .new-port-item.first .mockup-base,
  [data-portfolio-style="bento"] .new-port-item.second .mockup-base,
  [data-portfolio-style="bento"] .new-port-item.third .mockup-base {
    max-height: 280px !important;
  }
}

.new-port-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.new-port-item {
  display: flex;
  align-items: center;
  gap: 80px;
  position: sticky;
  top: 100px;
  padding: 100px 0;
  z-index: 1;
}

.new-port-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: var(--port-bg), #ffffff;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  z-index: -1;
}

.new-port-item.reverse {
  flex-direction: row-reverse;
}

.new-port-content {
  flex: 1;
  min-width: 300px;
}

.new-port-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.new-port-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;

  object-fit: cover;
}

.new-port-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.new-port-logo-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
}

.new-port-logo img {
  width: 70px;
}

.new-port-content h3 {
  font-size: 42px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.new-port-content p {
  font-size: 18px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 32px;
}

.new-port-btn {
  display: inline-block;
  padding: 16px 32px;
  background-color: #3b82f6;
  color: #ffffff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.new-port-btn:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
  color: #fff;
}

@media (max-width: 991px) {

  .new-port-item,
  .new-port-item.reverse {
    position: relative !important;
    top: auto !important;
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }



  .new-port-content h3 {
    font-size: 32px;
  }

  .new-port-list {
    gap: 80px;
  }
}

.port-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--port-theme, #3b82f6);
  margin-top: -16px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.new-port-item.first .port-subtitle {
  --port-theme: #2b36ff;
}

.new-port-item.second .port-subtitle {
  --port-theme: #9d163f;
}

.new-port-item.third .port-subtitle {
  --port-theme: #4b6cee;
}

/* ========================
   GLOBAL MOBILE SPACING REDUCTION
   All sections � reduce top/bottom padding on mobile
======================== */
@media (max-width: 768px) {

  /* Hero */
  .hero-section {
    padding-top: 80px !important;
    padding-bottom: 50px !important;
  }

  /* Clients / Trust bar */
  .clients-section {
    padding: 40px 0 !important;
  }

  /* Stage / What does your app need */
  .stage-section {
    padding: 40px 0 !important;
  }

  /* Why Choose Us */
  .why-choose-section {
    padding: 50px 0 !important;
  }

  /* How We Work */
  .how-we-work-section {
    padding: 50px 0 !important;
  }

  /* Fail Prevention */
  .fail-prevention-section {
    padding: 50px 0 !important;
  }

  /* Capabilities & Services */
  .capabilities-section {
    padding: 50px 0 !important;
  }

  /* Awards */
  .awards-section {
    padding: 40px 0 !important;
  }

  /* Portfolio */
  .new-portfolio-section {
    padding: 50px 0 !important;
  }

  .new-port-item {
    padding: 50px 0 !important;
  }

  /* Live Bidding / Bento / CTA strip */
  .cta-strip {
    padding: 50px 0 !important;
  }

  /* Final CTA */
  .final-cta-section {
    padding: 50px 0 !important;
  }

  /* Contact */
  .contact-section {
    padding: 50px 0 !important;
  }

  /* FAQ */
  .faq-section {
    padding: 50px 0 !important;
  }

  /* Footer */
  .footer-section {
    padding: 40px 0 !important;
  }

  /* Generic section headers � tighten bottom margin */
  .section-header,
  .stage-section-header,
  .new-port-header,
  .clients-header,
  .awards-header {
    margin-bottom: 28px !important;
  }
}

/* ========================
   PORTFOLIO STORE LINKS
======================== */
.port-store-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 50%;
  color: #334155;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.store-link:hover {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.store-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.store-link svg *,
.store-link svg g,
.store-link svg path {
  fill: currentColor !important;
}

@media (max-width: 768px) {
  .port-store-links {
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }

  .store-link {
    width: 44px;
    height: 44px;
  }
}

/* ========================
   VIEW ALL PORTFOLIO BUTTON
======================== */
.new-port-footer-action {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 10;
}

.view-all-portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue, #3b82f6);
  color: #fff !important;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none !important;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
  transition: all 0.3s ease;
}

.view-all-portfolio-btn:hover {
  background: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.view-all-portfolio-btn svg {
  transition: transform 0.3s ease;
}

.view-all-portfolio-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .new-port-footer-action {
    margin-top: 40px;
  }

  .view-all-portfolio-btn {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .cta-strip-btn {
    width: auto;
  }

  .new-port-list {
    gap: 0;
  }

  /* Global section heading overrides for mobile */
  .section-header h2,
  .stage-section-header h2,
  .new-port-header h2,
  .clients-header h2,
  .awards-header h2,
  .last-header h2,
  .services-section-header h2,
  .why-header h2,
  .reviews-text h2,
  .port-header h2,
  .portfolio-header h2,
  .process-header h2,
  .ai-header h2,
  .work-header h2,
  .fail-header h2,
  .capabilities-header h2 {
    font-size: 28px !important;
    line-height: 1.25 !important;
    letter-spacing: -0.6px !important;
  }

  .growth-map-wrapper {
    gap: 10px;
  }

  .last-timeline-step {
    gap: 16px;
  }

  /* Prevent timeline bullet clipping on mobile */
  .last-timeline-steps {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .timeline-progress-line {
    left: 33px !important;
  }

  /* Stats row mobile layout: vertical stack for readability */
  .hww-stats {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px !important;
    align-items: stretch !important;
  }

  .hww-stat {
    flex: none;
    text-align: center;
  }

  .hww-stat-divider {
    width: 100% !important;
    height: 1px !important;
    background: rgba(15, 23, 42, 0.08);
  }

  .contact-left {
    margin-bottom: 0px;
  }

  .contact-section .form-card {
    margin-top: 0;
  }

  /* Discovery Modal Mobile Optimization */
  .discovery-modal-content {
    width: calc(100% - 32px) !important;
    margin: 16px !important;
    padding: 40px 0 0 0 !important;
    max-height: 90vh !important;
    overflow: auto !important;
  }

  .discovery-modal-close {
    top: 16px !important;
    right: 16px !important;
    width: 32px !important;
    height: 32px !important;
  }

  .discovery-modal-header h2 {
    font-size: 22px !important;
    padding-right: 32px !important;
    padding-left: 32px !important;
    line-height: 1.3 !important;
  }

  .discovery-modal-header p {
    font-size: 13.5px !important;
    margin-top: 8px !important;
  }

  .need-option-card span {
    white-space: normal !important;
    text-align: left !important;
    line-height: 1.35 !important;
  }

  #discoveryForm input[type="text"],
  #discoveryForm input[type="email"],
  #discoveryForm input[type="tel"],
  #discoveryForm textarea {
    padding: 10px 14px !important;
    font-size: 14px !important;
  }

  #discoveryForm .submit-btn {
    width: 100% !important;
    min-width: 100% !important;
    height: 50px !important;
    padding: 0 20px !important;
  }
}


/* Aggressive reset - Zoho specific */
[class*="zp"] {
  margin: 0 !important;
  padding: 0 !important;
}

.zpsection [class*="col-"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Remove Zoho's default body wrapper padding */
#zsite-wrapper,
#zsite-main {
  padding: 0 !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .new-port-header h2 {
    font-size: 32px !important;
  }
}

/* ==========================================================================
   PREMIUM FULL-WIDTH ALTERNATING PORTFOLIO CARDS
   ========================================================================== */
.new-port-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 50px !important;
}

.first-dark-card,
.second-dark-card,
.third-dark-card,
.fourth-dark-card {
  display: grid !important;
  grid-template-columns: 1fr 1.1fr !important;
  gap: 0 !important;
  align-items: stretch !important;
  border-radius: 28px !important;
  padding: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid #e2e8f0 !important;
  top: 0 !important;
  min-height: 660px !important;
  background: #ffffff !important;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1), 0 4px 16px rgba(15, 23, 42, 0.06) !important;
}

.first-dark-card {
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12) !important;
}

.second-dark-card {
  box-shadow: 0 20px 60px rgba(219, 39, 119, 0.12) !important;
}

.third-dark-card {
  box-shadow: 0 20px 60px rgba(244, 63, 94, 0.12) !important;
}

.fourth-dark-card {
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.12) !important;
}

/* Dotted overlay — now on image column only, handled in .new-port-image */

/* Card Content Layout — White Left Column */
.first-dark-card .new-port-content,
.second-dark-card .new-port-content,
.third-dark-card .new-port-content,
.fourth-dark-card .new-port-content {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  height: 100% !important;
  align-self: stretch !important;
  background: #ffffff !important;
  padding: 52px 48px !important;
}

.first-dark-card .port-card-title,
.second-dark-card .port-card-title,
.third-dark-card .port-card-title,
.fourth-dark-card .port-card-title {
  font-size: 30px !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.25 !important;
  margin-bottom: 14px !important;
  letter-spacing: -0.5px !important;
}

.first-dark-card .port-card-desc,
.second-dark-card .port-card-desc,
.third-dark-card .port-card-desc,
.fourth-dark-card .port-card-desc {
  font-size: 18px !important;
  color: #64748b !important;
  line-height: 1.7 !important;
  margin-bottom: 22px !important;
}

.first-dark-card .new-port-logo,
.second-dark-card .new-port-logo,
.third-dark-card .new-port-logo,
.fourth-dark-card .new-port-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
}

.first-dark-card .new-port-logo img,
.second-dark-card .new-port-logo img,
.third-dark-card .new-port-logo img,
.fourth-dark-card .new-port-logo img {
  width: 75px !important;
  height: auto !important;
}

.first-dark-card .new-port-logo-text,
.second-dark-card .new-port-logo-text,
.third-dark-card .new-port-logo-text,
.fourth-dark-card .new-port-logo-text {
  color: #0f172a !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

/* Features List styling */
.port-features-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
}

.port-features-list li {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #334155 !important;
  font-size: 16.5px !important;
  margin-bottom: 10px !important;
  font-weight: 500 !important;
}

.port-features-list li:last-child {
  margin-bottom: 0 !important;
}

.port-features-list li .feature-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    flex-shrink: 0 !important;
    background-color: #1e40af;
}
.port-features-list li .feature-icon svg {
  width: 12px !important;
  height: 12px !important;
  fill: #ffffff !important;
}

.first-dark-card .port-features-list li .feature-icon {
  background: #1e40af !important;
  /* Solid dark blue */
}

.second-dark-card .port-features-list li .feature-icon {
  background: #be185d !important;
  /* Solid dark pink */
}

.third-dark-card .port-features-list li .feature-icon {
  background: #1e40af !important;
  /* Solid dark blue matching logo */
}

.fourth-dark-card .port-features-list li .feature-icon {
  background: #0e7490 !important;
  /* Solid dark cyan */
}

/* Featured Badge */
.port-featured-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 11px !important;
  font-weight: 750 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  padding: 6px 12px !important;
  border-radius: 100px !important;
  margin-bottom: 18px !important;
  width: fit-content !important;
}

.port-featured-badge svg {
  display: inline-block !important;
}

/* Colors per badge */
.navtruck-badge {
  background: rgba(37, 99, 235, 0.08) !important;
  color: #2563eb !important;
}

.servicecue-badge {
  background: rgba(219, 39, 119, 0.08) !important;
  color: #db2777 !important;
}

.toumpa-badge {
  background: rgba(37, 99, 235, 0.08) !important;
  color: #2563eb !important;
}

.paydrop-badge {
  background: rgba(8, 145, 178, 0.08) !important;
  color: #0891b2 !important;
}

/* Accent Line */
.port-accent-line {
  width: 48px !important;
  height: 3.5px !important;
  border-radius: 2px !important;
  margin-bottom: 20px !important;
}

.navtruck-line {
  background: #2563eb !important;
}

.servicecue-line {
  background: #db2777 !important;
}

.toumpa-line {
  background: #2563eb !important;
}

.paydrop-line {
  background: #0891b2 !important;
}

/* Download Label */
.port-download-label {
  font-size: 11px !important;
  font-weight: 750 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #64748b !important;
  margin-bottom: 12px !important;
  margin-top: 14px !important;
}

/* Case Study Button */
.port-case-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 11px 22px !important;
  border-radius: 12px !important;
  margin-top: 24px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  width: fit-content !important;
}

.port-case-btn svg {
  transition: transform 0.3s ease !important;
}

.port-case-btn:hover svg {
  transform: translateX(3px) !important;
}

/* Case Button per brand */
.navtruck-case {
  border: 1.5px solid #2563eb !important;
  color: #2563eb !important;
  background: transparent !important;
}

.navtruck-case:hover {
  background: #2563eb !important;
  color: #ffffff !important;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15) !important;
}

.servicecue-case {
  border: 1.5px solid #db2777 !important;
  color: #db2777 !important;
  background: transparent !important;
}

.servicecue-case:hover {
  background: #db2777 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 16px rgba(219, 39, 119, 0.15) !important;
}

.toumpa-case {
  border: 1.5px solid #2563eb !important;
  color: #2563eb !important;
  background: transparent !important;
}

.toumpa-case:hover {
  background: #2563eb !important;
  color: #ffffff !important;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.15) !important;
}

.paydrop-case {
  border: 1.5px solid #0891b2 !important;
  color: #0891b2 !important;
  background: transparent !important;
}

.paydrop-case:hover {
  background: #0891b2 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 16px rgba(8, 145, 178, 0.15) !important;
}

/* RIGHT: Gradient Image Columns — full height, edge-to-edge */
.first-dark-card .new-port-image {
  background: linear-gradient(145deg, #0b1e4e 0%, #1a3a8a 50%, #030a1c 100%) !important;
}

.second-dark-card .new-port-image {
  background: linear-gradient(145deg, #5a0d2e 0%, #c01860 50%, #1e0412 100%) !important;
}

.third-dark-card .new-port-image {
  background: linear-gradient(145deg, #0b1e4e 0%, #1a3a8a 50%, #030a1c 100%) !important;
}

.fourth-dark-card .new-port-image {
  background: linear-gradient(145deg, #065a72 0%, #0a7090 50%, #052030 100%) !important;
}

.first-dark-card .new-port-image,
.second-dark-card .new-port-image,
.third-dark-card .new-port-image,
.fourth-dark-card .new-port-image {
  position: relative !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 2 !important;
  padding: 40px 20px !important;
  align-self: stretch !important;
  border-radius: 0 !important;
}

/* Dotted overlay on right image column */
.first-dark-card .new-port-image::before,
.second-dark-card .new-port-image::before,
.third-dark-card .new-port-image::before,
.fourth-dark-card .new-port-image::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.2px, transparent 1.2px) !important;
  background-size: 22px 22px !important;
  opacity: 0.2 !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

/* Decorative Dots Overlay on right-side gradients */
.port-dots-decor {
  position: absolute !important;
  z-index: 1 !important;
  color: rgba(255, 255, 255, 0.22) !important;
  pointer-events: none !important;
}

.port-dots-decor.deco-top-left {
  top: 28px !important;
  left: 28px !important;
}

.port-dots-decor.deco-bottom-right {
  bottom: 28px !important;
  right: 28px !important;
}

.port-dots-decor svg {
  display: block !important;
}

/* Overlapping Triple Phone Mockups - Shifted Center-Right */
.mockup-phone-container {
  position: relative !important;
  width: 430px !important;
  height: 600px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  z-index: 2 !important;
  margin-left: 20px !important;
}

.mockup-phone-front {
  width: 285px !important;
  height: auto !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 3 !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45)) !important;
}

.mockup-phone-left {
  width: 265px !important;
  height: auto !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-105%, -48%) rotate(-8deg) scale(0.85) !important;
  opacity: 0.8 !important;
  filter: blur(0.5px) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35)) !important;
  z-index: 2 !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.mockup-phone-right {
  width: 265px !important;
  height: auto !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(5%, -48%) rotate(8deg) scale(0.85) !important;
  opacity: 0.8 !important;
  filter: blur(0.5px) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.35)) !important;
  z-index: 1 !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* PayDrop Screenshot Bezel Wrapper */
.paydrop-left-phone {
  border: 6px solid #1e293b !important;
  border-radius: 28px !important;
  background: #0f172a !important;
}

/* Interactive Parallax Overlapping Slideout Hovers */
.custom-port-mockup:hover .mockup-phone-left {

  opacity: 0.98 !important;
  filter: blur(0px) drop-shadow(0 25px 45px rgba(0, 0, 0, 0.45)) !important;
}

.custom-port-mockup:hover .mockup-phone-right {

  opacity: 0.98 !important;
  filter: blur(0px) drop-shadow(0 25px 45px rgba(0, 0, 0, 0.45)) !important;
}

.custom-port-mockup:hover .mockup-phone-front {

  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55)) !important;
}

/* Responsiveness overrides */
@media (max-width: 991px) {

  .first-dark-card,
  .second-dark-card,
  .third-dark-card,
  .fourth-dark-card {
    grid-template-columns: 1fr !important;
    padding: 0 !important;
    gap: 0 !important;
    text-align: left !important;
    min-height: auto !important;
  }

  .first-dark-card .new-port-content,
  .second-dark-card .new-port-content,
  .third-dark-card .new-port-content,
  .fourth-dark-card .new-port-content {
    height: auto !important;
    align-self: auto !important;
    padding: 40px 24px !important;
    order: 1 !important;
  }

  .first-dark-card .new-port-image,
  .second-dark-card .new-port-image,
  .third-dark-card .new-port-image,
  .fourth-dark-card .new-port-image {
    height: auto !important;
    align-self: auto !important;
    padding: 40px 16px 50px 16px !important;
    border-radius: 0 0 28px 28px !important;
    order: 2 !important;
  }

  .mockup-phone-container {
    width: 290px !important;
    height: 420px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .mockup-phone-front {
    width: 190px !important;
  }

  .mockup-phone-left {
    width: 170px !important;
    transform: translate(-102%, -48%) rotate(-7deg) scale(0.85) !important;
  }

  .mockup-phone-right {
    width: 170px !important;
    transform: translate(2%, -48%) rotate(7deg) scale(0.85) !important;
  }
}

@media (max-width: 768px) {

  .first-dark-card .port-card-title,
  .second-dark-card .port-card-title,
  .third-dark-card .port-card-title,
  .fourth-dark-card .port-card-title {
    font-size: 28px !important;
  }

  .first-dark-card .port-card-desc,
  .second-dark-card .port-card-desc,
  .third-dark-card .port-card-desc,
  .fourth-dark-card .port-card-desc {
    font-size: 15px !important;
  }

  .mockup-phone-container {
    width: 240px !important;
    height: 350px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .mockup-phone-front {
    width: 160px !important;
  }

  .mockup-phone-left {
    width: 140px !important;
    transform: translate(-100%, -48%) rotate(-6deg) scale(0.85) !important;
  }

  .mockup-phone-right {
    width: 140px !important;
    transform: translate(0%, -48%) rotate(6deg) scale(0.85) !important;
  }
}

@media (max-width: 576px) {

  .first-dark-card,
  .second-dark-card,
  .third-dark-card,
  .fourth-dark-card {
    padding: 0 !important;
  }

  .first-dark-card .new-port-content,
  .second-dark-card .new-port-content,
  .third-dark-card .new-port-content,
  .fourth-dark-card .new-port-content {
    padding: 30px 16px !important;
  }

  .mockup-phone-container {
    width: 180px !important;
    height: 270px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .mockup-phone-front {
    width: 120px !important;
  }

  .mockup-phone-left {
    width: 105px !important;
    transform: translate(-98%, -48%) rotate(-5deg) scale(0.85) !important;
  }

  .mockup-phone-right {
    width: 105px !important;
    transform: translate(-2%, -48%) rotate(5deg) scale(0.85) !important;
  }

  .paydrop-left-phone {
    border-width: 3px !important;
    border-radius: 14px !important;
  }
}

/* App Download Buttons Styling */
.app-download-buttons {
  display: flex !important;
  gap: 12px !important;
  margin-top: 28px !important;
  flex-wrap: wrap !important;
}

.app-download-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  border: 1.5px solid #0f172a !important;
  background: #0f172a !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  min-width: 140px !important;
  height: 46px !important;
  cursor: pointer !important;
}

.app-download-btn:hover {
  background: #1e293b !important;
  border-color: #1e293b !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.25) !important;
}

.app-btn-icon {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0 !important;
  color: #ffffff !important;
  fill: currentColor !important;
}

.app-btn-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  line-height: 1.15 !important;
}

.app-btn-subtitle {
  font-size: 8px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

.app-btn-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-top: 1px !important;
}

/* Force parent elements to have overflow visible so sticky stacking cards work */
#zsite-wrapper,
#zsite-main,
.zpsection,
.new-portfolio-section,
.new-portfolio-section .container {
  overflow: visible !important;
}

/* Portfolio Section Container Expansion */
.new-portfolio-section .container {
  max-width: 1500px !important;
  width: 95% !important;
}

/* Portfolio Slider Layout — Sticky Stacking Layout */
.portfolio-slider-wrapper {
  position: relative !important;
  width: 100% !important;
  overflow: visible !important;
  padding: 10px 0 0px 0 !important;
}

.portfolio-slider-track {
  position: relative !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
  pointer-events: auto !important;
}

/* All slides stack vertically, sticky on desktop, relative on mobile */
.portfolio-slide {
  position: relative !important;
  top: auto !important;
  left: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: transform 0.3s ease !important;
  margin-bottom: 50px !important;
}

.portfolio-slide:nth-child(1) {
  z-index: 11 !important;
}

.portfolio-slide:nth-child(2) {
  z-index: 12 !important;
}

.portfolio-slide:nth-child(3) {
  z-index: 13 !important;
}

.portfolio-slide:nth-child(4) {
  z-index: 14 !important;
}

@media (min-width: 992px) {
  .portfolio-slide {
    position: sticky !important;
    top: 20px !important;
    margin-bottom: 80px !important;
    /* Extra scroll depth between stacks */
  }
}

/* Slider Navigation & Indicators — Hidden for vertical sticky layout */
.portfolio-slider-controls {
  display: none !important;
}

.portfolio-slider-btn {
  background: rgba(15, 23, 42, 0.05) !important;
  border: 1px solid rgba(15, 23, 42, 0.15) !important;
  color: #0f172a !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  outline: none !important;
  padding: 0 !important;
  pointer-events: auto !important;
}

.portfolio-slider-btn:hover {
  background: rgba(15, 23, 42, 0.1) !important;
  border-color: rgba(15, 23, 42, 0.3) !important;
  transform: scale(1.08) !important;
}

.portfolio-slider-btn svg {
  stroke: #0f172a !important;
  transition: transform 0.3s ease !important;
}

.portfolio-slider-btn.prev-btn:hover svg {
  transform: translateX(-2px) !important;
}

.portfolio-slider-btn.next-btn:hover svg {
  transform: translateX(2px) !important;
}

.portfolio-slider-dots {
  display: flex !important;
  gap: 12px !important;
  align-items: center !important;
  pointer-events: auto !important;
}

.portfolio-slider-dots .dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: rgba(15, 23, 42, 0.2) !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  pointer-events: auto !important;
}

.portfolio-slider-dots .dot:hover {
  background: rgba(15, 23, 42, 0.4) !important;
}

.portfolio-slider-dots .dot.active {
  background: #0f172a !important;
  transform: scale(1.25) !important;
  box-shadow: 0 0 12px rgba(15, 23, 42, 0.3) !important;
}

/* ===== Portfolio Card Stats Row ===== */
.port-stats-row {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  margin: 20px 0 !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px !important;
  padding: 16px 20px !important;
}

.port-stat {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  flex: 1 !important;
  gap: 4px !important;
}

.port-stat-value {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1 !important;
  letter-spacing: -0.3px !important;
}

.port-stat-label {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.port-stat-divider {
  width: 1px !important;
  height: 36px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  flex-shrink: 0 !important;
}

/* ===== Portfolio Tech Stack Tags ===== */
.port-tech-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 16px 0 20px 0 !important;
}

.port-tech-tag {
  display: inline-flex !important;
  align-items: center !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  letter-spacing: 0.2px !important;
  transition: all 0.2s ease !important;
}

.port-tech-tag:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}

/* ===== video-testimonial ===== */


 .bg-video-info{   background: linear-gradient(180deg, #f0f4ff 0%, #f8faff 60%, #ffffff 100%);}

.title-success-story {
    text-align: center;
}
.title-success-story span {
    color: #3b82f6;
    font-size: 20px;
    font-weight: 500;
}

.title-success-story h2 {
    font-size: 48px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.title-success-story p {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
}


.swiper{
padding-bottom:70px;
}

.card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 0px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.card-inner {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 0px 16px;
}
.left{
width:45%;
}

.right{
width:55%;
}

.video-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
    margin: 10px 0px;
    height: 600px;
}

.video-thumb,
.video-player{
width:100%;
height:100%;

display:block;
}

.video-player{
display:none;
}

.play-btn {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border: none;
    border-radius: 50%;
    color:black;
    font-size: 34px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .25);
    border: solid #cccccc75 7px;
}

.right h2{
font-size:42px;
margin-bottom:10px;
}

.right h4{
color:#5b5cff;
margin-bottom:20px;
}

.right p{
line-height:1.8;
color:#666;
margin-bottom:20px;
}

.right ul{
padding-left:20px;
}

.right ul li{
margin-bottom:12px;
}

.case-btn{
display:inline-block;
margin-top:20px;
padding:14px 30px;
border:2px solid #5b5cff;
text-decoration:none;
border-radius:10px;
color:#5b5cff;
font-weight:600;
}

.swiper-button-next,
.swiper-button-prev{
width:55px !important;
height:55px !important;
background:#fff;
border-radius:50%;
box-shadow:0 5px 20px rgba(0,0,0,.1);
color:#5b5cff !important;
}

.swiper-button-next:after,
.swiper-button-prev:after{
font-size:18px !important;
font-weight:bold;
}



@media(max-width:991px){

.card-inner{
flex-direction:column;
}

.left,
.right{
width:100%;
}



.right h2{
font-size:28px;
}

}

.logo-app img {
    width: 75px;
    border-radius: 17px;
}

.app-name-and-info {
    padding: 0 0 0 14px;
 
    align-items: center;
    align-content: space-around;
}

.app-name-and-info {
    padding: 0 0 0 14px;
}

.app-name-and-info h5 {
    margin: 0px;
    font-size: 24px;
}


.app-name-and-info p {
    color: #a2133b;
    font-size: 16px;
    margin: 0px;
}

.short-app-details p {
    color: #464748;
    font-size: 17px;
    padding: 20px 0 20px 0;
    margin: 0px;
    display: inline-block;
}
.line-divider {
    width: 100%;
    height: 1px;
    background-color: #b2bab6;
    margin: 10px 0px 10px 0px;
}

span.feature-icon.service-cue {
    background-color: #a0133b;
}

.download-app h5 {
    color: #64748b;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 0 0 0;
}
.download-app ul {
    margin: 0px;
    padding: 0px;
}
.download-app ul li {
    list-style: none;
    display: inline-block;
    padding: 0px 10px 0px 0px;
}
.app-download-buttons.mt-3 {
    margin-top: 0px !important;
}

.view-all-portfolio-btn.case {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #418ff7 !important;
    padding: 12px 30px;
    border-radius: 48px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
    border: solid 1px #418ff7;
}
.view-case-styf {
    float: right;
    padding: 34px 0 0 0;
}
.about-app-info {
    padding: 25px 25px;
}
span.feature-icon.scla-info {
    background-color: #6f19dd;
}

.scla-info p {
    color: #6f19dd;
}

span.feature-icon.nav-truck {
    background-color: #3843ff;
}

.nav-truck p {
    color: #3843ff;
}


span.feature-icon.paydrop {
    background-color: #0987cf;
}

.paydrop p {
    color: #0987cf;
}





span.feature-icon.outgoer {
    background-color: #d340fe;
}

.outgoer p {
    color: #d340fe;
}


span.feature-icon.toumpa {
    background-color: #5270ff;
}

.toumpa p {
    color: #5270ff;
}

.swiper{
    padding-bottom:100px;
}

.swiper-button-prev,
.swiper-button-next{
    top:auto !important;
    bottom:15px !important;
    width:55px !important;
    height:55px !important;
    background:#fff;
    border-radius:50%;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
}

/* Left Arrow */
.swiper-button-prev{
    left:calc(50% - 70px) !important;
}

/* Right Arrow */
.swiper-button-next{
    right:calc(50% - 70px) !important;
}

.swiper-button-prev:after,
.swiper-button-next:after{
    font-size:18px !important;
}


.row.view-none {
    visibility: hidden;
}


span.feature-icon.goliath {
    background-color: #0987cf;
}

.goliath p {
    color: #0987cf;
}





@media only screen and (min-width : 360px) and (max-width : 640px) {
  
.short-app-details p {
 padding: 0px 0 0 0;
 
}

.card-inner {
 padding: 0px 10px;
}

.view-case-styf {
   
    text-align: center;
    float: left;
    width: 100%;
}


.app-download-btn {
    padding: 8px 8px !important;
    min-width: 134px !important;
}
.play-btn {
    width: 70px;
    height: 70px;
    font-size: 24px;
}
       .video-box {
        height: 350px;
    }
	img.video-thumb {
    object-fit:cover;
    height: 100%;
}


}



@media only screen and (min-width : 641px) and (max-width : 767px) {
  
.short-app-details p {
 padding: 0px 0 0 0;
 
}

.card-inner {
 padding: 0px 10px;
}

.view-case-styf {
   
    text-align: center;
    float: left;
    width: 100%;
}


.app-download-btn {
    padding: 8px 8px !important;
    min-width: 134px !important;
}
.play-btn {
    width: 70px;
    height: 70px;
    font-size: 24px;
}
       .video-box {
        height: 450px;
    }
	img.video-thumb {
    object-fit:cover;
    height: 100%;
}


}




@media only screen and (min-width : 768px) and (max-width : 991px) {
  
.short-app-details p {
 padding: 0px 0 0 0;
 
}

.card-inner {
 padding: 0px 10px;
}

.view-case-styf {
   
    text-align: center;
    float: left;
    width: 100%;
}


.app-download-btn {
    padding: 8px 8px !important;
    min-width: 134px !important;
}
.play-btn {
    width: 70px;
    height: 70px;
    font-size: 24px;
}
       .video-box {
        height: 550px;
    }
	img.video-thumb {
    object-fit:cover;
    height: 100%;
}


}



@media only screen and (min-width : 992px) and (max-width : 1024px) {
  
.short-app-details p {
 padding: 0px 0 0 0;
 
}

.card-inner {
 padding: 0px 10px;
}

.view-case-styf {
   
    text-align: center;
    float: left;
    width: 100%;
}


.app-download-btn {
    padding: 8px 8px !important;
    min-width: 134px !important;
}
.play-btn {
    width: 70px;
    height: 70px;
    font-size: 24px;
}
       .video-box {
        height: 100%;
    }
	img.video-thumb {
    object-fit:cover;
    height: 100%;
}

.app-img-vthid img {
    width: 100%;
}


}



@media only screen and (min-width :1025px) and (max-width : 1140px) {
  
.short-app-details p {
 padding: 0px 0 0 0;
 
}

.card-inner {
 padding: 0px 10px;
}

.view-case-styf {
   
    text-align: center;
    float: left;
    width: 100%;
}


.app-download-btn {
    padding: 8px 8px !important;
    min-width: 134px !important;
}
.play-btn {
    width: 70px;
    height: 70px;
    font-size: 24px;
}
       .video-box {
        height: 100%;
    }
	img.video-thumb {
    object-fit:cover;
    height: 100%;
}

.app-img-vthid img {
    width: 100%;
}


}




@media only screen and (min-width :1141px) and (max-width : 1366px) {
  
.short-app-details p {
 padding: 0px 0 0 0;
 
}

.card-inner {
 padding: 0px 10px;
}

.view-case-styf {
   
    text-align: center;
    float: left;
    width: 100%;
}


.app-download-btn {
    padding: 8px 8px !important;
    min-width: 134px !important;
}
.play-btn {
    width: 70px;
    height: 70px;
    font-size: 24px;
}
       .video-box {
        height: 100%;
    }
	img.video-thumb {
    object-fit:cover;
    height: 100%;
}

.app-img-vthid img {
    width: 100%;
}


}



@media only screen and (min-width :1367px) and (max-width : 1600px) {
  

       .video-box {
        height: 100%;
    }
	img.video-thumb {
    object-fit:cover;
    height: 100%;
}

.app-img-vthid img {
    width: 100%;
}


}






